spring - Adding detail in a WS SoapFault : my custom ExceptionResolver is not used -
i'm building web service using spring boot (1.2.4.release) , i'm quite new framework. especially, i'm trying customize soapfault content when exception thrown (adding "detail" tag). i followed article : http://www.stevideter.com/2009/02/18/of-exceptionresolvers-and-xmlbeans/ here exception: package foo.bar.exception; import org.springframework.ws.soap.server.endpoint.annotation.faultcode; import org.springframework.ws.soap.server.endpoint.annotation.soapfault; @soapfault(faultcode = faultcode.server) public class serviceexception extends exception { private static final long serialversionuid = -1804604596179996724l; private string tempfaultdetail; public serviceexception(){ super("serviceexception"); } public serviceexception(string message) { super(message); } public serviceexception(string message, throwable cause) { super(message, cause); } public serviceexception(string me...