######################### 1) My web server requires basic authentication, so the following does not work: #! /usr/bin/perl -w use SOAP::Lite +trace =>...
... <http://www.perl.com/pub/a/2001/04/24/soap.html> shows examples doing BasicAuth. That code works fine for me. Achim -- SOAP::Lite and WWW-Negotiate...
I am calling a server procedure that returns a hash reference. It works fine when I call the procedure locally. However, bad things happen when I use SOAP. ...
I've got a Soap::Lite client/server. The server is running as a CGI script on apache (over SSL). The just forwards commands to be processed, and returns the...
So, I have a soap server running on php which I know is working because it works on PHP and when I run the '+debug39; on soap::lite it gives me back an array of...
Hello, I'm rather new to the SOAP world, so if this is a FAQ, please let me know. We're working with a SOAP method "Request", which requires that the payload...
5855
Dave Howorth
dhoworth@...
Feb 15, 2007 9:18 am
Oops! sent it just to the OP ... ... Well, you haven't shown much detail :) My guess would be that you're doing some operation in scalar context instead of...
5856
Dave Howorth
dhoworth@...
Feb 15, 2007 9:53 am
... I believe you'll need to encode the XML yourself before giving it to SOAP::Lite. It doesn't do anything itself, AFAIK. In my limited experience, the...
The SOAP server that we're performing our query against is especially slow, so I'd like to save the SOAP response as XML and write it to a file for later...
I'm working on a project that needs to follow this logic: Try the request If failed with "Invalid Login" error message, then: Ask user for username/password ...
Hi Lev, you could use HTML::Entities. eg use HTML::Entities; ... my $payload = '<?xml version="1.0" encoding="utf-8"?><block>some data</block>'; $data = ...
Hello, I'm trying to send attachments using the SOAP::LITE and SOAP::MIME modules without success. I used an example from a website that seems to work but when...
Hi, is there any possability to realize basic auth with a small SOAP::Lite HTTP server? What I need is to send HTTP-Headers for basic auth and the returned ...
Hi, here is my problem: I need to send a binary file to a SOAP::Lite server from a coldfussion page, I know that there are several ways of doing that, with...
Hi, i'am using SOAP::Lite versión 0.69, just installed from CPAN, i've been in many troubles, finally made it work with wsdl, https and apache basic...
Hi, I am new to Soap::Lite and am trying to run the simple hibye example as detailed on the quickstart page of soaplite.com. I have done a search for my...
Hello everyone, I'm new to SOAP::Lite and now found a problem I can't solve, thats why I'm writing this email. So far I have a SOAP-Server and client running....
... What is $name set to? Also, is 'localhost/soap/test.wsdl' a path, or an attempt at a URL without a protocol? And, you seem to have mixed a few statements...
5914
James Abbott
j.abbott@...
Mar 15, 2007 8:12 pm
Hi Folks, I'm having trouble trapping soap faults when access a service using SOAP::Lite accessed via a wsdl. My client code looks something like: my $wsdl =...
I am trying to create a WSDL file for the temperature examples in the quick start quide to SOAP::Lite. However when I run a client that uses the WSDL,...
Dear SOAP::Lite Developer Community, Over the past 12-18 months the soaplite mailing list has been a haven for spam and spammers. It has clogged all of our...
Hi, I have to write perl based web services which I will be doing using SOAPLite but my Client is Java. and I have no idea how to call these webservices from...