trace at WSO2/Perl?

cemox's picture
Hi there, can somebody tell me, how to set trace level at WSO2/Perl? At SOAP::Lite you have that option to activate trace using "use SOAP::Lite +trace => 'debug';", so you can trace the SOAP communication. Besides I want to know, how to specify the operation I want to communicate with. Assumed that the target server has 3 operations: - createCustomer - deleteCustomer - modifyCustomer If I see the examples, I have only to write the operation name in payload. Am I right? At SOAP::Lite I have to tell this explicitly, e.g. $soap_handler->createCustomer(). Thanks in advance. Cheers Erwin
nandika's picture

Re

You would need to construct the payload xml as required by the receiving service. There are four methods for a service to identify the correct operation. Those are , using soap action, using WS-Addressing, using soap body and by using request uri. In most cases, one of soap action, ws-addressing or soap body will be used to identify the correct operation to invoke at the server side. Regards Nandika