Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Scout/Tutorial/3.9/webservices/Register DatabaseLogHandler in webservice consumer

< Scout‎ | Tutorial‎ | 3.9‎ | webservices
Revision as of 02:47, 2 April 2013 by Unnamed Poltroon (Talk) (New page: {{ScoutPage|cat=Tutorial 3.9}} <source lang="java"> @Override protected void execInstallHandlers(List<SOAPHandler<SOAPMessageContext>> handlers) { handlers.add(new DatabaseLogHandler());...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The Scout documentation has been moved to https://eclipsescout.github.io/.

@Override
protected void execInstallHandlers(List<SOAPHandler<SOAPMessageContext>> handlers) {
  handlers.add(new DatabaseLogHandler());
}

Back to the top