我在进行Web服务调用时遇到以下异常。 这个例外是什么意思?
2015-01-19 17:01:56,549 ERROR
[org.jboss.ws.core.jaxws.SOAPFaultHelperJAXWS] (Timer-11) SOAP request
exception: java.io.IOException: Error initializing socket factory SSL
context: Cannot validate the store URL: D:/ProgramData/RTS/shared/netcore/certificates/netflower.keystore
答案 0 :(得分:1)
您似乎正在尝试通过SSL建立连接(即https),并且服务器无法加载密钥库文件,因为:a)文件路径无效; b)文件受密码保护,密码无效或未提供密码; c)文件已损坏。
如果文件确实存在,您可以使用以下命令验证它是否可读:$JAVA_HOME\bin\keytool -list -v -keystore D:/ProgramData/RTS/shared/netcore/certificates/netflower.keystore