Hi, I'm using SOAP::Lite in a fairly simple setup, with no other libraries, and I'm detecting 1M increment on memory usage each time the inner part of a loop...
Hi, I'm using a daemon with TCP transport; one of things I want it to do is to die under request, by inserting a "die" instruction. However, it refuses to do...
I have been looking for two days, but I can't seem to find an answer to this problem. I am trying to make a SOAP call from a Apache SOAP client to a SOAP::Lite...
here the deal: we're using epl's here at work and would like to begin using SOAP::Lite for additional functionally. the concern that been raised is that of...
... Funny, my thought was SOAP (and XML in general) was excellant for hashes. <Hash> <key1>value1</key1> <key2>value2</key2> <key3>value3</key3> </Hash> SOAP...
Paul, we're performing some serious interop tests today and early next week on our SAL Server. We've tested our FREE SMS messaging web service with SOAP lite...
Hi, I'm still a novice at this, and maybe I'm missing something, but I think it wouldn't be too difficult to change SOAP::Lite to make true peer-to-peer...
Can one access the underlying HTTP::Request / HTTP::Message used by the SOAP::Lite HTTP client? I want to change the protocol from "HTTP/1.0" to "HTTP/1.1". I...
i am trying to pass xml data as a parameter. what is the easiest way to retrieve the xml data as a string and not as a reference to a hash? is it possible to...
Hi, I am wondering if it is possible to pass and receive parameters in the header section of the soap envelope using Soap::lite? If so, can someone post an...
I am having a problem accessing the result of a query against a .NET web service. I can set outputxml() and see what is being returned (included below) however...
Hi, I have sent already this message to Perl-XML, but this one is probably more appropriate. The thing is, I'm trying to build an app with two threads, using ...
Hi I realize this question has probably more to do with my Perl-OO-Ignorance than with SOAP::Lite, but the context is a typical SOAP situation: I have a class...
Hello again, This is probably more of a SOAP related question (sorry if too off topic) but I am just wondering if anyone is using a SOAP layer within an...
How can I use both? Obviously, the below won't work: use SOAP::Lite +autodispatch => uri => 'http://XXX/', proxy => 'http://XXX/', +trace => all ; Two times...
Hi, Filip! ... Short answer is "it's possible". ... Ideally you should have one root element under body (it might be not method call, but it should be one). ...
hello, Is there anyway of enabling server side debugging? i Ideally I would like to be able to dump incomming SOAP requests to STDOUT. something like my...
Hi, Can SOAP::Lite handle dipatching to alternate proxies in the event of failure? What I had in mind was the following: use SOAP::Lite +autodispatch => uri...
Hi, I have written a SOAP::Lite server that opens a database connection upon startup (ie before handle() is called). I need to find away to make this handle...
I just found something that's slightly annoying. If I autodispatch, I can do stuff like my ($result,@paramsout) = SomeRandomSOAPCall(); However, if I create a...
Hi, does someone have experience with this setup ? what i am trying to do looks like this in perl with SOAP::Lite : #!/usr/bin/perl -w use strict; use...
Hi all, for ease of deploy, is to possible to force use of XML::Parser::Lite instead of XML::Parser with perl 5.005_03 ? the doc says it's auto for perl 5.6...
Hi there, I'm Quite new to SOAP, searched for Java & Perl but did not find enough to solve this one: I'm trying to communicate array's from Perl5 to Java via...
... We had a similar situation, which was (apparently) resolved by adding 'Reuse => 1' to the Daemon->new() call: my $daemon = SOAP::Transport::HTTP::Daemon ->...
I've noticed that while using the HTTP::Daemon version of SOAP::LITE the sockets go into TIME_WAIT for quite some time before expring. I've had this problem...
Hi, Duffiana! ... Actually it may work. Sometimes :) ... It's not cryptic, it's base64 encoded. SOAP::Lite uses base64 encoding, and it seems like Apache's...