in reply to Soap message turns to hash reference

But I would not like to change the soap message, I just want to turn off automatic deserialization of the soap message at server side, to get access to the original soap body. How can I do that?

?? http://cookbook.soaplite.com/#overriding%20deserializer%20%28server%29??

?? SOAP::Server::Parameters, my treasure trove of soap examples and lost knowledge, Re^3: How to get SOAP Tags in SOAP::Lite Server

  • Comment on Re: Soap message turns to hash reference

Replies are listed 'Best First'.
Re^2: Soap message turns to hash reference
by lmocsi (Novice) on Apr 07, 2013 at 19:44 UTC

    Unfortunately, I'm not that experienced to write a deserializer (which would simply return the soap body xml as a string). Can someone help me with this?

      Unfortunately, I'm not that experienced to write a deserializer (which would simply return the soap body xml as a string). Can someone help me with this?

      You don't need to write one, you can always access the raw http request/response

        How?