如何从 Java Web 服务类生成 WSDL 文件,Sudzc.com 支持该文件生成 Objective-C 代码?
我用一个简单的例子试了一下。
我的 Java Web 服务类:
package main;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
@WebService(name="RectangleWebService", serviceName = "RectangleWebService", portName = "RectangleWebServicePort", targetNamespace = "http://www.mywstest.com/ws/rectangle")
public class RectangleService {
@WebMethod(action="calculateValueOne")
public @WebResult(name="ValueOne") float calculateValueOne(@WebParam(name="Length") float length, @WebParam(name="Width")float width){
return 2*(length+width);
}
@WebMethod(action="calculateValueTwo")
public @WebResult(name="ValueTwo") float calculateValueTwo(@WebParam(name="Length") float length, @WebParam(name="Width")float width){
return (length*width);
}
}
我使用 ant-script 和 wsgen 创建了一个 WSDL 文件,然后将其上传到http://sudzc.com以创建 Objective-C 代码(Objective-C for iOS with ARC)。我的问题是从 Sudzc.com 创建的 Objective-C 代码没有实例方法......
这是我的 WSDL 文件:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.6 in JDK 6. -->
<definitions targetNamespace="http://www.mywstest.com" name="RectangleWebService" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://www.mywstest.com" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
<import namespace="http://www.mywstest.com/ws/rectangle" location="RectangleWebServicePortType.wsdl"/>
<binding name="RectangleWebServicePortBinding" type="ns1:RectangleWebService" xmlns:ns1="http://www.mywstest.com/ws/rectangle">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
<operation name="calculateValueOne">
<soap:operation soapAction="calculateValueOne"/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
</operation>
<operation name="calculateValueTwo">
<soap:operation soapAction="calculateValueTwo"/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
</operation>
</binding>
<service name="RectangleWebService">
<port name="RectangleWebServicePort" binding="tns:RectangleWebServicePortBinding">
<soap:address location="REPLACE_WITH_ACTUAL_URL"/>
</port>
</service>
</definitions>
当我使用来自http://www.w3schools.com/webservices/tempconvert.asmx?WSDL的 WSDL 文件通过 sudzc.com 生成 Objective-C 代码时,它工作正常,我可以使用 web 的实例方法在我的 Objective-C 项目中服务... !!!
也许有人可以帮忙?
PS对不起我的英语不好,我是网络服务的绝对初学者......