public class Tester {
public static void main(String [] args) throws Exception {
// Make a service
AddressBookService service = new AddressBookServiceLocator();
// Now use the service to get a stub which implements the SDI.
AddressBook port = service.getAddressBook();
// Make the actual call
Address address = new Address(...);
port.addEntry("Russell Butek", address);
}
}
2条答案
按热度按时间3zwjbxry1#
通常,客户机不会在web服务中示例化存根,您可以使用服务定位器并调用get方法。我不能从你的问题中判断,但是如果你问一个更一般的问题“我从哪里得到javadocs(或类似的东西)来更好地理解api”,你必须告诉use你正在使用哪个ws。
axis用户指南
kse8i1jr2#
关于axis2:请阅读以下链接,其中包含一些示例:
http://ws.apache.org/axis2/1_5_1/quickstartguide.html#clients
http://ws.apache.org/axis2/1_0/userguide3.html
编辑:关于axis1:它基于jax rpc,您需要示例化存根对象或使用服务定位器来获取存根示例,所有ws操作都将在该示例中。这里给出了一个例子: