Questions tagged [soaplite]

SOAP::Lite - Perl's Web Services Toolkit

75 questions
0
votes
1 answer

SOAP::Lite pass an argument as the class

I have next schema:
Darg
  • 1
0
votes
1 answer

Remote function call using SOAP::Lite

I'm trying to write a client application in Perl using SOAP::Lite. I am trying to call a specific function, but I cannot seem to get the parameters right. I keep getting a response back saying "Found more elements in the soap envelope than required…
Sean Nilan
  • 1,745
  • 1
  • 14
  • 21
0
votes
1 answer

How to loop through subarrays of a SOAP::Lite response in Perl?

I have a Perl script that is successfully getting a response from my ShoreTel Phone server. The server provides information on what calls are currently connected for the extension entered. However I am having issues looping through the sub arrays…
June Lewis
  • 355
  • 1
  • 6
  • 28
0
votes
1 answer

Perl SOAP::Lite service - Authentification with NTLM and Navision 2009 SP1

I'm trying to connect to a webservice exposed by Navision 2009 SP1, which needs NTLM authentification. The authentification works for the service() call - meaning I get the stubs returned! However, as soon as I try to call a function, the…
seepheart
  • 33
  • 3
0
votes
1 answer

Do away with SOAP::Lite->service() call

I have a fully functional perl script which talks to our SOAP webservice. Today it does that via the SOAP::Lite->service('.../name?WSDL') and then a call to execute() against the returned value. They're now locking down the WSDL so when I hit that…
Gargoyle
  • 9,590
  • 16
  • 80
  • 145
0
votes
1 answer

perl 500 SSL negotiation failed

500 SSL negotiation failed. have a problem when i try to connect with web service that have certification , username and password as credentials ,can any one help me code: $ENV{HTTPS_CA_FILE} = '/pass/cert.crt'; $ENV{HTTPS_CA_DIR} =…
0
votes
2 answers

Perl SOAP::Lite WebService call with complex parameters

I have to send a SOAP request in the following format:
T.S.
  • 192
  • 2
  • 13
0
votes
1 answer

Getting SOAP::Lite to omit types in queries

I'm trying to get a Perl script using SOAP::Lite to talk to a web service. I have a WSDL for the service, but some fields have their type defined as a complexType / simpleType without a name specified. The server validates the typing information…
Gert van den Berg
  • 2,448
  • 31
  • 41
0
votes
1 answer

Why this code produces warning: Use of uninitialized value

This code: my $url = 'http://172.27.1.250:8080/X/services/XSOAP'; my $soap = SOAP::Lite->new( service=> 'http://172.27.1.250:8080/X/services/XSOAP?wsdl', proxy =>…
teodozjan
  • 913
  • 10
  • 35
0
votes
1 answer

Changing attributes soap:body

I'm using perl, SOAP::Lite. Does anyone know how to change the tag attributes of soap:body? What I really need is the way to add an ID attribute to the soap:Body tag in SOAP::Lite perl.
0
votes
1 answer

SOAP::Lite module installation on cPanel

I am creating a custom module to be placed in the directory /usr/local/cpanel/Cpanel. My perl module requires SOAP::Lite. Since the scripts placed in the directory /usr/local/cpanel/Cpanel are run under cpanel's internal perl version 5.6.2, does…
biosFF
  • 223
  • 2
  • 9
0
votes
1 answer

encoding accents in soap lite

I have a perl script using soap::lite that calls a webservice written in Net. The call works, but the problem is that I need to pass a parameter like SOAP::Data->name('x' => 'àò??\a')->type('string') And the resulting XML is something…
Grey
  • 114
  • 3
  • 17
0
votes
2 answers

Pull value from hash reference

I am using Perl and SOAP::Lite to pull ticket information from a system called OTRS. At the moment we have a web service set up on OTRS called GetTicket. We've managed to get SOAP:Lite to connect to the web service and pull the ticket information.…
Lisa Lemons
  • 160
  • 4
  • 13
0
votes
1 answer

Can't use object methods of SOAP object with SOAP::Lite

I am reading data from our Jira via SOAP and recieve an array of RemoteIssue-Objects. Now I want to iterate over these and get the status of each ticket. The documentation of RemoteIssue says that there is a getStatus()-Method. When I call it on the…
Demnogonis
  • 3,172
  • 5
  • 31
  • 45
0
votes
1 answer

How to show WSDL for a web service that was build with Perl

I made a web service before in PHP and when i went to the server link to the webservice it would build and show me the WSDL for it. I had to recreate the web service in perl (as a .cgi file), but now when i go to the link for the webservice i am not…
user597608
  • 387
  • 8
  • 20
1 2 3 4
5