我制作了一个SOAP应用程序,它有一个@WebService
接口和实现,可以通过发布者类或Tomcat启动。问题是:生成的WSDL不包含<complexType>
的结构,因此内部没有元素。这就是我想要的:
<xs:complexType name="customer">
<xs:sequence>
<xs:element name="age" type="xs:int"/>
<xs:element name="name" type="xs:string" minOccurs="0"/>
</xs:sequence>
(嗯,这不是一个方法,但是方法在OK wsdl中包含类似的东西)
所以,我创建了一个helloworld应用程序来尝试生成好的WSDL;使实体成为“客户”,并使用SchemaOutputResolver
而不是@WebInterface
- 实现 - 发布者方法来获取WSDL。
但是,当我为helloworld Web服务(使用单一方法)制作时:
@WebService
public interface CustomerServInterface {
@WebMethod
String gimmeCustomer(@WebParam(name = "CustomerY") Customer customer);
}
,其实施:
@WebService(endpointInterface = "myJaxb.CustomerServInterface")
public class CustomerServImpl implements CustomerServInterface {
@Override
public String gimmeCustomer(@WebParam(name = "CustomerQQ") Customer customer) {
if (customer != null) return "Received!";
else return "received null";
}
}
和发布商:
public class CustomerServPublisher {
public static void main(String[] args) {
System.setProperty("com.sun.xml.internal.ws.transport.http.HttpAdapter.dump", "true");
Endpoint.publish("http://localhost:8080/customer", new CustomerServImpl());
}
}
,并且客户的类已经是@XmlRootElement以及它的每个字段@XmlElement(之前显然都有效),我从发布者获得的WSDL再次没有参数:
<types>
<xsd:schema>
<xsd:import namespace="http://myJaxb/" schemaLocation="http://localhost:8080/customer?xsd=1"/>
</xsd:schema>
</types>
<message name="gimmeCustomer">
<part name="parameters" element="tns:gimmeCustomer"/>
</message>
<message name="gimmeCustomerResponse">
<part name="parameters" element="tns:gimmeCustomerResponse"/>
</message>
<portType name="CustomerServInterface">
<operation name="gimmeCustomer">
<input wsam:Action="http://myJaxb/CustomerServInterface/gimmeCustomerRequest" message="tns:gimmeCustomer"/>
<output wsam:Action="http://myJaxb/CustomerServInterface/gimmeCustomerResponse" message="tns:gimmeCustomerResponse"/>
</operation>
</portType>
<binding name="CustomerServImplPortBinding" type="tns:CustomerServInterface">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
<operation name="gimmeCustomer">
<soap:operation soapAction=""/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
</operation>
</binding>
(为了方便而截断了一点)
不仅缺少方法的gimmeCustomer参数(customer或CustomerY或CustomerQQ),而且还缺少类Customer! 我绝对不明白。谷歌也没有给出太多答案(尽管我对这个问题并不孤单)。我不理解一些非常明显的东西。
提前感谢您提供有用的信息。
答案 0 :(得分:0)
所以,我没有直接弄明白。相反,我将样式更改为RPC:
@SOAPBinding(style = SOAPBinding.Style.RPC)
public interface CustomerServInterface {
并且方法参数显示为arg0,arg1等。然后
String authorize(@WebParam(name = "login") String login) {
@WebParam之前每个参数(在接口类中)解决了名称问题。
然而,从谷歌的jax-ws RPC vs Document描述来看,这是一次不必要的改变。 MEH。
现在问题是实体类Customer本身并没有映射到我的WSDL,不过
<message name="gimmeCustomer">
<part name="CustomerY" type="tns:customer"/>
</message>
这里的意思是(大概)客户&#39;应该出现在同一个wsdl中。但这是另一个话题。