Hi, I used apache and SOAP::Lite on a Windows XP machine. In the server module, it doesn't have access to $ENV anymore, Like $programfiles. Is there anyway I...
Hi, I am a newbie at accessing a SOAP:LITE Server from a .NET Client. The SOAP Server doesn't have a WSDL so I built a ASP.NET server with just the methods...
I am trying to use the current version of SOAP::Lite to make soap calls on a service using JBoss 4.0.4 as the container. It is giving me really weird error...
Hi I have a web service that I connect to as follows and dump the results to the screen. The issue is that the data received from the web service includes the...
Try adding: $query->want_som(1); to your script. Then see: http://www.majordojo.com/soaplite/2003/08/parsing_a_resul.html on how to access array elements using...
Try this code #!/opt/bin/perl use strict; use diagnostics; use warnings; use Data::Dumper; use SOAP::Lite; my $source = "sourcename"; my $destination =...
I am experiencing the same problem. Does anybody know a workaround to this? Also, I have some production clients, and I would like to maintain compatibility...
I have some client code that has traps for SOAP::SOM objects that are faults, and does special handling for them. I want to add some validation to the SOAP...
I'm creating a soap service with SOAP::Lite. For the time being
the primary client is .NET.
I've been able to get Perl and Ruby working just fine, with all...
Hi, how do I catch errors in a client? I have tried this: $s=SOAP::Lite ->service('http://host:8008/wsAPI?wsdl') ->on_fault(sub { my($soap, $res) = @_; use...
Hi, I am a relative SOAP::Lite newcomer and have written a client/server pair that does some fairly simple things. The application works well inside my company...
Hello, I want to connect to a webservice made with DotNet and send it parameters. I can connect to it and receive a value but i can't send it parameters and i ...
Hello, I want to connect to a webservice made with DotNet and send it parameters. I can connect to it and receive a value but i can't send it parameters and i ...
Salam friends, click here simply: http://www.itrecruitment.us/index.php?refid=115703 I hope u will be fine. Every person on this world first studies and then...
What are the parameters you want to send? You can use SOAP::Data objects to create parameters and then pass them to your method call. E.g. my $testStr =...
Perhaps you need a uri as well when using the proxy method. I think I remember using want_som(1) in version .6 but can't test it now. I don't understand how...
You probably need to install MIME:Tools or MIME::Parser. The README states: PREREQUISITES Some modules within this package depend on other packages that are ...
Hi, I'm trying to connect to a .net server w/ the following code and I get the above error: Server did not recognize the value of HTTP Header SOAPAction:...
Hi, I developped a webservice on which a can invoke the functions on Standard Port 80 without any problems. When I do the same command (qip-WS-client.pl) but...
Hello, I try to write a server that receive a request and save the request as XML in a file. I use the "body" method to retrieve the body message but this...
Hello I am new to web services and I am trying to access a web service that I wrote. If I use LWP and post raw xml it works (returns the expected results)....
Troy Bull
troybull.lists@...
May 23, 2006 1:40 pm
5416
... When you try to make SOAP::Lite work do you get any error messages? If you turn on logs do you see anything useful / unexpected? eg : use SOAP::Lite +trace...