I have the Axis generated client code (using WSDL2Java) and I'd like to use
an Axis handler to intercept request/response messages to log them.
Static void main(String[] args){
MyServiceLocator serviceLocator = new MyServiceLocator();
serviceLocator.setServiceSoapEndpointAddress("http://myservice.com/");
port = serviceLocator.getMyServiceSoap();
String response = getPort().getLeadList(request);
}
Is there a way to extend one of the Axis classes to log my messages? I
don't have the option of doing JaxRPC or using the WSDD file option.
I'm looking for how to code the handler to log the message and how to tie
the handler into my calling of the service above.
Thanks in advance
Darrin Dowell