Hi, I have been banging my head against the wall for a few days attempting to get SOAP requests working with this WSDL. I am trying to send a request to a...
I'm having troubles getting my client to send values to function. I need a perl client to send this structure: POST /VSMapi/VSMapi.asmx HTTP/1.1 Host:...
This is probably an odd request, but I have been asked to update Email::Folder::Exchange to support Exchange 2007. Exchange 2007 no longer does WebDAV by...
Hi Andres, well, SOAP is an acronym for "is not simple, is not object, is not application, is not protocol" :-) ... In the early days of webservices, the xml...
Hi all I'm writing a soap::lite client. When this client calls the operation from a WebService the first time, it is successfull. The call works and also the...
I'm developing a SOAP::Lite client that talks to a .Net WCF service. There was a bug in one of the service methods that generated a 500 Internal Server Error...
I need to retrieve the targetNamespace value from a service's wsdl. Is there any way to do this via SOAP::Lite? I can see the value sitting in the schema...
Hi all My soap::lie script calls a webservice on a server. Unfortunately the server finds only some attributes/elements from the request, but not all. Perlcode...
When I try to call a method with an enumeration as one of the parameters, nothing is sent. How do explicitly define the type? I assumed that since the WSTL...
Hello everybody. I've tried to use SOAP::Lite to access the API of SevOne (a monitoring solution), however it seems to have very poor performance. For example...
I'm seeing a problem where a certain type of error produces a die() inside the Transport module. That should be fine -- I have the entire soap-lite call...
Hai i am developing an application with some thing like this in mind. SERVER ... CLIENT CLIENT CLIENT a server is connected to three client machines. when...
Does anybody on the board do hourly or project based consulting work. Need help updating several web service calls to the vendors latest version. Thanks Rob...
Hi all My Perl WebClient calls over soap::lite a webservice on a server and gets following error from the server: Problem #' 08.11.2010 15:20:59.549 [INFO ]...
When I try to run this I get a 500 error. Can anyone shed some light on what might be causing this. I have tryed comparing my output to the anticipated xml...
Hi Andres, ... $webService->call("doc:getCustomerAccessState",SOAP::Data->name("doc:request ") ... I see there two problems: 1. you need either to add: ...
Hi all, I have a nice running Soap-Server, which can be started in HTTP or HTTPS mode. When I start this in HTTPS mode, and I telnet on the listening Port, the...
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...