I am completely new at SOAP, SSL and internet-related protocols generally and am looking to build a SOAP client server interface in Perl. I have managed to...
5942
tommyfliu_ocho
May 11, 2007 11:52 pm
Hello everyone thanks for a great tool I am having problems passing the parameter of type ArrayOfArrayOfArrayOf_xsd_string calling the method ...
5943
Greg Wittel
gwittel
May 14, 2007 5:55 pm
Hi, I'm trying to set up a SOAP::Lite client/server that both submits and retrieves UTF8 data from a database. While I can submit valid UTF8 data (required...
5944
testoutput
May 15, 2007 10:04 pm
Reposting out of desperation: I'm trying to connect a SOAP::Lite perl client to a .Net service and pass arguments to one of the service methods. By all...
5945
Michael
mikeybsae
May 16, 2007 11:48 pm
I am attempting to write a simple SOAP client using the SOAP::Lite module, but I can't seem to make my SOAP requests produce any results. I am wondering if...
5946
Eric Bridger
ebridger2004
May 17, 2007 11:51 am
To see the xml sent: $soap->transport->http_request->content() To see the xml received: $soap->transport->http_response->content() Must be done after the SOAP...
5947
quique_jh
May 17, 2007 1:40 pm
... In order to see the SOAP messages and HTTP headers (if your using HTTP transport) you should add SOAP::Trace like this: use SOAP::Lite +trace =>...
5948
Enrique J. Hernán...
quique_jh
May 17, 2007 1:41 pm
... In order to see the SOAP messages and HTTP headers (if your using HTTP transport) you should add SOAP::Trace like this: use SOAP::Lite +trace =>...
5949
Paul Gallagher
paulpg_sg
May 17, 2007 2:04 pm
Hi Michael, Iremember struggling with the same issue when I started using SOAP::Lite. I searched for a SOAP::Data->get_as_string function in vain. What I rely...
5950
Enrique J. Hernán...
quique_jh
May 22, 2007 12:06 am
Hi, Firstly, I'd introduce myself. I'm one of the developer from eBox platform [1], a perl-based SME server. The GUI currently relies on a Web interface but we...
5951
FreX
min4100
May 22, 2007 5:24 pm
Hi, I would like to know how is it possible to get from the server side (like in on_action method) to be able to read the variables from the header/data that...
5952
FreX
min4100
May 22, 2007 5:25 pm
Hi, I found out that when I call a remote method twice, the destory function is being called as well twice.. But I though that the object is keeped alive in...
5953
Rick Measham
rick_measham
May 23, 2007 6:21 am
This feels like a zero-traffic mailing list .. I'm seeing questions but no answers. Oh well, I'll try :-D Calling SOAP::Lite->service($service) is taking 15...
5954
Paul Gallagher
paulpg_sg
May 23, 2007 10:05 am
Hi Rick, wanted to reply so you don't only hear the echo of your own voice;) I'm afraid I haven't tried to cache soap::lite results so don't have a great deal...
5955
Joe Hourcle
jhourcle
May 23, 2007 2:28 pm
... There's a program in the SOAP::Lite distribution that will take a wsdl file, and create a perl module that you can call, rather than parsing the wsdl each...
5956
Rick Measham
rick_measham
May 23, 2007 2:53 pm
... LOL! Thanks :-D ... I can. If it changes, I will have been the one to load the new software :-D ... That's what I'm currently doing .. it's taking 15...
5957
guylill
May 23, 2007 2:54 pm
Hi! I have spent too many hours trying to work this out. Can anyone help? I'm simply trying to set up two simple operations on a SOAP::Lite server: 1) I need...
5958
Joe Hourcle
jhourcle
May 23, 2007 4:13 pm
... [trimmed] ... You've given us server code, but the error is likely in the client code. Specifically, that error occurs when you try to call a service where...
5959
Joe Hourcle
jhourcle
May 23, 2007 4:26 pm
... If the SOAP server is running as a CGI, then the service will clean up after each call. If you need statefullness, you'll need to run it under FastCGI or...
5960
Joe Hourcle
jhourcle
May 23, 2007 4:40 pm
... It'd be easier to answer your question if you were more specific as to what you considered to be header and/or data. HTTP header? SOAP header (aka...
5961
Thomas Eden
teden
May 23, 2007 5:27 pm
We went with the custom deserializer approach, mostly out of necessity. Someone here thought it was a good idea to use SOAP to transport a 500k XML document...
5962
FreX
jhourcle
May 23, 2007 6:08 pm
Hi! First, I want to thanks for the fast reply, so thanks :) The Soap server I'm running, is by SOAP::TRANSPORT::HTTP:DAEMON, and it is without using any...
5963
FreX
jhourcle
May 23, 2007 6:09 pm
Hi, Thanks for the fast reply. I'm using Soap::Transport::http (::daemon), and I want to have a way to have authorization check (without using apache). I...
5964
Dean J
tall_dean
May 23, 2007 11:59 pm
So, I'm trying to connect to a SOAP 1.2 endpoint using Soaplite. However, it looks like Soaplite is defaulting to 1.1, and it's popping up the ever-friendly...
5965
nicholas_toze
Jun 6, 2007 5:18 pm
The hack I've used is to set a global $last_fault variable in the on_fault handler. Then undef it before the soap call and check if it's defined after the...
5966
pyrtold
Jun 11, 2007 2:30 pm
Hello, I'm trying to write a script that will allow me to download all the photos I have uploaded to my Zenfolio account (which is at ...
5967
decibel3276
Jun 13, 2007 2:30 pm
When the resultant response is the following: <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" ...
5968
Eric Bridger
ebridger2004
Jun 14, 2007 1:41 pm
I believe you need to tell your SOAP client you want it to return an SOM object via: $client->want_som(1); Then use: foreach my $e (...
5969
soapsod
Jun 18, 2007 3:10 pm
Hello, perhaps I should mention that I'm not a web developer and only preoccupy myself with the Perl SOAP::Lite toolkit (at least so far) because I was given...
5970
I.B.
ig3v10@...
Jun 19, 2007 8:54 pm
Hi, i installed SOAP::Lite using cpan shell: install SOAP::Lite it compiled and build ok. but following test from module documentation silently failed, without...