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...
6169
rahed
raherh
Jul 4, 2008 6:07 pm
... Have a look at SOAP/Lite.pm. Description starting at line 359 (SOAP::Lite, v.0.710.07) may be helpful. hth -- Radek...
6170
Chris Woodfield
cwoodfieldatl
Jul 4, 2008 9:07 pm
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...
6171
sureshsundriyal
Jul 9, 2008 9:29 pm
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('Foo39;...
6172
Jeremy
s6a9d6u9s@...
Jul 9, 2008 9:30 pm
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...
6173
si_morton_uk
Jul 10, 2008 7:07 pm
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...
6174
Jeff Yoak
yoak
Jul 11, 2008 4:27 pm
Hi there! I am new to SOAP::Lite and ran into what is probably a simple problem, but I am dead in the water. I have a wsdl here:...
6175
erabelas
Jul 14, 2008 2:57 pm
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...
6176
Mark Knoop
marknoop2002
Jul 14, 2008 5:02 pm
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...
6177
rahed
raherh
Jul 14, 2008 7:34 pm
... 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...
6178
ur_php_developer
ur_php_devel...
Jul 16, 2008 5:01 pm
My first parameter regionId is not being generated in the SOAP request. Can someone help? # create a hash struct with parameters my @p = ( ...
6179
asmitaj
Jul 17, 2008 5:10 pm
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...
6180
Sanjay Saxena
ssaxena62
Jul 21, 2008 9:43 pm
When code is as follows my $s = SOAP::Lite -> proxy('http://172.17.164.154:4094/SDrive/SDAMex39;) -> uri('urn:#SDAGetWSInfo39;); logcomment("Response is $s"); my...
6181
rolf.banting
Jul 22, 2008 10:46 pm
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: ...
6182
langnau_8135
Jul 30, 2008 7:47 am
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...
6183
patrick mariani
w8itout
Jul 30, 2008 2:28 pm
See if this does it for you! Pat print $result->valueof(39;//firstname39;) . "\n"; ... From: langnau_8135 To: soaplite@yahoogroups.com Sent: Wednesday, July 30,...
6184
qglex
Aug 6, 2008 5:20 pm
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...
6185
pat.mariani@...
w8itout
Aug 6, 2008 8:55 pm
I'm using XML::XPath to access the element and attribute values - works out well - pat example $result = $soap ->readable(1)->outputxml(1) ->proxy(39;http://',...
6186
John Gateley
jfootiger
Aug 7, 2008 7:17 pm
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...
6187
Edward Kawas
kawas7
Aug 8, 2008 4:24 pm
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...
6188
Mark Knoop
marknoop2002
Aug 14, 2008 3:53 pm
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...
6189
patrick mariani
w8itout
Aug 14, 2008 6:30 pm
Here was my solution - both the wsdl fetch, and the method needed timeouts. pat my $soap = SOAP::Lite ->proxy(39;http://', timeout => 1) ...
6190
Mark Knoop
marknoop2002
Aug 14, 2008 8:45 pm
Here was my solution - both the wsdl fetch, and the method needed timeouts. pat my $soap = SOAP::Lite ->proxy(39;http://', timeout => 1) ...
6191
cracknphrack
Aug 17, 2008 10:01 pm
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 => [...
6192
bnyec
Aug 19, 2008 8:44 pm
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...
6193
Chris Woodfield
cwoodfieldatl
Aug 19, 2008 8:53 pm
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...
6194
ErikTheRed
er1kthered
Aug 20, 2008 3:58 pm
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...
6195
rahed
raherh
Aug 20, 2008 7:58 pm
... Do it this way: $CallCredentials = SOAP::Data ->name(credentials => \SOAP::Data->value( SOAP::Data->name(Username => $UserName)->type('string'), ...
6196
ErikTheRed
er1kthered
Aug 20, 2008 10:39 pm
... From: rahed <raherh@...> Subject: Re: [soaplite] Serialization problems: To: Date: Wednesday, August 20, 2008, 12:58 PM ... Do it this way: ...
6197
Eric Bridger
ebridger2004
Aug 21, 2008 2:08 am
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...