Hello, I have written a soap server in perl & client in PHP but when calling method I get follwoing error ... PHP Fatal error: Uncaught SoapFault exception:...
Hi all My perl soap client sends a Soap reques to the Server. Basically this works and the server finds the operation getCustomerAccessState. when it ...
I have a soap server running using the standard examples found on the web ... like the hibye example shown here ... Client ====== #!perl -w use SOAP::Lite; ...
Dear All, I am using Perl SOAP server with code ===========Code============= use SOAP::Transport::HTTP; use Data::Serializer; use SOAP::Lite +trace => 'debug39;;...
Hello, I am writing a web service to return contents of a file At server side I can open a file & read contents but when client calls same method, I get...
Hi All, I am new to SOAP. I have set up 2 machines, 1 client(Ubuntu), 1 server(centos). and a wsld: <?xml version="1.0" encoding="UTF-8"?> <definitions...
I am a beginner to using SOAP::Lite with perl Below is a code snippet I am using. I managed to induce a fault by providing an incorrect proxy. use SOAP::Lite; ...
Hello, I use soap lite and I wonder how can I simply print the soap body of a response or request for debugging purposes. Is it somehow possible ? Thanks, Jan...
My search did not turn up any existing threads on this subject. I'm trying to use the SOAP::Transport::HTTP::Daemon class to establish a standalone server. My...
SOAP Hello people, Â I need urgent help on topics below 2: Â 1 ) how to retrieve the SOAP request in XML format ? 2 ) Is there a way to make the more...
Hi, I'm trying to access a web service using SOAP::Lite and Axis2. There is no problem with the access but returned data seems incomplete. An array with number...
Hi, I am new to SOAP::Lite and I seem to have a weird behaviour which I can't find my way around. Any pointers would be highly appreciated. I am trying to...
SOAP::Lite39;s first output is the XML declaration. Is there a way to tell SOAP::Lite not to output the XML declaration and start with the SOAP envelope? I'm...
I there a way to tell SOAP::Lite not to send the XML declaration? I'm access a web service that throws an http 500 error when it see: <?xml version="1.0"...
To all SOAP::Lite users, Hope you guys can help me with my situation below. We plan to generate a SOAP client using SOAP::Lite. In the "soap address location...
Hello, I am still trying to find debug my earlier issues and I ran into another problem. This is in SOAP::Lite version 0.712 Here is the warning/error: Use of...
Hello, Is there a way to tell SOAP::Lite server daemon *not* to parse the SOAP body, but just return the body in a variable? SOAP::Lite does not need to...
Hello, I am having an issue with SOAP::Lite - I have a SOAP:Lite HTTP daemon which is to catch an XML document from a hospital system but when receiving the...
I'm able to send SOAP messages to a .NET WCF service via SOAP Lite successfully, unless the message meets these 2 criteria: - contains a less-than bracket < -...
Trying to use SOAP::Lite with .NET based webservice as described here: http://msdn.microsoft.com/en-us/library/ms995764.aspx, getting an error. "Element...
I'm having a bit of trouble where I'm continually having to check if the result is an array or not to deal with it. Is there some way to always get an array,...
Hi All, I have some code that was working perfectly with SOAP::Lite 0.708, but fails with everything starting from 0.708. The problem happens when an array is...
Hi all, I have a problem and can't spot how to solve it. I have Googled and searched the archive here but can't find anything, so my apologies if this has...
Hello, I have written some (perhaps too clever) code that attempts to enforce a strict API when calling a web service. Users must pass in blessed hashrefs and...
Very simple question. Where SOAPAUTH is a Header object, this works: my $som = $soap->call( SOAP::Data->name( $method )->attr( $SAMAPI ) => $SOAPAUTH ); ...
I haven't tried any code on the newest Perl release-candidate, but someone who did sent me the following via Twitter: defined(%hash) is deprecated at ...