Hi there, What follows is the description of what I think is a bug in SOAP::Lite. It's not a major bug, but may cause you a lot of grief, as it did to me. The...
Hi! Is there a way to build (maybe by hand, but how?) proper, working WSDL code out of a SOAP::Lite server? In other words: How do you build your WSDL code?...
All: I am having problems accessing this WSDL. Can somebody help me in validating the following WSDL document. When I access this WSDL from a SOAP/Lite client,...
Hello Fellows, I need to implement some asynchronous web services, and I would like to know how you have managed this using SOAP::Lite. I have read these...
Hello! According to the SOM object sections found in both the SOAP::Lite manual and in the "Programming Web Services with Perl" book, I should be able to...
Hi, I'd like to know if it's possible to use, off-the-shelf, a SOAP::Lite server with a, for instance, Java client, or both need to use a WSDL description to...
Hello all, I've got a SOAP::Lite "server" (just a CGI, really) that lives in a directory that--via some Apache directives--forces client SSL connections and...
Hello, I was writing a SOAP service using SOAP::Transport::HTTP::Daemon. It works OK, but it is extremely "sensitive" to denial of service attacks - If I...
I was hoping someone could tell me how to enable SSL support when using SOAP::Lite and running the sever in Daemon mode? I'm setting HTTPS_CERT_FILE,...
Hi all, I know a way of to create my own as_string is: package My::Deserializer; sub as_string { shift; require Jcode; return Jcode->new(shift, 'utf8')->euc; }...
I'm writing a perl client connecting to a .Net web service. It seems that I can successfully get to the correct web service api, but, the problem is that the...
Hi - I'm hoping someone can point me in the right direction to help diagnose a problem I am having with XML-RPC responses having Content- length more than...
is there an easy way to grab the bytelength (Content-Length) of the outgoing http message... I'd like to dump it to a db to record any anomalies as most of my...
One thing I find myself constantly doing with my SOAP::Lite clients is commenting in and out the "+trace => 'debug39;" from the "use SOAP::Lite" call so that I...
Hi Folks, i have to send input arguments for a soap-function in the following structure: <customers> <customer> <no>1001</no> </customer> <customer> ...
Hi Folks, i got a little problem: i call a function via: my $result = $soap->call( $method => $arguments )->result; my Soap Client is initalized with this...
Hi! First of all: I am fairly new to SOAP and SOAP::Lite and I didn't have the time to read "Programming Web Services with SOAP", because it arrived yesterday....
Hello All, I have been experimenting with a SOAP::Lite client to a web service implemented using Apache SOAP. The service sets a cookie on the response to an...
Hi all, I'm having problems grabbing parameters by name from the client. I have created a module, MyWorld, containing a function, MyGoodBye, which is loosely...
Hi, Could someone tell me the best way (or any way) to strip off the characters in the Google API response for {title} in SOAP::Lite. This is what I get for a...
This is really really weird... and tricky. It exposes a lot of the configurability of SOAP::Lite, but also a lot of its shortcomings - especially in regard to...
I'm fairly new to perl and very new to SOAP and SOAP::Lite... How do I nest xml elements ? (example below, merchantName and merchantIdentifier nested in...
Hi I have a trivial client calling a mod_perl enabled server, the server returns the following header. ... Client-Date: Sat, 19 Apr 2003 19:58:59 GMT ...
Okay, I am poring over this and I don't see any typos or obvious screwups. I am getting the following error from my freshly installed SOAP::Lite module: ...
I'm trying to connect to a SOAP-daemon with a https connection and want to make a ssl authentication but i get an error message: 500 proxy connect failed:...
Announcement: The latest release (available at the following URLs) SOAP-MIME-0.55-7 fixes a critical bug in SOAP::MIME that causes a crash when you attempt to...
I'm writing a simple client to access a SOAP service. I want to print the SOAP XML messages as they are being sent and received. The documentation seems to...