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...
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...
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...
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...
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...
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...
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, ...
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...
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...
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...
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...
my script is following: my $soap = SOAP::Lite -> on_action( sub { join '/', 'http://somewebsite' } ) -> proxy('http://thatwebsite/bla.asmx'); it produces the...
On your client change the following uri as follows: -> uri('urn:Demo') ... From: kseeker1234 <kseeker123@...> To: soaplite@yahoogroups.com Sent: Tuesday,...
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...
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...
... 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. ... ...
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...
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...
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 ...
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...
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...
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...
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...
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...
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...
Hi all! I've a system where i can call several methods in the same request. For instancem the body will look something like this: <SOAP:Body> <ping> ...
Hello, i have the following problem: I built the stubcode of the Amazon web services via "stubmaker.pl http://soap.amazon.com/schemas2/AmazonWebServices.wsdl"....