Não foi possível fazer o túnel através do proxy. O proxy retorna o serviço HTTP / 1.1 503 indisponível

Quero me conectar a um servidor da intranet, a URL que preciso conectar é:

URLConnection conn = new URL("https://mywebsite").openConnection();

Quando chego ao método de conexão, chamo através de: `

conn.connect();

Estou recebendo a seguinte exceção:

java.io.IOException: Unable to tunnel through proxy. Proxy rerurns HTTP/1.1 503 Service Unavailable"
at sun.net.www.protocol.httpHttpURLConnection.doTunneling

Como posso resolver essa exceção, tentei muitas soluções publicadas na rede, mas sem sorte.

questionAnswers(2)

yourAnswerToTheQuestion