in reply to Re^3: SOAP and .NET
in thread SOAP and .NET
mismatched tag at line 61, column 16, byte 2902:That's not a valid XML fragment for starters.
<p>
</ul>
====^
</span>
at C:/usr/lib/XML/Parser.pm line 187
Why are you calling the 'call' method of SOAP::WSDL? That's SOAP::Lite silliness.use SOAP::WSDL +trace => qw(dispatch); my $soap = SOAP::WSDL->;new(wsdl => 'http://xxx.xxx.xxx/somedoc.asmx') +; # edited $soap -> wsdlinit(); $soap -> servicename('Web Mechanic'); my $transport = $soap -> call('Insert' => ( Firstname => $FirstName )); # previously defined
-David
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: SOAP and .NET
by Trudge (Acolyte) on Sep 20, 2007 at 17:17 UTC |