Hello - I have a client sending data to a server and the XML is blowing up during parsing. I need to view the envelope before SOAP::Lite parses it. I tried...
6069
Ivor Durham
ivordurham
Nov 26, 2007 8:55 pm
I have a simple service for uploading a file to a server with authentication. If the authentication fails, I generate a fault. If I invoke the operation using...
6070
mike@...
michaelptaylor
Dec 3, 2007 5:22 pm
Hi. First-time SOAP::Lite user here. So I have to make a Perl program that acts as a SOAP client; and as far as I can see, the only realistic option for doing...
6071
Edward Kawas
kawas7
Dec 4, 2007 5:33 am
I believe that the latest version is 0.69 http://search.cpan.org/~byrne/SOAP-Lite-0.69/ Eddie _____ From: soaplite@yahoogroups.com...
6072
mike@...
michaelptaylor
Dec 5, 2007 4:58 pm
I am trying to make a SOAP::Lite client that accesses a service described by WSDL. Here is the simplest possible version: #!/usr/bin/perl -w use strict; use...
6073
Chuck
chuck_cochems
Dec 8, 2007 8:20 pm
Okay i'm trying to talk to this api that returns data structurs as results. Here's my code to talk to it. $result =...
6074
Chuck Cochems
chuck_cochems
Dec 8, 2007 8:20 pm
I have this soap API i'm trying to talk to. And it likes to return blessed references as results... and I can't for the LIFE of me figure out how to get at the...
6075
brettrandall83
Dec 9, 2007 6:37 am
Hey all Fairly new to SOAP::Lite but have been using Perl for awhile. I've created a module called "dbtcp.pm" as an interface to the "dbtcp" command line...
6076
Mike Taylor
michaelptaylor
Dec 10, 2007 4:03 pm
The WSDL service referenced in the SOAP::Lite Quick Start Guide at: http://guide.soaplite.com/#access%20with%20service%20description%20(wsdl) seems to have...
6077
Eric Bridger
ebridger2004
Dec 12, 2007 3:24 pm
See: http://www.majordojo.com/archives/cat_soaplite_solutions.html There is a section "Parsing a result object from SOAP::Lite" which explains that the...
6078
cj.aaron
Dec 13, 2007 8:16 pm
Hi, I am running an HP Alpha DS25 server, openvms 8.3 os, and perl v5.6.0 built for VMS_AXP. Will your version of SOAP run on our server with Perl? Thanks, ...
6079
joel.thoren
Dec 13, 2007 8:16 pm
Hello "the list" ! I'm using perl to create a client that is expected to exchange quite extensive xml structure according to the soap v 1.1 standard. According...
6080
vinita batra
vinita_ymca
Dec 21, 2007 7:23 pm
Hi, I have one C#.Net WebService deployed on windows server 2003. and i have following rquirements: 1. calling the webservice from perl script from Linux...
6081
vinita_ymca
Dec 21, 2007 7:23 pm
Hi, I have one C#.Net WebService deployed on windows server 2003. and i have following rquirements: 1. calling the webservice from perl script from Linux...
6082
kseeker1234
Dec 25, 2007 4:29 pm
Hi, I am trying hibye example (hibye.cgi, hibye.pl) from guide.soaplite.com, but i am getting the following error. Following the error is the client and server...
6083
nanoterabeta
Dec 25, 2007 4:29 pm
my script is following: my $soap = SOAP::Lite -> on_action( sub { join '/', 'http://somewebsite39; } ) -> proxy('http://thatwebsite/bla.asmx39;); it produces the...
6084
Phil B
trump_79
Dec 25, 2007 6:56 pm
On your client change the following uri as follows: -> uri('urn:Demo') ... From: kseeker1234 <kseeker123@...> To: soaplite@yahoogroups.com Sent: Tuesday,...
6085
fifth_note@...
fifth_note
Jan 8, 2008 8:36 am
Hi, I'm getting a permission error when I run a cgi script that calls a simple web service. The same web service executes successfully when called from the...
6086
mcm1303
Jan 8, 2008 11:35 pm
I've written a small stub Soap::Lite server that needs to accept requests from a .NET client. It seems like the server can't understand the incoming soap...
6087
rahed
raherh
Jan 9, 2008 1:41 pm
... On the server side: I use the trailing path in line #28 after a url namespace (OTA/2003/05) as a path to an existing module which has a called method. ... ...
6088
techrg99
Jan 11, 2008 9:51 pm
After my Apache/mod_perl/SOAP::Lite based server is running for a while and working perfectly, I get the following error when making a SOAP call: Error...
6089
techrg99
Jan 14, 2008 3:33 pm
I should have mentioned that we are only having this problem only on AIX and that the Apache 2.2.4 and Perl 5.8.8 we are using are NFS mounted - as well as all...
6090
nrocha18
Jan 14, 2008 9:30 pm
Hi, I've been using SOAP::Lite module to access a .NET webservice from a unix machine. Everything was going smoothly until I changed the localization of the ...
6091
mcm1303
Jan 14, 2008 10:12 pm
I have a server that consists of a dispatcher and a separate module running under IIS. I ran them under IIS and Apache. Apache seems to feed way more...
6092
jywu0812
Jan 14, 2008 10:12 pm
SOAP::Transport::HTTP::Daemon - how can one get client information such as ip address? Thanks....
6093
Victor A. Rodriguez
victor_bitman
Jan 14, 2008 11:05 pm
Hi, ... That's correct !! ... Please, try to ask to the .NET people if now the web service redirects to a new URL that is server through SSL. BTW, if you...
6094
Greg Wittel
gwittel
Jan 25, 2008 7:16 pm
I noticed in SOAP::Lite 0.70_2 you fixed the UTF8 and base64 bug where base64_encode() was handed UTF8 data (CPAN Bug# 30271). We're using SOAP::Lite 0.60_1...
6095
phoose2
Jan 26, 2008 4:10 pm
I'm pretty new to soap and trying to develop an application to rate and eventually ship and print labels for shipments. Here's a current look at some of the...
6096
Eric Bridger
ebridger2004
Jan 27, 2008 7:17 pm
Yes. Support for WSDLs in SOAP Lite is minimal so you will need to use SOAP::Data to format your messages and for parsing the responses. This site has quite a...
6097
Andrei Ivanov
ensen_andy
Jan 30, 2008 2:42 am
Getting array at the client side is no problem with Soap::SOM, but how I can get passed array at the server side? I can not get SOM methods at the server. This...