I have generated a client for a web service with Axis 2.
The problem I have is that when the web service throws a Soap:Fault message I don't seem to have any way to get to the actual error it returns.
Axis2 throws a RemoteException, but I can't see a way to drill into that to get the text of the error (which I can see because I'm logging all i/o).
How do I get the faultString?
John.
John Farrel
Ranch Hand
Joined: May 24, 2010
Posts: 65
posted
0
Anyone? Any ideas?
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35249
7
posted
0
I assume you're running this in a servlet container of some kind - isn't there a full stack trace in its log files?
My code calls the client. The client throws an exception. I catch the exception, but it does not include the useful error text I want to handle.
How would a logged stack dump help with that?