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...
Hi, ... AFAIK, this is not an goal of SOAP::Lite. You could, of course, generate a SOAP-Request object and then query the namespace used, but in my opininion...
One of our other developers sent me a correct request to the service I am attempting to use. Here is his: <?xml version="1.0" encoding="utf-8"?><soap:Envelope...
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...
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...
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...
Yes, that was one of the suspicions I've had, but I have the XS version of XML::Parser installed (as confirmed by the snippet below which prints out 2.36). ...
6541
Joseph Werner
telcodev@...
Nov 25, 2010 8:53 pm
Try this: Trap your outbound XML message. Build a SOAP::Data structure that will produce such an XML. Use the call utility function to call the service using...
Hello. I don't think it is a timeout issue, since it consumes 100% of CPU during the entire wait time (fortunately I have 2 cores - 4 if you consider HT :-)). ...
If it is taking minutes then it sounds like you are encountering some kind of timeout. Does the WSDL have some kind of external DTD that it is trying to fetch...
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, ... It is allways good to have a working example :-) ... Please note: according to the working SoapUI example, the webservice "method" you are calling is...
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...
Hi, see the documentation to the on_action method. you might use something like: $proxy->on_action(sub{"http://example.com/soap/my_api.wsdl#$method"}); where...
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, ... I'd suppose it is the namespace. Check if your xsd contains an attribute elementFormDefault="qualified" if this is the case, you have to use a...
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 ...