in reply to Re^5: SOAP::Lite server - changing method name in response
in thread SOAP::Lite server - changing method name in response

Thanks...:-)
  • Comment on Re^6: SOAP::Lite server - changing method name in response

Replies are listed 'Best First'.
Re^7: SOAP::Lite server - changing method name in response
by DreamT (Pilgrim) on Aug 25, 2011 at 10:40 UTC
    Another question: When dispatching to a perl sub, it seems like the perl sub needs to return it's values wrapped in SOAP obejcts (i.e.
    return (SOAP::Data->name(version=>$IN_artnr)->type('string'));
    ) to format it as XML. Is there a way around this, i.e. can the SOAP server itself "fix" this in the response? The purpose is to keep my subroutines "clean", so that their return values work both with SOAP and "ordinary" function calls.