
Zerenobsky
Novice
Jul 21, 2009, 8:56 AM
Post #1 of 1
(286 views)
|
|
SOAP::Transport::HTTP::Client::send_receive: HTTP/1.1 500 Internal Server Error
|
Can't Post
|
|
here is my sample code: ************* #!perl -w use SOAP::WSDL; my $WSDL = 'http://localhost/PerlTest/Web References/WebReference/Service1.wsdl'; my $soap = SOAP::WSDL->new( wsdl => $WSDL); my $som = $soap->call( Add,3,4 ); print $som; ************* My webservice(in IIS) Service1.wsdl which has a Add(a,b) webmethod I am getting the : SOAP::Transport::HTTP::Client::send_receive: HTTP/1.1 500 Internal Server Error
|