Hello, i have the following problem: I built the stubcode of the Amazon web services via "stubmaker.pl http://soap.amazon.com/schemas2/AmazonWebServices.wsdl"....
Hello, i have the following problem: I built the stubcode of the Amazon web services via "stubmaker.pl http://soap.amazon.com/schemas2/AmazonWebServices.wsdl"....
I would not use stubmaker.pl since you are doing all the work yourself it doesn't really give you anything. The altermative (which I did once long ago) is to...
I'm pretty sure stubmaker.pl can't handle complex types. To pass a complex type, you'll actually have to pass your array as the complex type name required by...
How can I serialize complex types in soap lite (using wsdl). The message should look like this. (The Wsdl has defined types such as Metrics.) <message> ...
... Ok, thanks for clearing this up. For those of you who want to pass complex types to a web service without dealing with the correct namespaces etc. by hand,...
Brand new SOAP::Lite user here. I am trying to get the hibye demo working locally on my laptop running Ubuntu Ultimate 7.10. The hibye.pl script works when...
I have a SOAP server that runs in daemon mode and am able to talk to it fine with a client (SOAP object) built using the uri + proxy methods, but I cannot get...
Hi, how can I get access to the SOAP::Data structure with brackets [] I have an array of items such: <namesp1:findrecResponse xmlns:namesp1="meetup"> <result...
Hi, I have a SOAP client call within an Apache module which is giving me an error, however when I use the same code from the command line I can easily get the...
hello, how do i change the way my envelope looks, in fact i want to define myself how it will look, currently it is similar to this <?xml version="1.0"...
Hi, How can I obtain a xml output like this: <soap:Body> <OTA_HotelDescriptiveInfoRQ xmlns="http://www.opentravel.org/OTA/2003/05" EchoToken="123456" ...
Hello, I'm a newbie to SOAP and working on implementing a SOAP::Lite Perl client to invoke a function "getUint64ArrayValues" on a gSOAP server. I was able to...
Hi Everyone! I am trying to SETUP CGI based web services using SOAP::LITE on WINDOWS XP (SERVICE PACK 2) having IIS 5.1. Have installed all necessary modules...
I have the following ComplexType definitions for IP address, how do i define the data type? I have the following defined but not getting the result i wanted. ...
hi all, Manage to get it translated. cheers. my $tclass = SOAP::Data->name("trafficClassifier" => \SOAP::Data->value( SOAP::Data->name("networkAddress" => ...
Hi I have a script which does something like the following (this is an example for test purposes using some public service): ### use strict; use warnings; use...
I am having the same problem (now four years after Mr. Sedgley). does anyone know how to remove the encodingStyle attribute from the envelope or an alternative...
Hello Brian, ... my $obj = SOAP::Lite->service('http://<url>.wsdl'); $obj->encodingStyle(''); my $result = ... ... Peter I am not sure but I think the...
Hi All - My apologies for a huge post, esp 1st time out - i've been using SOAP::Lite for a year, and have been able to figure things out, but.....oh, please...
Hi Patrick, this is due to an error in SOAP::Lite's namespace handling - it uses soap: as envelope prefix and does not recognize it is already taken. The...
Hi all, I'm using SOAP::Lite for years to integrate a perl Search Engine through Web Service into other environments (Java, COM, etc.). The server is resides...
OK - I've now been whipped twice in three days. Seems the server i'm accessing doesn't like to use XML for its real power - it returns an array whose...