Return to Snippet

Revision: 25457
at March 31, 2010 06:05 by alejandrosuch


Initial Code
System.setProperty("javax.net.debug", "ssl");
System.setProperty("javax.net.ssl.trustStore", RUTA_TRUSTSTORE);
System.setProperty("javax.net.ssl.trustStorePassword", PASS_TRUSTSTORE);
System.setProperty("javax.net.ssl.keyStoreType", KEYSTORE_TYPE);
					
org.apache.axis.client.Service service = new Service();
org.apache.axis.client.Call call = (Call) service.createCall();
call.setTargetEndpointAddress(new java.net.URL(ENDPOINT));
call.setOperationName(OPERATION_NAME);
String ret = (String) call.invoke(new Object[] { PARAMETER });

Initial URL


Initial Description


Initial Title
Axis call over SSL

Initial Tags
java

Initial Language
Java