[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
|
[news.eclipse.webtools] Re: testing webservice over SSL
|
- From: Artur Brinkmann <arbitrary77@xxxxxxx>
- Date: Wed, 07 Dec 2005 09:47:50 +0100
- Newsgroups: eclipse.webtools
- Organization: EclipseCorner
- User-agent: Thunderbird 1.5 (Windows/20051025)
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")