java调用WebService接口方法

本文档演示了如何使用Java的Apache Axis库调用WebService接口。通过创建Service对象,设置目标地址,定义参数和操作名,最后执行invoke方法获取响应。示例代码详细展示了调用过程。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

package cn.cehb;
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 {


/**
* @param args
*/
public static void main(String[] args) throws MalformedURLException, ServiceException, RemoteException  {


String endpoint="http://localhost/WebService.asmx";  
 
       Call call;   
       Object res = "";  
      Service service = new Service();  
       try {  
         call = (Call)service.createCall();  
         String cit_account="123";
         String cit_pwd="123";
         String cit_userkey="1234";
          call.setTargetEndpointAddress(new java.net.URL(endpoint));  
        call.setOperationName(new QName("http://WebService/","GetUserInfo"));  //发布的方法名  
          //三个参数,主要要和net接口中的名称一致,类型尽量用String  
                call.addParameter("cit_account", org.apache.axis.encoding.XMLType.XSD_STRING,ParameterMode.IN);  
           call.addParameter("cit_pwd", org.apache.axis.encoding.XMLType.XSD_STRING,ParameterMode.IN);  
          call.addParameter("cit_userkey", org.apache.axis.encoding.XMLType.XSD_STRING,ParameterMode.IN);  
             call.setReturnType(org.apache.axis.encoding.XMLType.XSD_STRING);  
        call.setUseSOAPAction(true);  
         //这里注意有方法名,已经引用的地址。从net接口中找  
            call.setSOAPActionURI("http://\WebService/GetUserInfo");  
           res =call.invoke(new Object[]{cit_account,cit_pwd,cit_userkey});  
          //返回值String  
          System.err.println("==11=>"+res);  
     } 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、付费专栏及课程。

余额充值