Sorry. I'm new to SOAP::Lite and have a Perl package I'm dispatching CGI-based SOAP messages to. This package is returning raw XML. How can I specify that...
Hi - I have a SOAP::Lite client which passes a complex parameter to a Java server. Eveything works fine except for one of the subparamters which can't be...
... This (or similar) goes in the FAQ: my $myProxy = SOAP::Lite->service($serviceURL)->xmlschema(2001); TW...
Tim Wood
timwood0@...
Feb 3, 2004 10:47 pm
3341
hi, I really try to implement diferent actors ... just there is absoloutly no documentation on it ... or am i just to dump to find it? could anybody please...
Hi, everyone, I am developing a SOAP server/client in OO-style. I need to transfer a big size of data. When I am trying it, I always got an error "500 read...
Peijun Zhang
peijunz@...
Feb 4, 2004 4:32 pm
3343
Hi! This might be a very stupid question, but I didn't find the answer to it anywhere. I have problems using remote objects by reference using Apache's...
Andre Bonhote
andre@...
Feb 5, 2004 2:28 pm
3344
Hi Andre, although i'm not completely sure, i think i know what's happening. A solution is not in my mind currently, perhaps someone else may know how to use...
I have been doing some testing of Soap::lite server, and everything worked fine with a SOAP::Lite client, but I have been having problems with a Java Axis...
... Funny enough: I run ./httpd -X and the thing works fine! Any way to work around this? Thanks André -- Wenn der Bauer nackend tanzt, sich die Magd im Stall...
Andre Bonhote
andre@...
Feb 5, 2004 4:02 pm
3347
Take a look at an Amazon REST2SOAP gateway I created. In its code samples I use a CGI to receive a SOAP request, make a REST call, and the wrap the REST...
Hi, Can anyone help me with this problem? I have a java web service written using JAX-RPC. I have a test function which accepts a file and return the same...
I see on the change log for .60 that an Axis interoperability bug was fixed to output a CRLF to terminate a MIME boundery (as required by Axis) instead of a...
Problem Definition: I had to access a web service using SOAP. The request XML that is to be sent to a web service is a bit complex. Therefore, I got...
Greetings all, For some reason we occasionally get the following message when making our SOAP client request: no element found at line 1, column 0, byte -1 at ...
I thought I did a followup post on the group, but I must have forgotten. My problem was really simple to solve, maybe it will help you: I am running mod_perl...
I order to fix the interop issue, you must download the latest MIME::Tools package. However you need to download: MIME-tools-6ALPHA-6.x or greater This version...
Hello All, I am working on a SOAP::Lite client, using S::L 0.55. I frequently make use of this idiom: my $soap = SOAP::Lite ->proxy( 'soapd:8080/soapd/' ) ...
Please check out the latest in SOAP::Lite examples and HOWTOs at: http://www.majordojo.com/archives/000150.html http://www.majordojo.com/archives/000042.html ...
I am looking for a method of accessing SOAP fault info when calling services through WSDL. Apparently, the result of SOAP calls made in this fashion is not a...
-- This is a small portion of my SOAP::Data construct. SOAP::Data->name(varList => \SOAP::Data->name(Variable => \SOAP::Data->value(SOAP::Data->name(strVN =>...
I think you want to do this: SOAP::Data->name(varList => \SOAP::Data->value( SOAP::Data->name(Variable => \SOAP::Data->value( SOAP::Data->name(strVN => 'a1'), ...
I'm finding that using a global fault handler doesn't seem to work when using WSDL to create the SOAP object: # global on_fault handler use SOAP::Lite on_fault...
Hi, I think given below code will help you. I had tested this. Only one thing i assumed that varList is the Name of method which you want to sent this request....
Hi, I had already written a piece of code for constructing these kinds of complex request. you can see the message "HOW TO - Access Nested SOAP Body Element" ...
Hi, List! I have written a little SOAP Server using SOAP::Transport::HTTP It forks off in to background and works smoothly so far. As a watchdog functionality,...
Klaus Guenter
klaus.guenter@...
Feb 17, 2004 11:58 am
3366
Hi, I've been trying to get Perl Soap's server to return a map so that I could type-cast it into a HashMap in Axis. This is what I have: sub test2_2 { return...
The reason might be that the daemon handle is in blocking mode. Try setting it to non-blocking and then calling the handle routine using a timer. Jonathan ... ...