每当我在WebSphere中部署我的Web服务(作为.WAR)(使用管理员控制台)时,它似乎修改其WSDL以将其分离为WSDL和XSD(基本上删除了WSDL类型的内联)。它还将其重命名为GetGedDoc.wsdl(原始名称为GetGedDocumentService.wsdl)。
我没有具体的问题,但XSD重命名所有参数arg0,arg1等...并使它们都是可选的。
如何防止这种令人讨厌的行为?
我真的没有看到你可以使用哪些代码来诊断问题,但无论如何这里都是我的WSDL。
<?xml version="1.0" encoding="UTF-8"?><!-- Generated by JAX-WS RI (http://jax-ws.java.net).
RI's version is JAX-WS RI 2.2.10 svn-revision#IBM 2.2.10-12/21/2015 12:33:25
PM(foreman)-. -->
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" name="GetGedDocumentService"
targetNamespace="http://cm.web.dsidiff.fr/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://cm.web.dsidiff.fr/" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata"
xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:wsp1_2="http://schemas.xmlsoap.org/ws/2004/09/policy"
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<types>
<xsd:schema targetNamespace="http://cm.web.dsidiff.fr/">
<xsd:element name="parameters" type="tns:getDocument"/>
<xsd:complexType name="getDocument">
<xsd:sequence>
<xsd:element minOccurs="1" name="pid" type="xsd:string" />
<xsd:element minOccurs="1" name="login" type="xsd:string" />
<xsd:element minOccurs="1" name="pwd" type="xsd:string" />
<xsd:element minOccurs="1" name="numClient" type="xsd:string" />
<xsd:element minOccurs="0" name="numCompte" type="xsd:string" />
<xsd:element minOccurs="0" name="itemType" type="xsd:string" />
<xsd:element minOccurs="0" name="typeDoc" type="xsd:string" />
</xsd:sequence>
</xsd:complexType>
<xsd:element name="result" type="xsd:string" />
</xsd:schema>
</types>
<message name="getDocument">
<part element="tns:parameters" name="parameters" />
</message>
<message name="getDocumentResponse">
<part element="tns:result" name="result" />
</message>
<portType name="GetGedDocService">
<operation name="getDocument">
<input message="tns:getDocument"/>
<output message="tns:getDocumentResponse" />
</operation>
</portType>
<binding name="GetGedDocSOAP" type="tns:GetGedDocService">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
<operation name="getDocument">
<soap:operation soapAction="http://localhost:9080/DSI_CMDK_WS/getDocument" />
<input>
<soap:body use="literal" />
</input>
<output>
<soap:body use="literal" />
</output>
</operation>
</binding>
<service name="GetGedDocService">
<port binding="tns:GetGedDocSOAP" name="GetGedDocSOAP">
<soap:address location="http://localhost:9080" />
</port>
</service>
</definitions>
答案 0 :(得分:2)
有几种可能性。如果您的@Webservice批注不包含wsdlLocation属性,那么WebSphere不知道您的wsdl并且正在生成一个。
当wsdl与应用程序打包在一起时,WebSphere将检查它并将其与代码进行比较。如果由于某种原因(操作或参数不匹配,或命名空间不匹配等)与代码不兼容,那么它将被忽略,并且将生成另一个。
如果它倾向于第二个,那么com.ibm.ws.websvcs。* = all的痕迹可能会提供信息。