here is my code
use Data::Dumper;
use SOAP::Lite +trace=>"debug"; # it debugs whether the connection is
+set or not
use SOAP::WSDL::Client;
use SOAP::WSDL;
my $soap = SOAP::WSDL->new(
wsdl => 'http://webservices.legis.ga.gov/GGAServices/Session/Servi
+ce.svc?wsdl');
$soap->wsdlinit();
$soap->servicename( 'SessionService' );
my $res = $soap->call('GetSessions');
print Dumper($res->result);
getting error as : Error processing WSDL: can't find the path '/wsdl:definitions/wsdl:types/xsd:schema/xsd:element@name="GetSessions"/xsd:complexType/descendant::xsd:element'
using SOAP::WSDL of $VERSION = "1.27";
thanks
your Help will be appreciated