in reply to SOAP: missing namespace

I would like to achieve this format on soap body-

I kind of doubt that :D

You say you get tns1:receive , well, as far as SOAP/XML is concerned, that's the same as  tns1:receive xmlns:tns1="http://eBonding/taservice/callback"

Now you may be able to tickle some SOAP::Lite option and get it to do what you want, but I would opt for modifying call, a serializer, ... UTSL

XML::Compile::SOAP looks like a better idea to me :) or even crafting raw xml using XML::LibXML

Replies are listed 'Best First'.
Re^2: SOAP: missing namespace
by estoque (Novice) on Feb 02, 2016 at 16:22 UTC
    Fixed. That UTSL really helped and opened a lot of possibilities for me. LOL. I modified SOAP/Lite.pm then found the code around line #1638 which is supposedly to fix namespace prefix issues.

      ... I modified SOAP/Lite.pm ...

      make a subclass instead of editing Lite.pm, that way when SOAP::Lite gets updated, your changes aren't gone

        Got it. Thanks for the help!