Hi, I have a SOAP service running as a .pm via Apache2::SOAP, which is a SOAP-specific mod_perl2 wrapper lib. However, I cannot get the mod_perl2 methods for...
It's been a while so I can't recall if we had problems with this also but we have a similar Apache2 setup and just used: $ENV{REMOTE_ADDR} HTH. Eric...
I'm trying to use SOAP Lite through mod_perl to integrate with QuickBooks. QuickBooks does a GET /soap HTTP/1.1 (/soap is the endpoint I'm using) in order to...
Dear Soap:lite Communtiy. I writing a soap:lite client for some web service which returns me a byte array of an image which I would like to save to a file. Can...
Hi, I'm on SOAP::Lite version 0.66, using a WSDL (below) to make the ... my $soap = SOAP::Lite->service('file://path/to/Authentication.wsdl') ->proxy($ws_url);...
Hi I suspect this may be obvious but I am not clear on what happens where. I have to make a SOAP method call to a 3rd party, passing a return URL as one of the...
This is a normal substitution and *should* happen automatically; & (like < and >) is an illegal XML character, so it gets encoded as & in the SOAP XML...
I have a couple of scripts which had the following construct for custom http headers which worked with v0.69: $client->transport->http_request ->header('Foo'...
Hi, Sorry if this has been asked a lot but I wasn't able to find a clear solution to this yet. I'm working on some scripts to upload base64 encoded files to a...
Jeremy
s6a9d6u9s@...
Jul 9, 2008 9:30 pm
6173
Hi, I'm new to SOAP::Lite and I've been following the simple examples I've found. However I'm stuck on whats happening here: The simple test server takes a...
I have a server and client scripts called lights.pl and lights.cgi. This script controls my X10 lamps using the Device and ControlX10 perl modules. I can't run...
Rahed - ... Chris - ... Thanks guys - this helped alot. I was a bit unsure re the behaviour changing in the newer version of SOAP::Lite - also I was using XML...
... It can be anything of: permissions of lights scripts and cgi-bin directory, owner should be apache user scripts line endings on unix: line feed, on windows...
I had most of Soap calls working in version 0.6. On upgrading to 0.710, none of them seem correct. Has anyone seen this issue and how have you fixed the...
When code is as follows my $s = SOAP::Lite -> proxy('http://172.17.164.154:4094/SDrive/SDAMex') -> uri('urn:#SDAGetWSInfo'); logcomment("Response is $s"); my...
My server set up is: SOAP::Lite 0.69 Apache/2.0.55 mod_perl 5.8.7 When a client sends a request for SOAP 1.2 there is no xsi declaration in the response: ...
Hi SOAPlite Group, i am new to SOAP Lite (and PERL in generell ;-)) and stuck in a problem. I'am able to give a wsdl, call a Function with a parameter. But...
See if this does it for you! Pat print $result->valueof('//firstname') . "\n"; ... From: langnau_8135 To: soaplite@yahoogroups.com Sent: Wednesday, July 30,...
I have a method (get_fees) for the Web service returning the 'fees' XML and I'm able to do that by simply populating my_variable with the XML and returning...
I'm using XML::XPath to access the element and attribute values - works out well - pat example $result = $soap ->readable(1)->outputxml(1) ->proxy('http://',...
A simple question, but I can't find the answer on www.soaplite.com I have a SOAP method that returns multiple results: sub Foo { my $Self = shift; my...
Hi, I have a soap serializer (server) that usually returns strings for most requests. However, for one request, it returns an array of strings. In the past, I...
Hi I am making SOAP requests in the following way (have had to remove real urls so not runnable as is but hopefully it makes enough sense): ###### package...