in reply to Re: Accessing Attributes in Web Servie message - Server Side
in thread Accessing Attributes in Web Servie message - Server Side
Here is my SOAP server:
#!/usr/bin/perl use strict; use SOAP::Transport::HTTP; use lib '/var/www/soap'; use vbsservice; my $server = SOAP::Transport::HTTP::CGI ->dispatch_to('sendMsg2ABC') ->handle; 1;
Here is the vbsservice module:
#!/usr/local/bin/perl package vbsservice; use Switch; use warnings; use Exporter; our @ISA = (Exporter); our @EXPORT = qw(sendMsg2ABC); sub sendMsg2ABC { my($class,$data)=@_; ...
$data is a hash ref that I've parsed all sorts of ways but I'm never able to get to the attributes of the incoming message. I can easily parse the key/values from any tag/element entries of the message but not the attributes. One thing I'm trying now is the dataof method but I haven't been able to get that to work. As a note, I cannot change the way the message is coming in. That's out of my control. Thank you again for any help.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Accessing Attributes in Web Servie message - Server Side
by poj (Abbot) on Feb 18, 2016 at 16:34 UTC | |
by gackles (Novice) on Feb 18, 2016 at 19:10 UTC | |
by poj (Abbot) on Feb 18, 2016 at 19:38 UTC | |
by gackles (Novice) on Feb 18, 2016 at 20:40 UTC | |
by poj (Abbot) on Feb 29, 2016 at 18:41 UTC | |
by Anonymous Monk on Feb 19, 2016 at 00:29 UTC | |
by grasshopper!!! (Beadle) on Feb 20, 2016 at 21:47 UTC |