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...
Hi Everyone, I built a module with stubmaker.pl to connect to a web service which generated two parameters <code snippet of the two parameters> parameters => [...
My apologies if this has been explained before. I have set up a simple Soap server, and it is working as expected. However i do have one question, When adding...
This is because mod_perl keeps the code in memory (and as such, doesn't necessarily reload it when the code changes) - however you shouldn't need to stop and...
Hello, I'm new to SOAP::Lite and I'm having what's probably a silly error on my part, but I haven't been able to find anything related in the archives here or...
... Do it this way: $CallCredentials = SOAP::Data ->name(credentials => \SOAP::Data->value( SOAP::Data->name(Username => $UserName)->type('string'), ...
It''s been a while since I played with stubmaker.pl but if I remember correctly it's abilities are slim. I remember having to modify the generated Perl...