Hello, I am a total newbie using SOAP and I am occasionally using it for some of the services of our partners. Up until now I only had to use it twice with...
6278
tyndallian
Jan 27, 2009 3:31 pm
I'm trying to use Test::Mock::Object to test my SOAP::Lite app... but I'm having problems. Has anyone successfully used Test::Mock::Object with SOAP::Lite?...
6279
Jeff Gao
zfgao
Jan 27, 2009 6:04 pm
Hi, I am trying to install SOAP::Lite on Redhat Linux 4ES. My perl version is 5.8.5. I tried "perl Makefile.PL, make" and "perl -MCPAN -e 'install SOAP::Lite39;,...
6280
Jeff Gao
zfgao
Jan 28, 2009 10:54 pm
Hi, I am using SOAP-Lite to access my Web service, get error message of: env:Server, Cannot find child element: arg0. My Perl script is looks like: my $rpc =...
6281
tvoj_patak
Jan 29, 2009 3:11 pm
Hi All, Looks like SOAP::Lite on RHEL5 doesn't like dashes in comments. This manifests itself as 'junk before XML element'. Unfortunately latest JAX-WS puts...
6282
rahed
raherh
Jan 29, 2009 7:52 pm
... Is version.pm installed? It's not located in @INC. -- Radek...
6283
ncbjd@...
ncbjd...
Feb 3, 2009 7:25 pm
At this point, I am looking for someone to hire to help solve what may be a simple problem of serializing a slightly complex parameter sent with a SOAP method...
6284
dennis.davidoff
Feb 5, 2009 2:55 pm
Hello, all! I have two questions about XMLRPC::Lite. -- 1. Can I use gzip for XMLRPC::Transport::HTTP::Daemon? Server: #!/usr/bin/perl -I...
6285
Paul Gallagher
paulpg_sg
Feb 9, 2009 7:39 pm
just saw your message ncbjd; here's something that may help. I can't test it of course, but I think it is generating the structure you'd indicated is ...
6286
Bill.Costa@...
bill.costa_01
Feb 12, 2009 3:02 pm
Folks, In a Tech Republic article: http://articles.techrepublic.com.com/5100-10878_11-1052448.html the author describes the 'free' fault detection you get with...
6287
discorogers
Feb 15, 2009 5:01 pm
Hi all, Would really appreciate your help. I'm relatively new to Perl and SOAP, and I'm trying to implement a connection to the Google Adwords API using...
6288
aka gw1500se
i_was_yah00ed
Feb 17, 2009 3:31 pm
This is my first attempt writing a simple SOAP::Lite client. I followed the documentation best I could, considering where I am on the learning curve, but am...
6289
killyourspam
Feb 17, 2009 10:01 pm
Trying to find a way to get a hold of the client's IP as they come to the soap daemon server.. Date: Tue, 17 Feb 2009 21:23:59 GMT Server:...
6290
alexukua
Feb 18, 2009 3:30 pm
Example how to working with Ukraine text utf8 my $utf8='Електронна бібліотека'; my $utf8 = pack 'U*', unpack 'U0U*', $utf8; my...
6291
rahed
raherh
Feb 19, 2009 12:14 pm
... You can get the address from peerhost method applied on a connected socket. The method is from IO::Socket::INET. -- Radek...
6292
rahed
raherh
Feb 20, 2009 9:38 am
On Thu, Feb 19, 2009 at 2:56 PM, dennis.davidoff ... I use ForkOnAccept module which is part of the distribution: $daemon->ForkOnAccept::handle; ... package...
6293
sergey.romanovsky
sergey.roman...
Mar 4, 2009 2:25 pm
Hello, I've got a problem with running SOAP::Lite service under mod_perl. In module SOAP::Transport::HTTP::Apache function handler there's Expect header...
6294
bostromanders
Mar 6, 2009 2:53 pm
Hallo I'm trying to use a server that is said to use "integrated security". Anyone that knows what that refers to? And is that something that SOAP-Lite can...
6295
tomsw
Mar 10, 2009 10:07 pm
Hi, I have a web service that needs to respond to soap requests from two name spaces. (The current namespace and a legacy one.) I'm swapping out the uri in...
6296
Vlad
vlad@...
Mar 12, 2009 2:18 pm
Hello everyone, I've encountered the following problem while implementing Web Service server side using Soap::Lite (Perl). I receive the following error...
6298
jing han
jing_han_66
Mar 13, 2009 7:33 pm
unsubscribe...
6299
malcolmpdx
Mar 17, 2009 9:05 pm
I'm certain that buried somewhere in the archives there is the answer to my question, but so far, I've been unable to find it, at least in the form that I can...
6300
Peter Farr
pgfarr
Mar 19, 2009 12:19 am
I am pretty new to this so I am probably doing something stupid, but I can't figure it out. I have the following code attempting to access a commercial product...
6301
rahed
raherh
Mar 19, 2009 1:44 pm
... Try this, it should generate exactly the same structure. $SOAP::Constants::PREFIX_ENC = 'SOAP-ENC39;; @data = ( ['modified_by_name39;,'admin'], ); ...
6302
Petar Shangov
pshangov
Mar 23, 2009 6:30 pm
Hi, I have a SOAP::Lite based server and an need to enable soma advanced debugging. In particular, I need to print out the full requests and responses for each...
6303
rahed
raherh
Mar 23, 2009 9:12 pm
... I simply use use SOAP::Lite +trace=>39;all'; It's documented in SOAP::Trace. -- Radek...
6304
Petar Shangov
pshangov
Mar 24, 2009 4:19 pm
Hi, I have tried enabling all traces but that is no what I need. +trace->39;all' gives me this: SOAP::Transport::new: () SOAP::Serializer::new: () ...
6305
Petar Shangov
pshangov
Mar 24, 2009 8:14 pm
Hi, Using WinXP, Strawbery Perl 5.10, latest SOAP::Lite from cpan. I am running the daemon script from the command line. Like I said, I tried printing to a...
6306
Petar Shangov
pshangov
Mar 24, 2009 11:18 pm
Hi, I have attached a sample test script that produces no output on my machine. Regards, Petar...
6307
Lee Carmichael
lecar_red
Mar 25, 2009 1:14 am
Hello Petar, You can you be more specific by adding transport layer debugging: use SOAP::Lite +trace => [ transport => sub { print "calls to transport for...