in reply to Re^2: SOAP and .NET
in thread SOAP and .NET
I've managed to get some debugging information, but it leaves me no closer to a solution:
mismatched tag at line 61, column 16, byte 2902:
<p>
</ul>
====^
</span>
at C:/usr/lib/XML/Parser.pm line 187
Of course looking at the Parser module sheds no light on where / how that HTML code is being generated. Line #187:
$result = $expat->parse($arg);
I'm spiralling further away from a solution here and could really use some help.
My code
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
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: SOAP and .NET
by erroneousBollock (Curate) on Sep 20, 2007 at 15:42 UTC | |
by Trudge (Acolyte) on Sep 20, 2007 at 17:17 UTC |