【从本人QQ空间迁移】java调用webservice接口

import java.net.MalformedURLException;  
import java.rmi.RemoteException;  
import org.apache.axis.client.Service;  
import org.apache.axis.client.Call;  
import javax.xml.namespace.QName;  
import javax.xml.rpc.ParameterMode;  
import javax.xml.rpc.ServiceException;  

class Test {

public static void main(String[] args) {

       String endpoint="发布的地址";  
       Call call;   
       Object res = "";  
       Service service = new Service();  
       try {  
          call = (Call)service.createCall();  
          call.setTargetEndpointAddress(new java.net.URL(endpoint));  
          call.setOperationName(new QName("名字","方法名"));  //发布的方法名  
          //三个参数,主要要和net接口中的名称一致,类型尽量用String  
          call.addParameter("参数1", org.apache.axis.encoding.XMLType.XSD_STRING,ParameterMode.IN);  
          call.addParameter("参数2", org.apache.axis.encoding.XMLType.XSD_STRING,ParameterMode.IN);  
          call.addParameter("参数3", org.apache.axis.encoding.XMLType.XSD_STRING,ParameterMode.IN);  
          //... 

          call.setReturnType(org.apache.axis.encoding.XMLType.XSD_STRING);  
          call.setUseSOAPAction(true);  
         //这里注意有方法名,已经引用的地址。从net接口中找  
           call.setSOAPActionURI("发布地址/方法");  //
           res =call.invoke(new Object[]{参数1,参数2,参数3});  
           //返回值String
     } catch (ServiceException e) {  
          e.printStackTrace();  
      } catch (MalformedURLException e) {  
          e.printStackTrace();  
       } catch (RemoteException e) {  
         e.printStackTrace();  
       }catch (Exception e) {  
         e.printStackTrace();  
      }  
     finally {  
      }  
}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值