3
It’s been a while since I’ve been able to connect Netbeans to SVN here at my workplace (I’ve been using Netbeans SVN for years and never had a problem).
By entering the SVN server URL, my user and password when Netbeans attempts to connect returns the following error:
org.apache.subversion.javahl.ClientException:
E175002: Connection has been shutdown:
javax.net.ssl.SSLProtocolException:
handshake alert: unrecognized_name
E175002: OPTIONS request failed on '/pd'
Some details about:
- I’m using the Svnkit that according to Netbeans itself does not require any prerequisite as everything is already embedded in the IDE;
- The SVN connection protocol I am using is HTTPS;
- I’m in version 8.1 of Netbeans and I’ve already tested it on 8.0;
- In eclipse the connection to the SVN with the same information works;
- In the browser access the URL and also works with my credentials;
- I’m on a linux.
Since then I have been looking for the solution in several places but without success.
Who has an idea of what it might be?
Does your business use a proxy? Have you seen if netbeans is configured with it? Is it just your machine that has this problem? Check these points..
– Alberto
Opa @Alberto, come on: 1-No proxys; 2-tried on another machine and the same error.
– Flavio Andrade
You tried to access through the browser and it worked?
– Napoleão Menezes
Yes, the browser works.
– Flavio Andrade
I was able to discover that it was an SVN certificate problem here at my company. The certificate here will be updated and the problem will be solved. However as a temporary solution it is possible to add the boot parameter
Djsse.enableSNIExtension=false
that works. To help other people who might have the same problem I’ll put the more detailed answer below. Thank you all for your answers.– Flavio Andrade