!--a11y-->
Logging
and Tracing 
The Web Services logging and tracing option enables the logging of exceptions and application events depending on the severity level specified in the Log Configurator Service.
For more information about logging and tracing, see Web Service Logging and Tracing in the Administration Manual.
You can enable Web services clients to log in output stream. Cast the proxy to BaseGeneratedStub in order to get access to the extended commands that allow logging. Use the following methods:
· public void _startLogging(OutputStream requestLog, OutputStream responseLog) – enables request/response logging to these output streams.
· public void _stopLogging() – stops logging of request/response if it is turned on.

((BaseGeneratedStub)logicalPort)._startLogging(System.out,System.out); logicalPort.callWebservice(); ((BaseGeneratedStub) logicalPort)._stopLogging(); |
