in reply to Re^5: Accessing Attributes in Web Servie message - Server Side
in thread Accessing Attributes in Web Servie message - Server Side

Thank you poj. Trying to determine where to apply your example. Would I make that the main web service? or you that be the module that my soap server dispatches to?

  • Comment on Re^6: Accessing Attributes in Web Servie message - Server Side

Replies are listed 'Best First'.
Re^7: Accessing Attributes in Web Servie message - Server Side
by poj (Abbot) on Feb 29, 2016 at 18:41 UTC

    What do you get if you dump $envelope

    use Data::Dumper; sub sendMsg2ABC { my ($class,$data)=@_; my $envelope = pop @_; print Dumper $envelope;
    poj