Using SOAP::Lite and .NET

Using SOAP::Lite and .NET

am 16.11.2005 23:12:37 von nathanvi

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.eklipseinformationtechnology.com/finco.ws/test.as mx

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!!



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";