Hi,
I am doing a SOAP lookup (Axis) from UDF. It fails with an exception :
Error -
But i can see the logs at the target server, that has the proper resquest structure and the response from the webservice is also in the target logs. So no problems calling the target webservice.
I wrapped the accessor.call(payload) method in a Try-Catch block to narrow down that the problem occurs while making the webservice call.
try
{ Payload SOAPOutPayload = accessor.call(payload); }
catch (Exception e)
{ trace.addWarning("Error ---- " + e);
return ("soap call failed");
}
I am using the Receiver SOAP (Axis) adapter setup as described in http://tknight.org/sdn/show/15373
And i know this works because i created a PI interface to call the same webservice without a UDF. This webservice also works from SOAP-UI.
Can we do webservice lookup using Axis framework and Any suggestions to solve the above?
Regars,
Balaji.M