我正在使用java和cxf SOAP webservices。我已启用如下所示的架构验证,但它无法正常工作。我没有任何外部xsds。所有xsd元素都是WSDL的一部分。如果没有外部xsd并且所有xsd元素都是WSDL的一部分,那么schemavlaidation= true
属性是否会起作用?我放置了minOccur
和maxOccur
属性。
<jaxws:endpoint id="serviceEndpoint" implementor="#serviceEndpoint"
address="/CreateService" wsdlLocation="classpath:wsdl/Service.wsdl">
<jaxws:properties>
<entry key="schema-validation-enabled" value="true" />
</jaxws:properties>
</jaxws:endpoint>