To disable schema validation, you must set the schema-validation-enabled
property to false
.
According to the documentation you mentioned ( CXF FAQ ).
To enable schema validation (all requests and responses will be checked for compliance with the schema), set
<entry key="schema-validation-enabled" value="true" />
To disable schema validation (none of the requests and responses will be checked against the schema) do not call anything, because this behavior is by default or set
<entry key="schema-validation-enabled" value="false" />
source share