montaseri has asked for the wisdom of the Perl Monks concerning the following question:

How do I add additional namespaces to the Envelope or Method of a SOAP request? I currently have:
<soap:Envelope soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" etc > <soap:Body> <myMethod xmlns="http://www/xyz">
I need to either add another xmlns to the method/operation or add it to the envelope. For example, I'd like the method to look like
<myMethod xmlns="http://www/xyz" xmlns="http://abc">
I can not figure out how to do that from SOAP::Lite doc

Replies are listed 'Best First'.
Re: SOAP::Lite additional namespace
by Anonymous Monk on Jul 30, 2014 at 01:32 UTC