I want to connect the Eclipse plug-in to the HTTPS URL, but there is a problem because the user will need to accept the certificate. Of course, there are some tutorials on how to do this in simple Java , but it can be difficult to do inside the Eclipse plug-in, and I think I invented the wheel this way.
Because Eclipse has built-in tools for connecting to sites with different network protocols. An example is the action "Install new software ...". The toolkit even has a page that lists HTTPS separately.
According to the Eclipse Help , KeyStore is used as a repository for certificates used to make trust decisions [...] when creating an SSL connection. "But I could not figure out how to use it.
So my question is: how can I use the Eclipse assembly to connect to my HTTPS site?
source
share