SOAP::Lite - Perl's Web Services Toolkit
Questions tagged [soaplite]
75 questions
2
votes
2 answers
Arrays of hashes sent to SOAP::Data
I'm sending a fairly simple Perl hash to SOAP::Data, but I'm not getting the XML that I want with an array of hashes. Here's what I'm sending it:
'hash' => {
'Location' => [
{
'key1' => 'value1',
'key2' =>…

Bruce Thornton
- 21
- 1
- 3
1
vote
1 answer
SOAP::Lite Unresolved prefix 'xxxx' for element 'yyyy'
everybody!
I have troubles parsing response of SOAP request with SOAP:Lite library in perl.
Here is XML request I'm sending with SOAP:
SOAP::Transport::HTTP::Client::send_receive:…

Andrew Skripnikov
- 41
- 3
1
vote
1 answer
how to configure soap lite client to consuming a WCF service with wshttpbinding?
I have a soap lite client consuming a wcf service. I tested everything on basichttpbinding and it works fine. When I switch the binding to wshttpbinding:

gavin
- 1,276
- 1
- 11
- 17
1
vote
2 answers
Perl client to JAX-WS java server issue
I have a JAX-WS java server which publishes a web-service
@WebService(endpointInterface="calculator.operation.Calculator")
public class CalculatorWs implements Calculator{
public String[] add(String a) {
System.out.println(a);
String[]…

user811165
- 63
- 1
- 2
- 8
1
vote
1 answer
500 SSL Negotiation failed in perl version 5.6
In Live server we have perl version 5.6.1,recently we have enabled TLS 1.2 which resulted in a error "500 SSL Negotiation failed". Earlier we have TLS 1.0 we don't have any issues. Enabling TLS 1.2 is unavoidable which is mandatory. How to resolve…

Maria
- 297
- 1
- 5
- 18
1
vote
1 answer
Soap perl and ssl certificate changed
I have a perl code that sends SOAP request through SOAP::Lite like this:
eval
{
$sresp = SOAP::Lite
->uri('http://machine/key')
->proxy('https://usr:pwd@website.com/addr/addr/remotescript.pl')
->remotescript_pl_function(@parms,…

MiroJanosik
- 675
- 5
- 30
1
vote
2 answers
Perl, append an element to an existing SOAP::Data element
I'm struggling with Perl (v5.24.1) SOAP::Lite. i'm trying to add an element to
an existing Data element.
Assume i have the following construct:
use SOAP::Lite + qw/ trace /;
my $soap = SOAP::Lite->new( proxy =>…

Matt K
- 11
- 1
1
vote
1 answer
Sending Very Specific SOAP::Lite requests
My company uses has a lot of internal APIs that use very specific header and formatting requirements. I am new to SOAP::Lite and I'm trying to make it work within the company's framework.
Try #1:
Ideally, I would like to be able to just take the…

ShinobiDev
- 103
- 2
- 2
- 6
1
vote
1 answer
Define namespaces in the "method" element using SOAP::Lite
I am using SOAP::Lite to connect to an outside service. After much trial and error and communication with the other company, I have discovered the problem.
My code looks like this:
$soap = new SOAP::Lite
->service($wsdl_link)
…

Emi R.
- 11
- 1
- 4
1
vote
1 answer
Do not recognize element`s type in SOAP::Lite
I try to call WebApi (ASP.Net) from SOAP::Lite lib (perl) by passing WSDL URL via method 'service':
use SOAP::Lite;
SOAP::Lite->new->service( 'http://....wsdl' )->_call( 'method', @params );
I have recieved answer, but all…
d0as8
- 37
- 1
- 8
1
vote
2 answers
SOAP::Lite connection to SSL Server
I am completely new to Perl. I have written a web service in C# running on a Windows box and am calling it from a Perl script on a Linux box using SOAP::Lite. My code works fine using the http:// handler. I'm now trying to get it to work with…

Nevo
- 752
- 2
- 9
- 22
1
vote
0 answers
500 SSL negotiation failed with perl
I am trying to connect to webservice server with perl script from the client machine SunOS 5.10 without success.
I'm using ActivePerl 5.8.8, with some other installed librairies.
I have also installed libssl0_9_8 with cacertificates…

jérémy555
- 23
- 2
- 6
1
vote
0 answers
Perl SOAP::Lite server
I've created the following SOAP::Lite server in Perl:
use SOAP::Transport::HTTP;
SOAP::Transport::HTTP::CGI
-> dispatch_to('Test')
-> handle;
package Test;
sub Calculate {
...
}
I then created a perl client to test the webservice and all went…

Pedro Almeida
- 658
- 1
- 7
- 10
1
vote
0 answers
SOAP::Lite with WCF integration error
I'm having very simple c# application which running WCF service as follows:
[ServiceContract]
public interface IMessageRepository
{
event EventHandler OnNewMessage;
[OperationContract]
void RegisterClient();
…

kaycee
- 1,199
- 4
- 24
- 42
1
vote
1 answer
Perl SOAP::Lite unable to call method
I am working on a script to get data from OBIEE Web services. The following shows the correct soap envelope created however i do not get any results.
#!/usr/bin/perl
use warnings;
use strict;
use diagnostics;
use XML::Simple;
use Data::Dumper;
use…

user3050672
- 11
- 1
- 1
- 3