* Gert Doering ([email protected]) [131218 13:33]:
> This is what I get back via https (Dumper($trace)):
The $trace is nice object, the facts are more readible if you call
$trace->printErrors;
$trace->printRequest(pretty_print => 1);
$trace->printResponse(pretty_print => 1);
It seems like a normal login failure (user unknown), correctly
returned to your application.
Do you check the call?
my ($answer, $trace) = $wsdl->call($operation => %args);
if($trace->errors)
{ $trace->printError;
# or
# print for $trace->errors;
}
"$trace->error" (without 's') will only provide the first error (usually
there is only one error. The example scripts use this:
die if !$answer || $answer->{Fault};
--
Regards,
MarkOv
------------------------------------------------------------------------
Mark Overmeer MSc MARKOV Solutions
drs Mark A.C.J. Overmeer MARKOV Solutions
[email protected] [email protected]
http://Mark.Overmeer.net http://solutions.overmeer.net
_______________________________________________
Xml-compile mailing list
[email protected]
http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/xml-compile