Dear Soap / Perl gurus! I'm using Windows Server 2k3 SP1 and Perl v5.6.1 I have no problem using soap::lite in general i.e. I can pich stock qutes from the web...
Does soap:lite support DIME (attachments) well? Anybody that could share some example code excersising on a public internet service? I saw some about it being...
I am trying to install SOAP Lite from MCPAN and it keeps freezing during the 'nmake test' call at the following line: Running make test Microsoft (R) Program...
We are trying to use SOAP-Lite-0.710.08 to make a healthcheck procedure to access our own Web Service running under Linux/Tomcat5/OpenEdge 10. This is running...
Hi Paul, I am sorry to bother you but having now been struggling for days with getting my SOAP::Lite installation to return MIME attachment I see no other ...
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...
... 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...
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...
(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 ...
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; ...
... 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...
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...
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...
... 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...
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...
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: ...
... 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...
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...
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...
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...
... 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...
... First don't input raw values to teInput function. Follow your service description. Something like this: my $som=$soap->teInput( SOAP::Data->name(in0 =>...
... 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...
... 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...