Já procurei no google e não consegui encontrar uma resposta pq acontece esse problema.
A aplicação é bem simples
...
URL url = new URL("https://xxxx");
URLConnection connection = url.openConnection();
HttpURLConnection httpConn = (HttpURLConnection) connection;
...
ao tentar acessar https do cliente está gerando o erro do tópico.
E ao tentar acessar via HttpClient
...
HttpClient client = new HttpClient();
HttpMethod method = new GetMethod("https://xxxx");
....
A exception é a seguinte:
org.apache.commons.httpclient.NoHttpResponseException: The server xxxxxx failed to respond
O servidor https, responde ao tentar acesso via:
telnet xxxx xxx
Alguém tem alguma idéia?
Obrigado