0

我在 java 中有一个 JAX WS Web 服务,并使用以下行将其从Document类型更改为RPC :

@SOAPBinding(style = Style.RPC)

问题是当我尝试使用 JDK 1.8.0_91 中的 wsgen.exe(版本 2.2.9)时:

"C:\Program Files\Java\jdk1.8.0_91\bin\wsgen.exe" -verbose -cp . com.ws.ServiceImpl -wsdl -inlineSchemas

为方法insertDevolutions生成的 WSDL如下:

<xs:schema version="1.0" targetNamespace="..." xmlns:xs="http://www.w3.org/2001/XMLSchema">      
    <xs:complexType name="arrayList">
        <xs:complexContent>
            <xs:extension base="tns:abstractList">
                <xs:sequence/>
            </xs:extension>
        </xs:complexContent>
    </xs:complexType>
    <xs:complexType name="abstractList" abstract="true">
        <xs:complexContent>
            <xs:extension base="tns:abstractCollection">
                <xs:sequence/>
            </xs:extension>
        </xs:complexContent>
    </xs:complexType>
    <xs:complexType name="abstractCollection" abstract="true">
        <xs:sequence/>
    </xs:complexType>
</xs:schema>
 ...
<message name="insertDevolutions">
    <part name="arg0" type="xsd:string"/>
    <part name="arg1" type="tns:arrayList"/>
    <part name="arg2" type="xsd:string"/>
    <part name="arg3" type="xsd:string"/>
    <part name="arg4" type="xsd:string"/>
    <part name="arg5" type="xsd:string"/>
    <part name="arg6" type="xsd:boolean"/>
</message>

但是由 URL http://localhost:8080/TestWS/ServiceImpl?wsdl的服务生成的 WSDL完全不同,因为对象传递是正确生成的:

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="..." attributeFormDefault="unqualified" elementFormDefault="unqualified" targetNamespace="...">
    <xs:complexType name="devolution">
        <xs:sequence>
            <xs:element name="company" type="xs:string"/>
            <xs:element name="currency" type="xs:string"/>
            <xs:element name="registerDate" type="xs:dateTime"/>>
            <xs:element name="total" type="xs:double"/>
        </xs:sequence>
    </xs:complexType>
    <xs:complexType final="#all" name="devolutionArray">
        <xs:sequence>
            <xs:element maxOccurs="unbounded" minOccurs="0" name="item" nillable="true" type="tns:devolution"/>
        </xs:sequence>
    </xs:complexType>
</xs:schema>
...
<wsdl:message name="insertDevolutions">
    <wsdl:part name="arg0" type="xsd:string"/>
    <wsdl:part name="arg1" type="tns:devolutionArray"/>
    <wsdl:part name="arg2" type="xsd:string"/>
    <wsdl:part name="arg3" type="xsd:string"/>
    <wsdl:part name="arg4" type="xsd:string"/>
    <wsdl:part name="arg5" type="xsd:string"/>
    <wsdl:part name="arg6" type="xsd:boolean"/>
</wsdl:message>

所以我想知道生成的 URL 中带有wsdl选项的 WSDL 是如何生成的,因为我认为 JAX WS 使用与 wsgen 相同的工具。是否有另一种工具可以像服务提供的那样生成 WSDL?

4

1 回答 1

0

最后我发现 WSDL 是用 CXF 生成的,因为工具 wsgen 使用默认的 JAXB 实现,而这个工具不会像我之前提到的那样转换接口List<>,而ArrayList<>像我之前提到的那样转换类,方法如下:

<xs:complexType name="arrayList">
    <xs:complexContent>
        <xs:extension base="tns:abstractList">
            <xs:sequence/>
        </xs:extension>
    </xs:complexContent>
</xs:complexType>

因此,当我将 CXF 提供的工具与以下命令一起使用时:

"C:\apache-cxf-3.1.6\bin\java2ws" -wsdl -d . com.ws.ServiceImpl

RPC正确生成了带有样式的 WSDL 。

于 2016-11-06T19:59:17.397 回答