I've been beating my head against this one for a while and not finding any solutions, so I thought I would post mine. Talking to the .net service from SOAP was...
5795
Byrne Reese
byrnereese
Jan 16, 2007 10:50 pm
And a slightly edited version has been posted to the SOAP::Lite blog: http://www.soaplite.com/2007/01/state_of_the_so.html...
5796
Charlie Bowman
cbowmanschool
Jan 22, 2007 9:31 pm
... From: Charlie Bowman <charlesmbowman@...> Date: Jan 19, 2007 9:37 AM Subject: Re: [soaplite] State of the SOAP To: Byrne Reese <byrne@...> ...
5803
Mark Wilkinson
markilluminae
Jan 25, 2007 5:25 pm
Hi all, Quick question - should the code fragment below set the User Agent HTTP header to be "myApp" when called by SOAP::Lite? @soapargs = ( $url, proxy => [...
5804
medi.montaseri
Jan 26, 2007 8:22 am
Hi, How does one write a multi-client SOAP daemon (standalone server)? That is daemon waits for incoming call, picks it up, forks a child and let the child...
5806
Dave Howorth
dhoworth@...
Jan 29, 2007 8:00 pm
... There are a bunch of examples that come with SOAP::Lite when you install it. soap.daemon.forkafterprocessing and soap.daemon.forkonaccept should give you...
5808
Achim Grolms
achim_grolms
Jan 29, 2007 11:07 pm
Hello, I am using Perl and SOAP::Lite as a Client, transport protocol HTTP. What is an easy way to dump out the XML that "goes over the wire"? (I have had a...
5809
Thomas Eden
teden
Jan 30, 2007 1:20 am
On the client side, do this: use SOAP::Lite +trace => 'debug39;; I usually wrap it inside a check for opt_D from getopts......
5810
Mike C
planetary_mike
Jan 30, 2007 1:51 am
Using ethereal and monitoring the link directly can also be very informative about how things work. Mike _____ From: soaplite@yahoogroups.com...
5811
Achim Grolms
achim_grolms
Jan 30, 2007 6:00 am
... That works fine for me. Thank you very mutch! Achim...
5812
Himanshu Garg
pathrachar
Jan 30, 2007 7:17 am
Hello, I am calling a method from a SOAP client as follows :- my $client = SOAP::Lite->proxy('www.foo.com39;); ...
5815
brgomeistr
Jan 30, 2007 10:55 pm
######################### 1) My web server requires basic authentication, so the following does not work: #! /usr/bin/perl -w use SOAP::Lite +trace =>...
5817
Achim Grolms
achim_grolms
Jan 31, 2007 10:03 am
... <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...
5838
Mark Wilkinson
markilluminae
Feb 5, 2007 7:02 pm
Hi all, Is anyone in the SOAP::Lite community dealing with the non-working version that has been in CPAN for the past few months? ...
5840
cytopia00
Feb 6, 2007 6:45 pm
Hi, I have a XML call that I used in PHP which would pass an array with the following xml: <params xsi:type="ns2:Map"><item><key ...
5841
dlaulusa
Feb 8, 2007 12:46 am
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. ...
5847
Judd Taylor
judd.taylor
Feb 12, 2007 6:27 pm
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...
5848
estrabd
Feb 12, 2007 9:18 pm
I've tried to figure this out myself and I have searched the docs high and low. I get an error from a web service telling me that: The...
5852
cytopia00
Feb 14, 2007 6:35 pm
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...
5853
Lev Lvovsky
levl289
Feb 15, 2007 12:39 am
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...
5857
Lev Lvovsky
levl289
Feb 16, 2007 1:55 am
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...
5858
wrwbayview
Feb 16, 2007 7:46 pm
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 ...
5859
Paul Gallagher
paulpg_sg
Feb 16, 2007 11:58 pm
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 = ...
5865
Wolfgang Täger
wtaeger
Feb 21, 2007 8:51 am
Hi, when I use Soap::Lite version 0.69 like in the code below I create a soap:Envelope: $t= SOAP::Lite ...
5866
il_puto_amo
Feb 21, 2007 10:27 am
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...
5875
holger.wirtz
Feb 23, 2007 9:33 am
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 ...
5877
David Hall
daviddhall
Feb 26, 2007 9:20 pm
Hi folks - I'm having some weird issue when using a URL with an encoded ampersand. The SOAP::Lite code decodes it from "&" to "&" and applies the...
5880
nicholas_toze
Feb 27, 2007 7:25 pm
Hi, I've got a fairly simple perl script, something like this: my $client = SOAP::Lite->service($wsdl); $client->on_fault(...); $client->proxy($endpoint); my...