I have generated classes from WSDL. Fault messages are converted into an Exception with a faultInfo (for detail element) and annoted with @WebFault
When I throw the business exception on server side, it's just converted into a generic javax.xml.ws.soap.SOAPFaultException with just exception message on client side.
I have generated classes from WSDL. Fault messages are converted into an
Exception
with afaultInfo
(for detail element) and annoted with@WebFault
When I throw the business exception on server side, it's just converted into a generic
javax.xml.ws.soap.SOAPFaultException
with just exception message on client side.Here is my quick&dirty exception resolver: