Reputation: 766
I get the following exception where I make a webservice call. What is the meaning of this exception?
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
Upvotes: 0
Views: 96
Reputation: 418
It seems that you're trying to make a connection over SSL (i.e. https) and the server could not load the keystore file because: a) the file path is invalid; b) the file is password-protected and an invalid password or no password was supplied; c) file is corrupted.
If the file is really there you can use the following command to verify if it's readable: $JAVA_HOME\bin\keytool -list -v -keystore D:/ProgramData/RTS/shared/netcore/certificates/netflower.keystore
Upvotes: 1