Greetings, I'm new to Axis. I cannot see how to debug print (the full SOAP message as XML) a request which was formed out of Beans generated by WSL2Java?? I am trying to inspect the request right before I ship it off to the Service. E.g. In my JUnit I have something like::
AA_T aa = new AA_T(); // where AA_T is a Bean from WSDL2Java aa.setFoo( "xyz" ); dbgLog.debug( "request= " + aa ); // where I would like to see aa as SOAP AASvc_ServiceLocator ss = ... ... AA_Response_T rr = port.submitAA( aa ); dbgLog.debug( "response= " + rr ); // again as XML Is there a way I can do this?? Thanks much, -- Chris
