我在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的工具,就像服务提供的那样?
答案 0 :(得分: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。