Hi All We are moving to Win 2003 server. I have a soap call that now will not run it is dieing at the call. I have ActivePerl-5.6.1.638 loaded on this new server. All other PERL program run with no problems I just can not get this soap call to run. Please help Thanks Larry
$ServiceID = "Service"; $PassWd = "Password"; use SOAP::Lite; my $soap = SOAP::Lite -> uri('https://serveraddress/decryptTokenService') -> on_action( sub { join '/','https://serveraddr/decryptTokenService', $_[1]}) -> proxy('https://serveraddr/decryptTokenService/decryptToken.asmx') ; my $method = SOAP::Data->name('decryptToken') ->attr({xmlns =>'https://serveraddr./decryptTokenService/'}); my @params = ( SOAP::Data->name("userID" => $ServiceID), SOAP::Data->name("password" => $PassWd), SOAP::Data->name("encryptedToken" => "$MyCookie")); $soap->deserializer(SOAP::Custom::XML::Deserializer->new); my $Results = $soap->call($method => @params); _______________________________________________ Perl-Win32-Users mailing list Perl-Win32-Users@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs