N
neil.holmes
I am trying to make use of SOAP::LITE for calling Web Services from
Perl.
I have Windows and Linux Installations.
On Windows the following works fine :-
#!/usr/local/bin/perl
use SOAP::Lite;
print SOAP::Lite
-> service('http://neilvmes3:8082/ws/EcsAddEntry?wsdl')
-> TK_ADD_ENTRY('Neil Holmes','Greatest Hits
Volume','CD','9.99','www.proiv.com');
The data is added to the application behind the web services and a
success flag is returned.
The Linux version of the same call :-
#!perl
use SOAP::Lite;
print SOAP::Lite
-> service('http://neilvmes3:8082/ws/EcsAddEntry?wsdl')
-> TK_ADD_ENTRY('Neil Holmes','Greatest
Hits','CD','9.99','www.proiv.com');
Appears to run (no errors) but the application is not updated and no
success flag is returned.
Does anyone have some suggestions as to what might be causing this ? Or
what I can do to try and track down the problem.
Any suggestions very greatfully received.
Many Thanks
Neil
Perl.
I have Windows and Linux Installations.
On Windows the following works fine :-
#!/usr/local/bin/perl
use SOAP::Lite;
print SOAP::Lite
-> service('http://neilvmes3:8082/ws/EcsAddEntry?wsdl')
-> TK_ADD_ENTRY('Neil Holmes','Greatest Hits
Volume','CD','9.99','www.proiv.com');
The data is added to the application behind the web services and a
success flag is returned.
The Linux version of the same call :-
#!perl
use SOAP::Lite;
print SOAP::Lite
-> service('http://neilvmes3:8082/ws/EcsAddEntry?wsdl')
-> TK_ADD_ENTRY('Neil Holmes','Greatest
Hits','CD','9.99','www.proiv.com');
Appears to run (no errors) but the application is not updated and no
success flag is returned.
Does anyone have some suggestions as to what might be causing this ? Or
what I can do to try and track down the problem.
Any suggestions very greatfully received.
Many Thanks
Neil