首页 > 代码库 > webservice客户端工具
webservice客户端工具
public static Object invokeWebService(String namespaces,String url, String method, Object[] params, Object[] paramNames) { Object result = null; try { Service service = new Service(); Call call = (Call) service.createCall(); call.setOperationName(new QName(namespaces, method)); call.setTargetEndpointAddress(new java.net.URL(url)); if (paramNames != null && paramNames.length > 0) { for (int i=0; i<paramNames.length; i++) { String qName = paramNames[i].toString(); call.addParameter(qName , org.apache.axis.encoding.XMLType.XSD_STRING, javax.xml.rpc.ParameterMode.IN); } } call.setReturnType(org.apache.axis.encoding.XMLType.XSD_STRING); call.setUseSOAPAction(true); call.setSOAPActionURI(url); //System.out.println("开始调用接口"); result = call.invoke(params); //System.out.println("接口返回信息:"+result); } catch (Exception e) { e.printStackTrace(); //System.out.println("*****[" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()) + "][" + SendMsgClientService.class.getCanonicalName() + ".invokeWebService.RemoteException] 政务总线调用 AxisWebService 异常*****"); } return result; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。