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...
5383
cardboardbob_2000
cardboardbob...
May 2, 2006 1:21 pm
I'm trying to call a function and pass a message that looks like this: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" ...
5384
julio_delgado_garcia
julio_delgad...
May 2, 2006 5:15 pm
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...
5385
Ravi
d_ravisiddhu
May 2, 2006 8:43 pm
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...
5386
Timothy Legge
tlegge_fundy...
May 3, 2006 7:53 pm
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...
5387
Eric Bridger
ebridger2004
May 3, 2006 9:11 pm
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...
5388
wmorgenstern@...
wmorgenstern
May 4, 2006 11:59 am
Try this code #!/opt/bin/perl use strict; use diagnostics; use warnings; use Data::Dumper; use SOAP::Lite; my $source = "sourcename"; my $destination =...
5390
nodens2k2k
May 8, 2006 11:02 am
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...
5391
Issac Goldstand
margol_il
May 9, 2006 6:23 pm
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...
5392
Chris Dent
chrislondonb...
May 9, 2006 9:18 pm
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...
5394
Torsten Foertsch
torstenfoertsch
May 11, 2006 3:03 pm
Hi, how do I catch errors in a client? I have tried this: $s=SOAP::Lite ->service('http://host:8008/wsAPI?wsdl39;) ->on_fault(sub { my($soap, $res) = @_; use...
5395
prosaic.harper
May 12, 2006 12:40 am
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...
5396
jefonline65
May 13, 2006 9:56 pm
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 ...
5397
jefonline65
May 13, 2006 10:02 pm
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 ...
5398
Kate Yoak
pandayoak
May 14, 2006 1:45 am
I am using SOAP::Lite version 0.6 and cannot upgrade - because newer versions break complextypes in the application I am using. my $soap =...
5400
khuram shahzad
bcss03a106
May 15, 2006 9:16 am
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...
5401
panfe11
May 15, 2006 10:36 am
Hi , i'm trying to compile and send a simple soap message , use SOAP::Lite; $temp_elements = SOAP::Data->name("url" => SOAP::Data->value( ...
5402
Eric Bridger
ebridger2004
May 15, 2006 1:38 pm
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 =...
5403
Eric Bridger
ebridger2004
May 15, 2006 1:39 pm
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...
5404
Eric Bridger
ebridger2004
May 15, 2006 1:45 pm
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 ...
5405
Pauljames Dimitriu
paulj1999
May 16, 2006 1:00 am
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:...
5407
Adrian Diezig
iadiezig
May 18, 2006 4:33 am
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...
5408
deandp357
May 18, 2006 8:54 pm
Hi, I'm having trouble sending a simple boolean across using SOAP-Lite-0.67. My client call is: $result = $bs->submitSingleQuery( 10, # alignment...
5409
Eric Bridger
ebridger2004
May 18, 2006 9:43 pm
I'd try sending 0 or a null string ''....
5410
tilmant_a
May 19, 2006 11:45 am
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...
5411
Eric Bridger
ebridger2004
May 19, 2006 12:33 pm
This article might be of help: http://www.majordojo.com/soaplite/2004/10/intercepting_th.html#more...
5412
gayathri athreya
satanssidekick5
May 20, 2006 6:14 pm
Hi, I earlier had a similar issue with SOAP and have posted the solution in the following link, hope this helps. ...
5413
iadiezig
May 21, 2006 11:38 pm
I have a very strange problem and I have no idea to solve this. I have: - Sun-Fire-V240 with Solaris 5.9 installed - SOAP-Lite Client/Server 0.67 -...
5415
Troy Bull
troybull.lists@...
May 23, 2006 1:40 pm
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)....
5416
Peter Sinnott
psinno
May 23, 2006 1:53 pm
... 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...