Questions tagged [soaplite]

SOAP::Lite - Perl's Web Services Toolkit

75 questions
8
votes
4 answers

Perl/Soap lite : "Server was unable to process request. Object reference not set to an instance of an object"

I'm trying to consume a Webservice already existing and that works perfectly. After having read many tutorials and examples, I finally managed to get an answer from the server: Server was unable to process request. Object reference not set to an…
Will1v
  • 143
  • 2
  • 11
6
votes
2 answers

Perl SOAP::Lite and Service Description to Request Object

I'm using Perl's SOAP::Lite to access a remote web service defined by a WSDL. That means I have: use strict; use Data::Dumper; use SOAP::Lite +trace => 'debug'; my $service = SOAP::Lite->service('http://path/wsdl'); Ok so far. Problem is that I…
jtv4k
  • 224
  • 2
  • 7
6
votes
2 answers

Is there a way to have two versions of a same Perl library in parallel?

I would like to migrate a perl library (SOAP::Lite) used by my application. To to the migration as smoothly as possible for the end-users, I would like to have the two versions of this library (the old one and the new one) to work in parallel. The…
dounyy
  • 666
  • 12
  • 24
5
votes
3 answers

Problems creating an issue in JIRA with Custom Fields with Soap Lite and perl

I'm banging my head against the soap api with the following code. My goal is to create a ticket with custom fields. If you comment out the custom field part this code works fine. Any idea of what's going on? Code my $soap =…
reconbot
  • 5,138
  • 6
  • 45
  • 63
5
votes
1 answer

SOAP::Lite Perl Module Sends Wrong SOAP Envelope Namespace

I am having problems writing a SOAP/XML client to talk to an API provided by a company called Domainbox. I am writing the client in Perl using the SOAP::Lite Module/Library. I am getting the following error message: Possible SOAP version mismatch:…
Ed Gray
  • 61
  • 4
5
votes
1 answer

Perl soap::lite and complex data

I am using perl soap::lite to build a web services client. The implementation works fine for simple methods, which will e.g. require a single scalar argument. EG, the following works fine. #!/usr/bin/perl use warnings; use SOAP::Lite …
PPX
  • 61
  • 4
4
votes
4 answers

Perl and Complex SOAP Request

I need to make a somewhat complex soap query using Perl, preferably using SOAP::Lite. I know the service is active and have been successful in getting errors back from the other end. Here is the soap query I need to make:
etmooneyha21
  • 41
  • 1
  • 2
4
votes
0 answers

Convert PHP SoapClient to Perl SOAP::Lite

I am writing a web application that works with the five9 API. I have a working php script that uses the API to print out the email of the first User. My application is in Perl and I am trying to avoid shelling out to a PHP script. I have tried to…
killianjackson
  • 115
  • 1
  • 6
4
votes
2 answers

Consuming .Net Web Service using Perl and SOAP Lite

I'm trying to consume a .Net Web Service using perl and SOAP Lite. When I consume the web service in a .Net client - it posts to the .asmx endpoint the following:
brendan
  • 29,308
  • 20
  • 68
  • 109
4
votes
1 answer

Does SOAP::Lite can be used for creating document/literal web services?

Does SOAP::Lite can be used for creating document/literal web services ? While it does support writing clients for an existing document/literal web services I cannot find how to created a document/literal server. Is there any other module that…
Roeya
  • 111
  • 7
4
votes
1 answer

SOAP Action issue when calling WCF Service in Perl (SOAP Lite)

Using Perl (SOAP Lite), I am trying to call a wcf web service where the SOAPAction name (ProcessMessage) is different to the Envelope/Body/Request element name (Request) within the soap envelope body. How can a specify a different SOAPAction and…
Paul Barry
  • 41
  • 1
  • 3
4
votes
1 answer

How do I use SOAP::Lite with WCF?

I'm just trying to get started with WCF. It sounds like it is supposed to be super simple, but using a simple API like SOAP::Lite, I am having trouble getting anything to work. There are a lot of out dated examples in the googlesphere, and I have…
Lucas
  • 14,227
  • 9
  • 74
  • 124
4
votes
1 answer

How do I mangle namespace generation in SOAP::Lite?

Scenario: The client is a Perl script using SOAP::Lite. The server is a Java based application using Spring and CXF. My client is producing based on the WSDL the following SOAP request:
Philipp
  • 383
  • 5
  • 20
3
votes
1 answer

How do I upload a file from the local machine to Sharepoint using Perl SOAP::Lite?

#use SOAP::Lite ( +trace => all, maptype => {} ); use SOAP::Lite maptype => {}; use LWP::UserAgent; use HTTP::Request::Common; #credentials' file require "c:\\test\\pass.pl"; my $userAgent = LWP::UserAgent->new(keep_alive => 1); sub…
Preet
  • 81
  • 1
  • 8
3
votes
1 answer

How can I change what order the xml elements of a SOAP::Lite request are generated with in perl?

I'm trying to make a request to a SOAP::Lite server and the vendor wants me to send a request where MessageSource comes before MessageContent, but when I pass my hash to SOAP::Lite it always makes it the other way around. I've tried using…
semi
  • 612
  • 5
  • 14
1
2 3 4 5