
ptop
Novice
Mar 12, 2009, 3:27 AM
Post #1 of 3
(1618 views)
|
|
SOAP::LITE + WSDL
|
Can't Post
|
|
Hi ,all I'm trying to write an "automatic" SOAP client , the script should get the WDSL url path , analyzing the SERVICE name and automaticliy resolve the FUNCTIONS names form the SERVICE , then it should generate request to each of the existings FUNCTIONS with the Functions parameters. I'm not able to get the Functions name and the Parameters name , how do i get then and generating the SOAP requests ??? Thanks. my script: #! /usr/bin/perl use SOAP::Lite; use XML::Simple; my $wsdl = "http://www.WSDLTEST.com/Test.asmx?wsdl" ; my $soap_service = SOAP::Lite->service($wsdl); print $soap_service; # The Service Name exit(0); Thanks !!!
|