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

(Here comes YET ANOTHER SOAP::Lite question ;) )
By default(?), SOAP::Lite produces a couple of namespaces, "soap:encodingStyle" and "xmlns:soapenc". Is it possible to remove them? I know how to alter them and how to add new namespaces, but not how to remove existing ones.
(Have tried to find an answer in one of the existing threads, but without luck).

Replies are listed 'Best First'.
Re: SOAP::Lite and default namespaces
by poj (Abbot) on Jan 15, 2018 at 13:47 UTC
    $soap->serializer->encodingStyle('');
    poj
Re: SOAP::Lite and default namespaces
by Anonymous Monk on Jan 15, 2018 at 12:25 UTC
    Remove them from what exactly?