先决条件
问题
我正在尝试使用Apache Axis 1访问远程rpc / encoded werbservice。
由于web服务的rpc / encoded风格,因此必须使用Apache Axis 1.
web服务受my_keystore.p12中包含的客户端证书保护。 与远程服务器进行双向SSL握手需要客户端证书(我的应用是客户端)--->客户端检查它是否与正确的服务器通信,服务器检查它是否与正确的客户端通信。 文件my_keystore.p12包含在Apache Tomcat的类路径中。
我使用以下单元测试来测试连接:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:spring-test-config.xml")
public class MyClientTest {
private static MyWebservices webservices;
@BeforeClass
public static void initializeWebservices() throws IllegalStateException {
if (webservices == null ) {
URL servicesUrl;
try {
servicesUrl = new URL("https://examplehost.com/abcd/abcdefg/rpcrouter");
AxisProperties.getProperties().put("proxySet", "true");
AxisProperties.setProperty("http.proxyHost", "11.222.333.44");
AxisProperties.setProperty("http.proxyPort", "80");
AxisProperties.setProperty("keystore", "my_keystore.p12");
AxisProperties.setProperty("keystorePassword", "abc");
AxisProperties.setProperty("keystoreType", "pkcs12");
} catch (MalformedURLException e) {
throw new IllegalStateException(e.getMessage());
}
try {
webservices = new MyWebservicesServiceLocator().getrpcrouter(servicesUrl);
} catch (ServiceException e) {
throw new IllegalStateException(e.getMessage());
}
}
}
@Test
public void testConnection() throws Exception {
webservices.doSomething("2");
}
}
发生以下异常:
javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure
at org.apache.axis.AxisFault.makeFault(AxisFault.java:101)
at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:154)
at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
at org.apache.axis.client.Call.invoke(Call.java:2767)
at org.apache.axis.client.Call.invoke(Call.java:2443)
at org.apache.axis.client.Call.invoke(Call.java:2366)
at org.apache.axis.client.Call.invoke(Call.java:1812)
我认为问题是密钥库不是由轴读取的。 是否可以将客户端证书与Apache Axis 1一起使用?
提前致谢,
最高
答案 0 :(得分:2)
解决方案是将JVM-Paramters用于信任库和密钥库。
java
-Djavax.net.ssl.trustStore=/some/path/myTruststore.jks
-Djavax.net.ssl.trustStorePassword=abc
-Djavax.net.ssl.keyStore=/some/path/myKeystore.p12
-Djavax.net.ssl.keyStorePassword=defg
-Djavax.net.ssl.keyStoreType=PKCS12