SOAP::Lite - Perl's Web Services Toolkit
Questions tagged [soaplite]
75 questions
3
votes
1 answer
Perl SOAP::LITE — How to add http request header
I have an application and want to add http header(not soap header) to it, but can not figure it out, anyone out there who can help.

Huang_Hai_Feng
- 287
- 2
- 13
3
votes
1 answer
SOAP response size
I'm attempting to consume a web service that has been creating using Soap::Lite (Perl). I'm consuming the service using C#. For the most part it works fine. I can grab responses and parse them as I see fit. However, I have certain calls that do…

Minsc
- 309
- 4
- 10
3
votes
1 answer
SOAP::Lite - clients using version 1.1 and 1.2 threaded in mod_perl
I have several SOAP::Lite clients running under mod_perl in Apache hhtpd.
Some of them use 1.1 soap-servers and some of them use 1.2 servers. So I have code like:
# In client 1:
my $soap1 = SOAP::Lite->soapversion("1.1");
$result1 =…

NoMann
- 35
- 6
3
votes
8 answers
Perl: Cannot Access Web Service with SSL
This is my first Perl script. I have installed SOAP::Lite using CPAN and it seems to have gone okay.
I'm trying to access a simple HelloWorld .NET web service. I'm getting an error that seems to be related to Perl or SOAP::Lite not being able to…

capdragon
- 14,565
- 24
- 107
- 153
2
votes
1 answer
SOAP::Lite log transport request/response with custom identifier
I would like to log SOAP::Lite transport request/response contents using a custom identifier (e.g. a transaction-id or txn_id in my example below):
#!/usr/bin/perl
use strict;
use warnings;
use Data::Dumper;
use SOAP::Lite +trace => [ transport =>…

h q
- 1,168
- 2
- 10
- 23
2
votes
1 answer
How to change Namespace Prefix explicitly to "xmlns" in Soap:Lite
I'm setting up a Web Service in c# and they are calling it using perl Soap::Lite. I am trying to get the program to remove the namespace prefox, and instead, define the full namespace as an xmlns attribute in the action tag. The request generated…

Kenny Togunloju
- 179
- 1
- 7
2
votes
1 answer
Perl SOAP::Lite Adding CDATA
I am calling a web service using SOAP::Lite module as follows:
my $som = $soap->call('ns:xxx' =>
(
SOAP::Data->name('ns:data' =>
\SOAP::Data->value(
…

kadir_beyazli
- 197
- 2
- 12
2
votes
1 answer
Net::Kashflow - doesn't work with utf8 descriptions
I know this is a very old Perl module (5 or so years ago since the last update). I've found it useful for a project I'm doing though, that needs to be in Perl. Rather than starting from the bottom up, I've found this helpful to do the basics. I've…

Andrew Newby
- 4,941
- 6
- 40
- 81
2
votes
1 answer
How to remove the xsi:nil="true" from Perl SOAP::Lite service call?
Here's the code using SOAP::Lite
my $lookup = SOAP::Lite->service('http://hostname.com/path/SpringVerifierWebServicePort?wsdl')
-> proxy("$theURL") ;
$response = $lookup->verifySpring();
When it executes it produces this request

monsocla
- 61
- 7
2
votes
1 answer
Perl SOAP::LITE service generated stub method within method
I have a SOAP::Lite client using the service method to grab a wsdl. This needs to call a webservice with a single operation and method with no parameters. It's resulting in a nested method call that the provider tells me is wrong. And I'm not…

jdveencamp
- 21
- 1
2
votes
2 answers
Append an element to an already existing SOAP::Data complex type
I'm very new to SOAP, PERL and pretty much everything else I've been asked to do so I'm hoping someone can point me in the right direction.
I've implemented a simple WCF solution and I've written a PERL client which passes a "complex data…

stumped221
- 89
- 4
- 18
2
votes
1 answer
How to print XML provided by SOAP Webservice using Perl
I am completely new to Perl and I need to create a tool that will consume a SOAP Webservice and I need to save the XML provided by this WS in an output file. At this point I can consume the webservice and save it as hash data, but I need it to be in…

Felipe Bueno Barbosa
- 23
- 4
2
votes
0 answers
Connect to Pythons SOAPpy server with Perls SOAP::Lite
I'm completely blocked on this one and I require your assistance.
I developed a SOAP server using Python and Soappy library. It works pretty well if I use another Python application as the client, however ones I try to connect with Perls SOAP::Lite…

Marek
- 1,413
- 2
- 20
- 36
2
votes
2 answers
Perl - SOAP::Lite request not setting xmlns:soap with correct value on Axis2
I've just created a webservice client in Perl using SOAP::Lite.
I manage to invoke a method of my webservice quite easily, but for some unknown reasons, it works sometimes, and sometimes it won't work.
Here's my perl client code :
my $client =…

Jonathan Taws
- 1,168
- 11
- 24
2
votes
1 answer
How to pass SSL options to SOAP::Lite in Perl
When trying to connect to a test SSL SOAP server with an invalid certificate, Perl is printing out this massive chunk of text:
*******************************************************************
Using the default of SSL_verify_mode of…

wfaulk
- 1,765
- 1
- 17
- 24