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...
6537
Jo Rhett
jorhett
Nov 15, 2010 11:55 pm
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...
6538
x_at_y_or_z
Nov 24, 2010 5:33 pm
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...
6539
Dan Speers
tnjeditor
Nov 24, 2010 5:59 pm
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...
6540
Attila-Mihaly Balazs
x_at_y_or_z
Nov 25, 2010 4:49 pm
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 :-)). ...
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...
6542
Attila-Mihaly Balazs
x_at_y_or_z
Nov 29, 2010 4:41 pm
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). ...
6543
pgfarr
Dec 2, 2010 7:15 pm
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...
6544
as.aellen
Dec 3, 2010 10:01 am
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...
6545
cresswell.alex
Dec 6, 2010 10:40 pm
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...
6546
rahed
raherh
Dec 7, 2010 8:13 am
... What should the response look like? It's not clear from the wrong one. -- Radek...
6547
rahed
raherh
Dec 7, 2010 8:16 am
... Sorry, the request, not the response. -- Radek...
6548
Alex Cresswell
cresswell.alex
Dec 7, 2010 6:54 pm
In the request it sends "<Type xsi:nil="true" xsi:type="tns:EventGroupType" />" I would expect to see "<Type xsi:nil="true"...
6549
cresswell.alex
Dec 7, 2010 9:32 pm
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...
6550
rahed
raherh
Dec 8, 2010 2:02 pm
... Hello, the code below generates this xml: <?xml version="1.0" encoding="UTF-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
6551
Martin Busik
mbusik70
Dec 9, 2010 5:50 pm
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...
6552
shanky1171
Dec 10, 2010 6:31 pm
Hi, I have to generate requests to an Internal Server that does not ahve a signed certificate. I keep getting the error ...
6553
shanebouslough
Dec 13, 2010 8:10 pm
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...
6554
as.aellen
Dec 20, 2010 5:35 pm
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...
6555
Martin Busik
mbusik70
Jan 4, 2011 2:10 pm
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...
6556
Scott
scott.hall1128
Jan 13, 2011 7:05 am
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:...
6557
warren@...
warren_m_smith
Jan 13, 2011 7:05 am
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...
6558
Martin Busik
mbusik70
Jan 13, 2011 11:30 am
Hi, ... The header "SOAPAction" is the Problem, you should write something like: $soap = SOAP::Lite->... $soap->on_action( sub{...
6559
gtbaddy
Jan 13, 2011 10:08 pm
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...
6560
Martin Busik
mbusik70
Jan 14, 2011 2:40 pm
Hi, ... In this case, SOAP::Lite tries to construct the request itself. use $soap->call('checkLogin',$SOAP::Data,@headers) instead eventually you have to...
6561
Martin Busik
mbusik70
Jan 14, 2011 3:56 pm
Hi, ... with proxy($url) you set the endpoint url, i.e. the url you will find in the wsdl under: <wsdlsoap:address location="$url" (typically, near the end of...
6562
gtbaddy
Jan 14, 2011 6:57 pm
Hi, thanks to the help Martin gave me in my previous post I am getting much closer to having things working. I am successfully sending calls to the service...
6563
Blaine Everingham
blaine.w.everingham@...
Jan 15, 2011 12:47 am
Hi, I'm trying to use SOAP::Lite to contact a web service. However, I can not get the parameters under the request element. Below is my sample code: my $wsdl =...
6564
peterafriend
Jan 20, 2011 6:02 am
Within the Crypt-SSLeay code there is a retry mechanism that gets triggered if there is a connection failure before the SSL handshake completes. By default,...
6565
Scott
scott.hall1128
Jan 27, 2011 5:11 am
While testing our asp.net web app service we noticed that the client aborts if the service id down. For example if port 80 is unavailable the client aborts...