调用WebService接口有多种方法,下面以Java语言为例进行说明:
wsimport
来完成。生成代码后,可以使用生成的客户端类来调用WebService接口。import com.example.webservice.HelloWorld;
import com.example.webservice.HelloWorldService;
public class Main {
public static void main(String[] args) {
HelloWorldService service = new HelloWorldService();
HelloWorld port = service.getHelloWorldPort();
String result = port.sayHello("World");
System.out.println(result);
}
}
import com.example.webservice.HelloWorld;
import org.apache.cxf.jaxws.JaxWsProxyFactoryBean;
public class Main {
public static void main(String[] args) {
JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean();
factory.setServiceClass(HelloWorld.class);
factory.setAddress("http://localhost:8080/HelloWorld");
HelloWorld port = (HelloWorld) factory.create();
String result = port.sayHello("World");
System.out.println(result);
}
}
以上是两种常见的调用WebService接口的方法,具体使用哪种方法取决于你所使用的语言和框架。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: webService基本原理