Hello, I'm trying to call a webservice (which I think is generated using axis). If I specify the WSDL I always get the same empty param in the request even if...
6251
Martin Kutter
kutterma
Oct 19, 2008 3:09 pm
Hi Tony, the namespaces are defined in SOAP::Constants. Unfortunately they cannot be overridden at run time, because perl's peep-hole optimizer inlines ...
6250
Tony Gravagno
tgravagno
Oct 18, 2008 11:22 pm
... Radek responded ... Thank you for the suggestion. This does change the header but the server is now complaining that the client is using the wrong SOAP ...
6249
rahed
raherh
Oct 14, 2008 9:31 am
... You can change the content-type with $soap->transport->http_request->header(39;Content-type' => 'text/xml39;); -- Radek...
6248
Tony Gravagno
tgravagno
Oct 13, 2008 10:50 pm
We have Perl v5.8.0 client code that has always targeted SOAP 1.2 with SOAP::Lite 0.55. It runs against a remote server with the same releases. We recently...
6247
rahed
raherh
Oct 8, 2008 7:55 am
... A request expects a soap structure which is done by SOAP::Data class. Check the SOAP::Lite docs. -- Radek...
6246
rahed
raherh
Oct 8, 2008 7:48 am
... You should get the fault this way. You may changed the $som object before calling a fault method. -- Radek...
6245
Oeschey, Lars (I/ET-8...
lars.oeschey
Oct 6, 2008 2:57 pm
... This works good for the positive case (i.e. all values are good). If I want to get an error, by sending the last value as string, I should get an error...
6244
Oeschey, Lars (I/ET-8...
lars.oeschey
Oct 6, 2008 2:57 pm
... great, this works! Thanks a lot! Would you mind explaining what the difference is now? Can I maybe read up somewhere about generic Soap handling? It seems...
6243
rahed
raherh
Oct 4, 2008 3:53 pm
... First don't input raw values to teInput function. Follow your service description. Something like this: my $som=$soap->teInput( SOAP::Data->name(in0 =>...
6242
rahed
raherh
Oct 3, 2008 3:02 pm
... Appears your $som object is an empty string. -- Radek...
6241
Oeschey, Lars (I/ET-8...
lars.oeschey
Oct 2, 2008 6:26 pm
... as you can see from the post after that one (btw, this is the slowest list I know, not from participants but post speed, i.e. yahoo ;)), I've been able to...
6240
Bryan
rdsxfan74
Oct 2, 2008 6:25 pm
Hi, I am using SOAP-Lite v 0.710.08. I am trying to get the result data from the xml response, but I keep getting error 'Can't call method "dataof" without a...
6239
patrick mariani
w8itout
Oct 1, 2008 4:16 pm
eval is typically used to catch a critical error - exactly as you said where perl does not return. the parameter missing error you are receiving is because it...
6238
Oeschey, Lars (I/ET-8...
lars.oeschey
Oct 1, 2008 2:55 pm
I got a bit further on this, though not very successful. Using the ->trace method of SOAP::Lite, I could see what I'm sending and receiving: sent: <?xml...
6237
Oeschey, Lars (I/ET-8...
lars.oeschey
Oct 1, 2008 2:55 pm
... string ... I also practically never used eval, so I don't know ;) ... The eval was a workaround, since without using it, I wouldn't get *anything* back in...
6236
Supra, Morne
mornesupra
Oct 1, 2008 2:55 pm
Hi all I am calling a Jasperserver SOAP server to get the results of a report. The call is successful, but I can not view the results. It always end with: ...
6235
pat.mariani@...
w8itout
Oct 1, 2008 2:55 pm
I'm not a great perl person, but doesn't using eval put the fault string out of scope for the block in which you are attempting to print? I've always been able...
6234
Oeschey, Lars (I/ET-8...
lars.oeschey
Sep 30, 2008 5:14 pm
... hm, I asked the company that is responsible for the server side of the SOAP I use. They told me they send a faultcode etc., it looks like this: HTTP/1.1...
6233
ashgromnies
Sep 27, 2008 9:40 pm
I am using SOAP::Lite 0.60 and upgrade is not an option. I am using dispatch_with to call the modules that have my logic to generate the SOAP in them. Here is...
6232
Lamar Hawkins
dlamarhawkins
Sep 25, 2008 5:38 pm
You will find that the "500 Internal Server Error" is returned for many cases where there is a problem on the server side like missing parameters or...
6231
Oeschey, Lars (I/ET-8...
lars.oeschey
Sep 25, 2008 8:03 am
... very nice, that works... another question, I didn't write the server part, but I have a feeling that it's not correctly implemented. If I give a wrong set...
6230
Lamar Hawkins
dlamarhawkins
Sep 25, 2008 3:37 am
Try the following syntax: $soap = SOAP::Lite -> uri("$yourURI") -> proxy("$yourProxy"); eval {$soapReply = $soap->function($soapRequest);}; if ($@) { chomp...
6229
Oeschey, Lars (I/ET-8...
lars.oeschey
Sep 24, 2008 2:29 pm
Hi, I have a little script that uses SOAP. I have problems with error handling. A little example script looks like this (working example): use SOAP::Lite; ...
6228
Lamar Hawkins
dlamarhawkins
Sep 17, 2008 12:09 am
(A few of the xmlns values were incorrect. They have been corrected inline below.) I'm running Perl v5.8.0 built for i386-linux-thread-multi under Linux ...
6227
Lamar Hawkins
dlamarhawkins
Sep 11, 2008 3:34 am
I'm running Perl v5.8.0 built for i386-linux-thread-multi under Linux 2.4.21-57.ELsmp. Our SOAP::Lite is at v0.710.08. We're dealing with a picky SOAP client...
6226
Thomas J Pinkl
tpinkl
Sep 9, 2008 8:59 pm
... I cannot post the code, as it is part of a commercial product that is sold by my employer. In pseudo code, it would look like so (untested): use...
6225
bohdan.linda
Sep 9, 2008 8:22 pm
Hello, From a soap call I am returning header and data. Header is constructed as: $header = SOAP::Header->name( "status"=>\SOAP::Header->value( ...
6224
rahed
raherh
Sep 6, 2008 11:57 am
... When I exclude CGI.t, all tests are successful and the module works ok. Though I don't use CGI part and compile with dmake....
6223
lormidorido
Sep 6, 2008 7:21 am
Hi Paul and others on the list, I am sorry to bother you but having now been struggling for days with getting my SOAP::Lite server installation to return MIME...