java web service实例

本文介绍了一个使用Java实现的Web服务客户端示例,通过Apache Axis库调用远程Web服务。示例展示了如何设置服务端点地址、定义操作名称、添加参数以及设置返回类型等关键步骤。

摘要生成于 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="123";
          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 {  
      }  
}


}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值