java 调用 wsdl形式的webservice 示例

 1 import java.rmi.RemoteException;
 2 import javax.xml.rpc.ParameterMode;
 3 import javax.xml.rpc.ServiceException;
 4 import org.apache.axis.client.Call;
 5 import org.apache.axis.client.Service;
 6 import org.apache.axis.encoding.XMLType;
 7 
 8 public class webServiceTest {
 9     public String invokeRemoteFuc() {
10         String endpoint = "http://localhost:8080/webservice/services/helloworld";
11         String result = "no result!";
12         Service service = new Service();
13         Call call;
14         Object[] object = new Object[1];
15         object[0] = "Dear I miss you";//Object是用来存储方法的参数
16         try {
17             call = (Call) service.createCall();
18             call.setTargetEndpointAddress(endpoint);// 远程调用路径
19             call.setOperationName("say");// 调用的方法名
20 
21             // 设置参数名:
22             call.addParameter("str1", // 参数名
23                     XMLType.XSD_STRING,// 参数类型:String
24                     ParameterMode.IN);// 参数模式:'IN' or 'OUT'
25 
26             // 设置返回值类型:
27             call.setReturnType(XMLType.XSD_STRING);// 返回值类型:String            
28 
29             result = (String) call.invoke(object);// 远程调用
30         } catch (ServiceException e) {
31             e.printStackTrace();
32         } catch (RemoteException e) {
33             e.printStackTrace();
34         }
35         return result;
36     }
37 
38     public static void main(String[] args) {
39         webServiceTest t = new webServiceTest();
40         String result = t.invokeRemoteFuc();
41         System.out.println(result);
42     }
43 }

来自:https://my.oschina.net/erichsbc/blog/148913

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值