JBoss 7.1 ships with a new framework for Web services from Apache, called CXF.
This framework, when consuming SOAP web services, validates by default all responses against the provided wsdl.
Sometimes that behavior is not required because of several reasons. For example, the WSDL may change from time to time, adding attributes to the response, which won’t affect the current behavior of the application, or maybe from a performance perspective, since this validation requires an additional step in each request.
Long story short, to disable the schema validation for all SOAP responses, the standalone.xml should be edited, adding the following tag inside:
<client-config name=”Standard-Client-Config”><property name=”set-jaxb-validation-event-handler” value=”false”/></client-config> |
This configuration disables the validation for all web service clients deployed in the server.
If this is too much for you, you can disable validation programmatically only for the clients you need, adding the following line before calling the web service:
((BindingProvider) wsClient).getRequestContext().put(“set-jaxb-v |
Let’s start with the definition given by the official page. “Mockito is a mocking framework that tastes really good. It […]
Continue readingWhen the great idea and background just isn’t enough […]
Continue readingDo you have problems with the space on your disk? You are in the right place! This post is for […]
Continue readingHave you ever wanted to be one step ahead, and be notified of any unwanted exception before your users have […]
Continue reading
COMMENTS