I've been asked to "PKI Enable" one of my SOAP client tools and looking for pointers on where to start with this. Normally I call a "login" method with a...
6574
Joseph Werner
telcodev@...
Mar 16, 2011 4:14 pm
Gee, I'm not certain this is not just a Perl problem... Have you considered trying a list reference instead of a scalar? Just what do you think the line "my...
6573
krishnapriya
krishh_july
Mar 16, 2011 4:13 pm
My web method in .NET web service has a parameter attr[] attributes. how to pass this parameter in perl scripts? its xml format is: attributes> <attr> ...
6572
Jo Rhett
jorhett
Feb 25, 2011 12:26 am
The message below is basically "I tried this and it didn't work" You're going to have to include what you send them and what they send back for us to help ;-)...
6571
josephykwang
Feb 19, 2011 1:58 am
One of the methods requires that we pass it an array of int. I tried a) my @list = (); push( @list, 367288 ); push( @list, 328375 ); my @results =...
6570
Martin Busik
mbusik70
Feb 12, 2011 8:25 pm
Hi, ... the prefixes (e.g. "soap" is refered to as prefix when defined by "xmlns:soap", wich means you write "soap:Envelope") do not really care, you can name...
6569
Joseph Werner
telcodev@...
Feb 3, 2011 6:26 am
This should get you started: my $value = 'some notes'; my $name = 'Notes39;; my $fieldset = 'General Information39;; my $soapdata = SOAP::Data->name( 'metadata39; =>...
6568
stephenc01_01
Feb 3, 2011 5:23 am
I am talking to a soap API. This is the desired output $xml = ' <metadata xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="ns4:kt_metadata_fieldset[1]"...
6567
Daniel Kasak
daniel.kasak
Feb 2, 2011 8:15 am
Greetings. We are trying to work around an issue with SOAP::Lite adding stuff to a request that an upstream SOAP library doesn't like. But now we've hit ...
6566
Martin Busik
mbusik70
Jan 27, 2011 8:50 am
Hi Scott, using eval { ... } if($@) { ... } is a common try/catch pattern. I do not see anything suspect/wrong with that. cheers, Martin...
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...
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,...
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 =...
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...
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...
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...
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...
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{...
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...
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:...
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...
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...
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...
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 ...
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...
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" ...
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...
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"...
6547
rahed
raherh
Dec 7, 2010 8:16 am
... Sorry, the request, not the response. -- Radek...
6546
rahed
raherh
Dec 7, 2010 8:13 am
... What should the response look like? It's not clear from the wrong one. -- Radek...