Hello, I am trying the connection with a specific Web service, but unfortunately it is not working...and I would like to ask someone if you could help me. The...
Hello, In your example, $ret is really a soap response object (SOM) unless something happened to cause an exception (die or croak) to occur. You can read the...
Hello, Maybe I'm missing something more here but when I want to make sure SOAP::Lite doesn't do its automatic typing of an data element I just use the 'type'...
Thanks peter. I tried that and it works but I was somehow hesitant in using the raw xml. I figured out a way to suppress the type info. I created a custom...
Hello, Is there an easy way to suppress the type info in a request? For eg: my $method = SOAP::Data->name('TestMethod39;) ->attr({xmlns => 'http://abc.com/39;}); ...
Hello list, I was googling on SOAP::Lite and WS-Security / userToken, but haven't found an appropriate solution. There is a package WSRF::Lite, but this does...
hi SOAP::Lite experts I met a problem in retrieve SOAP call result. when i can a remote method use SOAP::Lite;# + trace => qw(method debug); my $PROXY =...
Hi, thanks to everyone who responded. ... rahed, the problem turned out to be that all the relevant tracing calls are made inside SOAP::Transport::HTTP::Client...
Hello Petar, After seeing your example, I just realized that you are trying to debug a server. Sorry my last post won't be much help since it seems that...
... Apparently you access your local server. I haven't tried this. When you call a remote host you must get what you want, xml request & response. I guess the...
Hello Petar, You can you be more specific by adding transport layer debugging: use SOAP::Lite +trace => [ transport => sub { print "calls to transport for...
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...
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...
... Try this, it should generate exactly the same structure. $SOAP::Constants::PREFIX_ENC = 'SOAP-ENC39;; @data = ( ['modified_by_name39;,'admin'], ); ...
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...
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...
Hello everyone, I've encountered the following problem while implementing Web Service server side using Soap::Lite (Perl). I receive the following error...
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...
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...
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...
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...