Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
found unrecognised attribute {http://www.w3.org/2006/05/addressing/wsd +l}Action (ignored) at /usr/local/share/perl5/SOAP/WSDL/Base.pm line 1 +30. found unrecognised attribute {http://www.w3.org/2006/05/addressing/wsd +l}Action (ignored) at /usr/local/share/perl5/SOAP/WSDL/Base.pm line 1 +30. found unrecognised attribute {http://www.w3.org/2006/05/addressing/wsd +l}Action (ignored) at /usr/local/share/perl5/SOAP/WSDL/Base.pm line 1 +30. found unrecognised attribute {http://www.w3.org/2006/05/addressing/wsd +l}Action (ignored) at /usr/local/share/perl5/SOAP/WSDL/Base.pm line 1 +30.
If anyone has done anything like that or had a similar issue like this one, it would be nice to let meknow how it got solved!#!/usr/bin/perl -w use strict; #use SOAP::Lite; # +trace=>"debug"; # commented for testing use Data::Dumper; use SOAP::WSDL; use XML::Simple; my %data = ( 'inXML' => "<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoa +p.org/soap/envelope/\" xmlns:xsd=\"http://pw_b1rws2.wsbeans.iseries/x +sd\"> <soapenv:Header/> <soapenv:Body> <xsd:getinfo_XML> <xsd:args0> <xsd:GETID>MYACCOUNT 1234567 2013 </xsd +:GETID> </xsd:args0> </xsd:getinfo_XML> </soapenv:Body> </soapenv:Envelope>" ); my $soap = SOAP::WSDL->new( wsdl => 'http://xxx.xxx.x.xxx:100XX/web/services/IBM?wsdl', ); my $result = $soap->call('getinfo_XML', %data); #print Dumper $result; open( XML, '>', 'results.xml' ) or die "Couldn't open"; print XML $result->result(); close XML; # create object my $xml = new XML::Simple; # read XML file my $data = $xml->XMLin("results.xml"); # print output print Dumper($data);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Found unrecognised attribute in SOAP WSD
by kcott (Archbishop) on Aug 03, 2013 at 15:02 UTC | |
|
Re: Found unrecognised attribute in SOAP WSD
by nevdka (Pilgrim) on Aug 04, 2013 at 22:51 UTC | |
by Anonymous Monk on Aug 06, 2013 at 07:12 UTC | |
by nevdka (Pilgrim) on Aug 06, 2013 at 11:32 UTC | |
by ebs_perl (Initiate) on Aug 06, 2013 at 21:36 UTC | |
by Anonymous Monk on Aug 06, 2013 at 23:47 UTC |