当前位置: 技术问答>java相关
两应用服务器的数据传递
来源: 互联网 发布时间:2015-11-21
本文导语: 我在传递数据的时候,客户端的数据传递到win的websphere,在通过websphere提交给linux的weblogic,请问如何实现 因为我们使用的pki验证只支持linux下的weblogic,当然我们的系统是在win的websphere中,所以想通过websphere将pki处理...
我在传递数据的时候,客户端的数据传递到win的websphere,在通过websphere提交给linux的weblogic,请问如何实现
因为我们使用的pki验证只支持linux下的weblogic,当然我们的系统是在win的websphere中,所以想通过websphere将pki处理提交给linux的weblogic处理在传递过来·!
因为我们使用的pki验证只支持linux下的weblogic,当然我们的系统是在win的websphere中,所以想通过websphere将pki处理提交给linux的weblogic处理在传递过来·!
|
使用rmi,不同系统间的交互
|
/*最好用sevelet来实现*/
String example = "http://127.0.0.1:8080/webapp/test";
URL url = new URL(/tech-qa-java/example/index.html);
URLConnection urlConn = url.openConnection();
urlConn.setRequestProperty("Content-Type","text/xml");
urlConn.setDoOutput(true);
urlConn.setDoInput(true);
OutputStream os = urlConn.getOutputStream();
os.write("我要传送的数据");
os.flush();
os.close();
//Receive result
InputStream is = urlConn.getInputStream();
String example = "http://127.0.0.1:8080/webapp/test";
URL url = new URL(/tech-qa-java/example/index.html);
URLConnection urlConn = url.openConnection();
urlConn.setRequestProperty("Content-Type","text/xml");
urlConn.setDoOutput(true);
urlConn.setDoInput(true);
OutputStream os = urlConn.getOutputStream();
os.write("我要传送的数据");
os.flush();
os.close();
//Receive result
InputStream is = urlConn.getInputStream();