6

我有一个用 .NET 实现的服务的 WSDL 文件。我也有相同的文件,其中包含由第 3 方制作的一些“自定义”,以使文件可以容忍wsimport,主要是以下形式:

<s:annotation>
  <s:appinfo>
    <jaxb:property name="result"/>
  </s:appinfo>
</s:annotation>

我希望能够处理来自供应商的原始WSDL 以及这些覆盖,但我想在外部指定它们。我看到我可以使用“绑定文件”-b选项,wsimport并且我尝试编写一个当前看起来像这样的覆盖文件:

<jxb:bindings version="1.0"
  xmlns:jxb="http://java.sun.com/xml/ns/jaxb"
  xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <jxb:bindings node="//xs:element[@name='MyElementResult']">
    <jxb:property name="result"/>
  </jxb:bindings>
</jxb:bindings>

我已经验证“MyElementName”确实存在,在此处找到的元素中:

<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions
     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
     xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/"
     xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
     xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
     xmlns:tns="vendor-uri"
     xmlns:s="http://www.w3.org/2001/XMLSchema"
     xmlns:s2="http://microsoft.com/wsdl/types/"
     xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
     xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
     targetNamespace="vendor-namespace"
     xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">

  [...]
  <s:element name="MyElementResponse">
    <s:complexType>
      <s:sequence>
        <s:element minOccurs="0" maxOccurs="1" name="MyElementResult" type="tns:Result" />

我从以下位置收到此警告(因此没有更改)wsimport

[ERROR] XPath evaluation of "//xs:element[@name='MyElementResult']" results in empty target node
  line 4 of file:/Users/..../wsdl/custom-bindings.xjb

我的声明中是否遗漏了什么?我的 XPath 表达式不正确吗?如果我让我的 XPath/覆盖工作,它的格式是否正确以便获得与我编辑原始 WSDL 相同的结果?

这甚至可以使用外部文件,还是我必须使用这些相同的更改重新修改任何未来版本的 WSDL?

4

1 回答 1

1

您需要在绑定 XML 文件中提供模式位置。

<jxb:bindings version="1.0"
     xmlns:jxb="http://java.sun.com/xml/ns/jaxb"
     xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <jxb:bindings 
         schemaLocation="PATH_TO_YOUR_WSDL#types?schema1"
         node="//xs:schema[@targetNamespace='SCHEMA_NAMESPACE']">
        <jxb:bindings node="//xs:element[@name='MyElementResult']">
            <jxb:property name="result"/>
        </jxb:bindings>
    </jxb:bindings>
</jxb:bindings>

WSDL 文件名后面的#types?schema1将指定您要绑定的 WSDL 中的哪个模式,从 1 开始。

于 2015-11-10T02:05:11.863 回答