Java调用WebService(asmx)服务接口

导入httpclient jar

		<dependency>
			<groupId>commons-httpclient</groupId>
			<artifactId>commons-httpclient</artifactId>
			<version>3.1</version>
		</dependency>

1. 利用HttpURLConnection通过soap调用接口

public static void cl6(String xml) throws IOException {
		// 服务器地址
		String urlString = "http://ws.webxml.com.cn/WebServices/MobileCodeWS.asmx";
		// 需要调用的方法
		String soapActionString = "getMobileCodeInfo";
		URL url = new URL(urlString);
		HttpURLConnection conn = (HttpURLConnection) url.openConnection();
		// 拼接soap
		String soap = xml;
		byte[] buf = soap.getBytes("UTF-8");
		// 设置报头
		conn.setRequestProperty("Content-Length", String.valueOf(buf.length));
		conn.setRequestProperty("Content-Type", "text/xml; charset=utf-8");
		conn.setRequestProperty("soapActionString", soapActionString);
		conn.setRequestMethod("POST");
		conn.setDoOutput(true);
		conn.setDoInput(true);

		OutputStream out = conn.getOutputStream();
		out.write(buf);
		out.close();
		// 获取响应状态码
		int code = conn.getResponseCode();
		StringBuffer sb = new StringBuffer();
		if (code == HttpStatus.OK.value()) {
			InputStream is = conn.getInputStream();
			byte[] b = new byte[1024];
			int len = 0;
			while ((len = is.read(b)) != -1) {
				String s = new String(b, 0, len, "utf-8");
				sb.append(s);
			}
			is.close();
		}
		System.out.println(sb);
	}

	public static void main(String args[]) throws IOException {
		
		String str = 
					"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
					+ "<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">\n"
					+ "  <soap:Body>\n" 
					+ "    <getMobileCodeInfo xmlns=\"http://WebXml.com.cn/\">\n"
					+ "      <mobileCode>18291876713</mobileCode>\n" 
					+ "      <userID></userID>\n"
					+ "    </getMobileCodeInfo>\n" 
					+ "  </soap:Body>\n" 
					+ "</soap:Envelope>";
		
		cl6(str);
	}

2. 使用HttpClient

public static void cl3() throws IOException {
		// 输入服务网址
		HttpClient client = new HttpClient();
		// HttpClient client = new HttpClient(new HttpClientParams(), new SimpleHttpConnectionManager(true));
		// GetMethod
		PostMethod post = new PostMethod("http://ws.webxml.com.cn/WebServices/MobileCodeWS.asmx/getMobileCodeInfo");
		// 设置参数
		post.setParameter("mobileCode", "18291876713");
		post.setParameter("userID", "");
		// client.setTimeout(newTimeoutInMilliseconds);

		// 执行,返回一个结果码
		int code = client.executeMethod(post);

		System.out.println("结果码:" + code);
		// 获取xml结果
		String result = post.getResponseBodyAsString();
		System.out.println("结果:" + result);
		// 释放连接
		post.releaseConnection();
		// 关闭连接
		((SimpleHttpConnectionManager) client.getHttpConnectionManager()).shutdown();
	}

猜你喜欢

转载自blog.csdn.net/yan50050/article/details/85030164