Hi, I am trying hibye example (hibye.cgi, hibye.pl) from guide.soaplite.com, but i am getting the following error. Following the error is the client and server...
6083
nanoterabeta
Dec 25, 2007 4:29 pm
my script is following: my $soap = SOAP::Lite -> on_action( sub { join '/', 'http://somewebsite39; } ) -> proxy('http://thatwebsite/bla.asmx39;); it produces the...
6084
Phil B
trump_79
Dec 25, 2007 6:56 pm
On your client change the following uri as follows: -> uri('urn:Demo') ... From: kseeker1234 <kseeker123@...> To: soaplite@yahoogroups.com Sent: Tuesday,...
6085
fifth_note@...
fifth_note
Jan 8, 2008 8:36 am
Hi, I'm getting a permission error when I run a cgi script that calls a simple web service. The same web service executes successfully when called from the...
6086
mcm1303
Jan 8, 2008 11:35 pm
I've written a small stub Soap::Lite server that needs to accept requests from a .NET client. It seems like the server can't understand the incoming soap...
6087
rahed
raherh
Jan 9, 2008 1:41 pm
... On the server side: I use the trailing path in line #28 after a url namespace (OTA/2003/05) as a path to an existing module which has a called method. ... ...
6088
techrg99
Jan 11, 2008 9:51 pm
After my Apache/mod_perl/SOAP::Lite based server is running for a while and working perfectly, I get the following error when making a SOAP call: Error...
6089
techrg99
Jan 14, 2008 3:33 pm
I should have mentioned that we are only having this problem only on AIX and that the Apache 2.2.4 and Perl 5.8.8 we are using are NFS mounted - as well as all...
6090
nrocha18
Jan 14, 2008 9:30 pm
Hi, I've been using SOAP::Lite module to access a .NET webservice from a unix machine. Everything was going smoothly until I changed the localization of the ...
6091
mcm1303
Jan 14, 2008 10:12 pm
I have a server that consists of a dispatcher and a separate module running under IIS. I ran them under IIS and Apache. Apache seems to feed way more...
6092
jywu0812
Jan 14, 2008 10:12 pm
SOAP::Transport::HTTP::Daemon - how can one get client information such as ip address? Thanks....
6093
Victor A. Rodriguez
victor_bitman
Jan 14, 2008 11:05 pm
Hi, ... That's correct !! ... Please, try to ask to the .NET people if now the web service redirects to a new URL that is server through SSL. BTW, if you...
6094
Greg Wittel
gwittel
Jan 25, 2008 7:16 pm
I noticed in SOAP::Lite 0.70_2 you fixed the UTF8 and base64 bug where base64_encode() was handed UTF8 data (CPAN Bug# 30271). We're using SOAP::Lite 0.60_1...
6095
phoose2
Jan 26, 2008 4:10 pm
I'm pretty new to soap and trying to develop an application to rate and eventually ship and print labels for shipments. Here's a current look at some of the...
6096
Eric Bridger
ebridger2004
Jan 27, 2008 7:17 pm
Yes. Support for WSDLs in SOAP Lite is minimal so you will need to use SOAP::Data to format your messages and for parsing the responses. This site has quite a...
6097
Andrei Ivanov
ensen_andy
Jan 30, 2008 2:42 am
Getting array at the client side is no problem with Soap::SOM, but how I can get passed array at the server side? I can not get SOM methods at the server. This...
6098
Jose Borges Ferreira
debaixo_de_f...
Jan 31, 2008 9:19 pm
Hi all! I've a system where i can call several methods in the same request. For instancem the body will look something like this: <SOAP:Body> <ping> ...
6099
Peter Hartmann
huberhans90
Feb 1, 2008 9:03 pm
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"....
6100
huberhans90
Feb 1, 2008 9:04 pm
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"....
6101
Eric Bridger
ebridger2004
Feb 1, 2008 10:05 pm
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...
6102
Craig Dunigan
craigdunigan62
Feb 4, 2008 3:44 pm
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...
6103
rvanveen_nl
Feb 4, 2008 6:51 pm
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> ...
6104
Paco Regodón
francisco@...
Feb 4, 2008 11:31 pm
Hello, I am using SOAP::Data to build a request to a SOAP server. I send ir with SOAP::Lite, generating this request XML: <?xml version="1.0"...
6105
Andrei Ivanov
ensen_andy
Feb 5, 2008 6:33 am
Client side: my @d; $i = 0; while (<STDIN>) { chomp; @d[$i] = SOAP::Data->name('appointment39;)->type('appointment39;)->value( [ ...
6106
Gomathi Muthiah
jobcookies2
Feb 5, 2008 6:34 am
Dear Friends Greetings from Gomathi - Job Cookies, I represent one of the leading IT consultancies called Job Cookies. Job Cookies is a dynamic and...
6107
Peter Hartmann
huberhans90
Feb 5, 2008 3:34 pm
... 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,...
6108
jwalsh999
Feb 9, 2008 7:18 am
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...
6109
axelelfner
Feb 11, 2008 4:35 am
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...
6110
Andrei Ivanov
ensen_andy
Feb 11, 2008 3:25 pm
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...
6111
occasoblu
Feb 14, 2008 6:22 am
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...