如何配置 CXF 不担心未知元素?
How to configure CXF to not worry about unknown elements?
我的服务正在使用 soap 服务。目标服务可以添加新的字段,只要我们收到我们需要的所有字段,这些字段就不会破坏我们的服务。
我正在使用 CXF 从 WSDL 生成 java 代码,它会在发现新字段时中断。是否可以将 CXF 配置为忽略新字段?
错误类似于
org.apache.cxf.interceptor.Fault: Unmarshalling Error: unexpected element (uri:"http://www.a.com/sed/b/products/2014/03/types", local:"BidOnly"). Expected elements are <{http://www.a.com/sed/b/products/2014/03/types}SaleTeam>,
at org.apache.cxf.jaxb.JAXBEncoderDecoder.unmarshall(JAXBEncoderDecoder.java:905) ~[cxf-rt-databinding-jaxb-3.2.0.jar:3.2.0]
at org.apache.cxf.jaxb.JAXBEncoderDecoder.unmarshall(JAXBEncoderDecoder.java:711) ~[cxf-rt-databinding-jaxb-3.2.0.jar:3.2.0]
at org.apache.cxf.jaxb.io.DataReaderImpl.read(DataReaderImpl.java:172) ~[cxf-rt-databinding-jaxb-3.2.0.jar:3.2.0]
我试图解决同样的问题并偶然发现了这个问题:
CXF - webservice endpoint has changed, WSDL has not
显然,如果将 "set-jaxb-validation-event-handler" 设置为 "false",它会禁用对解组器的验证。所以在我的代码中我添加了这个:
import org.apache.cxf.jaxws.EndpointImpl;
...
EndpointImpl endpoint = new EndpointImpl(...);
endpoint.getProperties().put("set-jaxb-validation-event-handler", "false");
我知道我在回答一个老问题,但也许对某些人有用。
我的服务正在使用 soap 服务。目标服务可以添加新的字段,只要我们收到我们需要的所有字段,这些字段就不会破坏我们的服务。 我正在使用 CXF 从 WSDL 生成 java 代码,它会在发现新字段时中断。是否可以将 CXF 配置为忽略新字段?
错误类似于
org.apache.cxf.interceptor.Fault: Unmarshalling Error: unexpected element (uri:"http://www.a.com/sed/b/products/2014/03/types", local:"BidOnly"). Expected elements are <{http://www.a.com/sed/b/products/2014/03/types}SaleTeam>,
at org.apache.cxf.jaxb.JAXBEncoderDecoder.unmarshall(JAXBEncoderDecoder.java:905) ~[cxf-rt-databinding-jaxb-3.2.0.jar:3.2.0]
at org.apache.cxf.jaxb.JAXBEncoderDecoder.unmarshall(JAXBEncoderDecoder.java:711) ~[cxf-rt-databinding-jaxb-3.2.0.jar:3.2.0]
at org.apache.cxf.jaxb.io.DataReaderImpl.read(DataReaderImpl.java:172) ~[cxf-rt-databinding-jaxb-3.2.0.jar:3.2.0]
我试图解决同样的问题并偶然发现了这个问题:
CXF - webservice endpoint has changed, WSDL has not
显然,如果将 "set-jaxb-validation-event-handler" 设置为 "false",它会禁用对解组器的验证。所以在我的代码中我添加了这个:
import org.apache.cxf.jaxws.EndpointImpl;
...
EndpointImpl endpoint = new EndpointImpl(...);
endpoint.getProperties().put("set-jaxb-validation-event-handler", "false");
我知道我在回答一个老问题,但也许对某些人有用。