[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.webtools] Re: testing webservice over SSL

I am thinking there should be a way in eclipse to be able to accept the ssl certificate sent down by the server hosting the web service. I couldnt find any way of doing this.

From the exception you're getting, it looks like you should import your server certificate into the JRE's trusted certificate keystore.

1. go to JAVA_HOME\jre\lib\security 2. make a backup copy of the cacerts file 3. import your public server certificate like this: keytool -import -keystore cacerts -alias myserver -file server.crt (keystore password is "changeit")