For Programmers: Free Programming Magazines  


Home > Archive > PERL Modules > November 2005 > Using SOAP::Lite and .NET









You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

 

Author Using SOAP::Lite and .NET
nathanvi

2005-11-16, 6:56 pm

Hello,
i have to access to informations in a PC and they are avaliable via a
webservice in .NET.
I do not know webservices but i thought they are accessible via SOAP so
i decided to use SOAP::Lite

I'm trying to understand how it works so i've a webservice at this
page:
http://www.eklipseinformationtechno...co.ws/test.asmx

This service has a method (i hope it is called in this way in english)
called CognomeNome in which, if you pass a number it gives you a name
and surname...

My script doesn't give me any output so i can't understand where is the
problem...

Can you give me any suggestions?
Many thanks!!


<code>
use SOAP::Lite;


$soap_response=SOAP::Lite
-> uri('http://www.eklipseinformationtechnology.com/Test')
->
proxy('http://www.eklipseinformationtechnology.com/finco.ws/test.asmx')

->CognomeNome(1);


@res = $soap_response->paramsout;


$res = $soap_response->result;
print "Result is $res\n\n";
</code>

Sponsored Links







Also available: Server administration forum archive | Web Design forum archive | Software forum archive | Hardware reviews archive

Copyright 2008 codecomments.com