axis1.4生成代码调用Webservice(备忘)


备忘。

生成代码结构:




调用代码:

	/**
	 * 通过WS请求获取文件路径
	 * @return
	 * @throws MalformedURLException
	 * @throws RemoteException
	 */
	public String getWsResult(String requestXml,String urlStr) throws MalformedURLException, RemoteException{
		
		URL url = new URL(
				 urlStr);
		IQueryService_ServiceLocator is = new IQueryService_ServiceLocator();
		IQueryServiceSoapBindingStub stub = new IQueryServiceSoapBindingStub(
				url, is);
		
		String rspXml=stub
				.queryBusiness(requestXml.toString());
		System.out
		.println(rspXml);
	
		return rspXml;
	}



你可能感兴趣的:(工作心得)