我在java中有一个JAX WS Web服务,我将其从类型Document更改为RPC,使用以下行:
@SOAPBinding(style = Style.RPC)
问题是当我尝试从JDK 1.8.0_91使用wsgen.exe(2.2.9版本):
"C:Program FilesJavajdk1.8.0_91binwsgen.exe" -verbose -cp . com.ws.ServiceImpl -wsdl -inlineSchemas
为 insertdevotions 方法生成的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 ?
最后我发现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.6binjava2ws" -wsdl -d . com.ws.ServiceImpl
正确生成RPC
样式的WSDL