Hello, Some time ago I created a SOAP simulator to be able to easily test the various combinations of our webservices. Currently I am having problems though to...
Hi all, I'm very new to SOAP::Lite and webservices and XML in general, so please be patient with me ;-) I tried the HelloService example from the soap book. I...
Hello All, I am a complete newbie to both SOAP::Lite and perl.I haveinstalled Soap::Lite and also managed to write a simple client and server program.Its...
This is my first time using SOAP::Lite where it wasn't mostly done by someone else (like in MovableType ;) and I'm still slowly sorting out all the bits and...
... The warning is probably caused by one of your hash keys having a character that is not valid in an XML element name. Possibly a space character but it...
Hello, I've installed SOAP::Lite on my Solaris box: perl 5.8.3 SOAP::Lite 0.60 XML::Parser 0.34 I have successfully been able to send SOAP messages, but when I...
Hi all I am running a SOAP::Lite service, (SOAP::Transport::HTTP), which returns an array of hashes to a nuSOAP PHP client, it all works fine, except that the...
Hi, I'm having little problems with functions having to return data containing strings with (french) accents (éè...). What should I use to get it passed...
Dear all, security is really important for my future Web Services. Which standardization is the best to implement with soap::lite - or better: which one is...
I has written a perl soap server, it it sample return an array sub testarray { my @var2; push @var2, '123'; push @var2, 'efg'; push @var2, 'hig'; return @var2;...
Hi all I have been using soap::lite for some time now, but have never had to change the default way the input xml looks like. I have to call a web service that...
Hi, as i can see there are more people having problems with this. I think there should really be a note on the soap-lite site for other developers. Btw: I only...
Hello All, I am a complete newbie to both SOAP::Lite and perl.I haveinstalled Soap::Lite and also managed to write a simple client andserver program.Its...
Hi all, Has anyone here tried to make use of a web service where the function name for calling the service has a hyphen in it? Some languages (e.g., Lisp)...
I have 1gb documents to be passed around using the soap protocol. is it possible to just send the xml as is with out serialization?? The only way i can see to...
Hi, I have a soap lite client at a customer, which hangs sometimes, the sysread function doesn't come back. I suppose this is caused by a transparent proxy....
Hi, i've had a problem with getting no responses from my SOAP::Lite Server. This "error" was due to the fact that i used "perl -W" in the first line of my...
Hi, I've again been looking but haven't been able to find a tutorial for soap::lite that shows how to use digital certificates. I know that the original Soap...
I have a super simple .net (.asmx) web service that exposes one method: int Add (int x, int x) I have downloaded and installed SOAP::Lite and it appeasrs to...
I'm quite new to your group but I wanted to pass on a helpful hint to help find info online without searching through a million search links. Its a great...
Hello all-- I'm running into an interesting issue... Server is NuSOAP v1.75, client is SOAP::Lite v1.47. When I try to call a server method vi a NuSOAP...
All, I'm getting an error message: 'Element39; is an invalid node type The web service is .NET, calling from SOAP::Lite perl script.... the perl code, .NET soap...
Is it possible to change namesp1 to a specified string when the soap message is created? I have typed xml i.e. xsi:type="Namespace::Element" which cries with...
I'm having trouble understanding why I get a '#' in my SOAPACtion in the http header ? I use this code (yes, it's awful..) to call the webservice: #!/bin/perl...