프 록 시 를 통 해 WebService 에 접근
5531 단어 webservice
( )
public String getService(String methodName, String xml) {
try {
String endpointURL = "http://219.136.207.188/mobtongbao/services/UmpsToGmccWS";
AxisProperties.setProperty("http.proxyHost", "10.243.184.17"); // IP
AxisProperties.setProperty("http.proxyPort", "8081"); //
AxisProperties.setProperty("http.proxyUser", "dwyaoyongsheng"); //
AxisProperties.setProperty("http.proxyPassword", "yys963"); //
Service service = new Service();
Call call = (Call) service.createCall();
call.setTargetEndpointAddress(endpointURL);
call.addParameter("test", XMLType.XSD_STRING, ParameterMode.IN);
call.setOperationName(methodName);
call.setReturnType(org.apache.axis.encoding.XMLType.XSD_STRING);
String ret = (String) call.invoke(new Object[] { new String(xml) });
return ret;
} catch (Exception e) {
return "";
}
}
( )
proxyFalg=getinfo.getNetProxyProperty("proxyFalg");
// try...cache
URL url = new URL( "http://192.168.80.7:8080/DBJailServer/services/ReadClient");
if(proxyFalg.equals("1")){
//
SocketAddress add = new InetSocketAddress("192.168.80.4",
808);
// webservices
AxisProperties.setProperty("http.proxyHost","168.168.80.4");
AxisProperties.setProperty("http.proxyPort","808");
AxisProperties.setProperty("http.proxyUser","");
AxisProperties.setProperty("http.proxyPassword","");
Proxy p=null;
if(getinfo.getNetProxyProperty("proxyType").equals("sock5")){
p= new Proxy(Proxy.Type.SOCKS , add);
}
else
{
p = new Proxy(Proxy.Type.HTTP , add);
}
//
HttpURLConnection conn = (HttpURLConnection)url.openConnection(p);
conn.connect();
}
Service service = new Service();
Call call = (Call) service.createCall();
call.setTargetEndpointAddress(url);
call.setOperationName( new QName("ReadClient", name) );
call.addParameter( "op1", XMLType.XSD_STRING, ParameterMode.IN );
call.addParameter( "op2", XMLType.XSD_STRING, ParameterMode.IN );
call.addParameter( "op3", XMLType.XSD_INT, ParameterMode.IN );
call.addParameter( "op4", XMLType.XSD_INT, ParameterMode.IN );
call.setReturnType(XMLType.XSD_STRING );
result = (String)call.invoke(new Object[]{str,key,length,count});//
System.out.println(result);
( )
/** 。
axis webservice 。 :**/
AxisProperties.setProperty("http.proxyHost", ProxyServer.getValue("host"));
AxisProperties.setProperty("http.proxyPort", ProxyServer.getValue("port"));
AxisProperties.setProperty("http.proxyUser",ProxyServer.getValue("username"));
AxisProperties.setProperty("http.proxyPassword",ProxyServer.getValue("password"));
//ProxyServer 。
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
java가 클라이언트를 통해 서버 웹 서비스에 접근하는 방법본고는 자바가 클라이언트를 통해 서버 웹 서비스에 접근하는 방법을 실례로 설명한다.다음과 같이 여러분에게 참고할 수 있도록 공유합니다. 자바 관련 내용에 관심이 있는 더 많은 독자들은 본 사이트의 주제를 볼 수 있습...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.