猿问

初学ICE,该如何在ICE grid中的JAVA写的SERVICE之间调用对方提供的服务?

如题所诉!
当然可以相互模拟客户端去调用对方提供的服务,但这个应该不是正确的方法,望有前辈赐教

侃侃尔雅
浏览 524回答 1
1回答

守着星空守着你

你在代码里面post对调用接口不就行了吗?如果传参数的话也可以加载到post里面啊    HttpPost post = new HttpPost();    post.setURI(new URI(url));    StringEntity entiy = new StringEntity(data);    post.setEntity(entiy);    post.setHeader("Content-Type","text/html; charset=UTF-8");    post.setHeader("Accept-Encoding", "deflate");    CloseableHttpResponse response = client.execute(post);
随时随地看视频慕课网APP

相关分类

Java
我要回答