根据 wsdl:types 内的架构验证 jaxws Soap 请求

发布于 2024-09-28 09:23:34 字数 1252 浏览 4 评论 0原文

我想要根据此 wsdl 内的模式验证肥皂请求。

<wsdl:types >
    <xsd:schema targetNamespace="http://ws.thecompany.com/FormSubmissionService20100824" 
                xmlns:request="http://xmlschema.thecompany.com/generic/FormHeader20100824" xmlns:response="http://xmlschema.thecompany.com/generic/FormResponse20100824">

        <xsd:import namespace="http://xmlschema.thecompany.com/generic/FormHeader20100824" schemaLocation="../schema/generic/FormHeader20100824.xsd"/>
        <xsd:import namespace="http://xmlschema.thecompany.com/generic/FormResponse20100824" schemaLocation="../schema/generic/FormResponse20100824.xsd"/>

        <xsd:element name="submitFormRequest" type="request:FormHeader"/>
        <xsd:element name="submitFormResponse" type="response:FormResponse"/>

        </xsd:schema>
</wsdl:types>

<!-- Message Definition -->
<wsdl:message name="submitFormRequest">
    <wsdl:part element="thecomp:submitFormRequest" name="request" />
</wsdl:message> 

加载一个 javax.xml.validation.Validator 来针对 进行模式验证。 comp:submitFormRequest> 元素不起作用,尝试加载 wsdl 作为架构也不起作用。

请问有什么想法吗? (使用 jax-ws、was7)

干杯

I'm wanting to validate a soap request against the schema inside this wsdl.

<wsdl:types >
    <xsd:schema targetNamespace="http://ws.thecompany.com/FormSubmissionService20100824" 
                xmlns:request="http://xmlschema.thecompany.com/generic/FormHeader20100824" xmlns:response="http://xmlschema.thecompany.com/generic/FormResponse20100824">

        <xsd:import namespace="http://xmlschema.thecompany.com/generic/FormHeader20100824" schemaLocation="../schema/generic/FormHeader20100824.xsd"/>
        <xsd:import namespace="http://xmlschema.thecompany.com/generic/FormResponse20100824" schemaLocation="../schema/generic/FormResponse20100824.xsd"/>

        <xsd:element name="submitFormRequest" type="request:FormHeader"/>
        <xsd:element name="submitFormResponse" type="response:FormResponse"/>

        </xsd:schema>
</wsdl:types>

<!-- Message Definition -->
<wsdl:message name="submitFormRequest">
    <wsdl:part element="thecomp:submitFormRequest" name="request" />
</wsdl:message> 

Loading a javax.xml.validation.Validator for the schema validating against a < thecomp:submitFormRequest> element doesn't work, neither does attempting to load the wsdl as the schema.

Ideas please?
(using jax-ws, was7)

Cheers

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嘿哥们儿 2024-10-05 09:23:34

我将请求/响应提取到其自己的架构文件中:

    <wsdl:types > 
    <xsd:schema>
        <xsd:import namespace="http://ws.acc.co.nz/ACCFormSubmissionService20100824" 
                schemaLocation="../schema/ws/ACCFormSubmissionService20100824.xsd" />
    </xsd:schema>               
</wsdl:types>

根据新架构命名空间/xsd 进行验证按要求工作。

I extracted the request/response into its own schema file:

    <wsdl:types > 
    <xsd:schema>
        <xsd:import namespace="http://ws.acc.co.nz/ACCFormSubmissionService20100824" 
                schemaLocation="../schema/ws/ACCFormSubmissionService20100824.xsd" />
    </xsd:schema>               
</wsdl:types>

Validating against the new schema namespace/xsd works as required.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文