Questions tagged [soaplite]

SOAP::Lite - Perl's Web Services Toolkit

75 questions
1
vote
1 answer

Use SOAP::Lite based on https, certificate verify failed

I constructed a apache mod_perl web service based on SSL.Of course, From my browser, I can access the web service using https (Of cource,I add my self-signed CA cert to brower's trust list) access the web service,but when using SOAP::Lite , I…
wuchang
  • 3,003
  • 8
  • 42
  • 66
1
vote
1 answer

How to use SOAP::Lite' https protocol to implement a web service client based on certificate?

Already , I have a remote web service service ,and I have to implement a perl client using https protocol ,based on certificate Authentication,any suggestion?Does SOAP::Lite have such support?
wuchang
  • 3,003
  • 8
  • 42
  • 66
1
vote
0 answers

Zend_Soap_Server Procedure 'sendsth' not present

we have a Zend_Soap_Server and a corresponding client, based on the same WSDL and the method "sendsth" is handled correctly if called from the PHP client. Now I need to call it from perl so I create a client with SOAP::Lite, again using the same…
Jens
  • 29
  • 5
1
vote
1 answer

SOAP::LITE client in Catalyst makes ALL my Catalyst app to wait during access or timeout

In my Catalyst app I have a very important connection to a remote server using SOAP with WSDL. Everything works fine, but when the remote server goes down due to any reason, ALL my app waits until the timeout expires. EVERYTHING. ALL the controllers…
Nacho B
  • 1,573
  • 1
  • 12
  • 16
1
vote
1 answer

Error 411 Length Required without a POST

Below is the code that I am using in a .PL file, I feel like the ENV that I create may be the issue here, but if I take that out I get a certificate error. I was wondering is there any fix around the 411 Length required error. I have found people…
moutonc
  • 239
  • 2
  • 11
0
votes
1 answer

Printing hash value from a MD5 SOAP::Lite service

I am trying to print the result of a text input that is run through a SOAP::Lite MD5 service that I have created. This is just the preliminary code that I am testing so I can integrated it into a larger application. I am required to create my own…
Jared
  • 2,904
  • 6
  • 33
  • 37
0
votes
1 answer

Client of web service in Perl

I am the client - I wish to call methods of a web service. I have a web service address (.svc suffix) and I have the method's name, return value and their argument. The service is implemented with WCF (HTML end point). I wish to call those methods…
user687459
  • 143
  • 5
  • 17
0
votes
1 answer

Calling a simple Soap API using Perl's Soap::Lite

I am trying to make simple API call (at least that's what I thought initially when I started ) using SOAP::Lite module. I am using one of the publicly available SOAP API here to add two numbers. I am getting following error: Server did not…
rjx5
  • 3
  • 4
0
votes
1 answer

How to fix the WSDL file not well-formed (invalid token) issue

I have created WSDL file connect the file with PERL soap method. After the exection i get the below error message "not well-formed (invalid token) at line 1, column 1, byte 1 at /usr/lib/x86_64-linux-gnu/perl5/5.26/XML/Parser.pm line 187." . Please…
Kanewilliam
  • 199
  • 2
  • 18
0
votes
2 answers

Using SOAP::Lite client to handle server that sends responses missing namespace specification

I'm writing a SOAP::Lite client to work with a SOAP server that sometimes sends responses that are missing a namespace specification. This is the first time I've ever done anything with SOAP, so I'm not very knowledgeable at all. Here is an example…
froage
  • 1
  • 1
0
votes
1 answer

Basic SOAP::Lite usage

I'm having trouble using the most basic example of SOAP::Lite. Initially, I was getting an error about version mismatch, so I added the soapversion('1.2') as per this question. #!/usr/bin/perl -w use strict; use SOAP::Lite; use Data::Dumper; my…
TheAmigo
  • 1,032
  • 1
  • 10
  • 29
0
votes
3 answers

SOAP::Lite, parameter-addressing

I am using SOAP::Lite to use a WSDL-defined webservice. My request (that is working fine) is like that. max frank ....…
chris01
  • 10,921
  • 9
  • 54
  • 93
0
votes
1 answer

Soap::Lite Perl Basic Query

We have been given the below xml and need to translate into Perl. POST /carrierintegrationapi.asmx HTTP/1.1 Host: carrierintegrationapi.3tlogistics.net Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction:…
cccict
  • 1
0
votes
1 answer

EWS SOAP Requests failing

I am using PERL and SOAP::Lite to make soap calls to MS Exchange Web Services. I have already figured out authenticating and am using an Oauth token to make the calls. I am trying to call GetInboxRules which is documented here. Basically the call…
bvallerand
  • 49
  • 1
  • 10
0
votes
1 answer

Perl + SOAP::Lite

This is the SOAP document I'm trying to model using SOAP::Lite.
Sean Nilan
  • 1,745
  • 1
  • 14
  • 21