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

Difference between revisions of "Scout/Tutorial/3.8/webservices/Register DatabaseLogHandler in webservice consumer"

< Scout‎ | Tutorial‎ | 3.8
(New page: <source lang="java"> @Override protected void execInstallHandlers(List<SOAPHandler<SOAPMessageContext>> handlers) { handlers.add(new DatabaseLogHandler()); } </source>)
 
(No difference)

Revision as of 19:42, 10 November 2011

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

Back to the top