Hello,
in endpoint I throw a ClientSoapFaultException:
@SoapFault(faultCode = FaultCode.CLIENT)
In the spring-ws-servlet.xml application context, I have:Code:public class ClientSoapFaultException extends RuntimeException {
The problem is that when a ClientSoapFaultException is thrown, for some operations (those who return void) , I received a soap fault client but for some others (who normally return a response), i received a soap fault Server.Code:<sws:annotation-driven /> <bean class="org.springframework.ws.soap.server.endpoint.SoapFaultAnnotationExceptionResolver" > <property name="order" value="0" /> </bean>
Is there anything I'm missing? Related to Jaxb: as normally the operation returns a response which is marshalled but when the exception is thrown he can't marshalled it or another ExceptionHandler takes the hand at this moment?
Thanks in advance.


Reply With Quote