I use 100% working socks and I can't connect through my application.

        SocketAddress proxyAddr = new InetSocketAddress("1.1.1.1", 12345);
        Proxy pr = new Proxy(Proxy.Type.SOCKS, proxyAddr);

    try
    {
        HttpURLConnection con = (HttpURLConnection) new URL(url).openConnection(pr);
        con.setConnectTimeout(proxyTimeout * 1000);
        con.setReadTimeout(proxyTimeout * 1000);
        con.connect();

        System.out.println(con.usingProxy());
    }
    catch(IOException ex)
    {
        Logger.getLogger(Enter.class.getName()).log(Level.SEVERE, null, ex);
    }

So what am I doing wrong? If I'll use HTTP with some HTTP proxy all is working but not with SOCKS.

link|improve this question

2  
What error message do you get? How does this code fail to work? Also, are you using a SOCKS4 or SOCKS5 proxy – Daniel Martin Apr 18 '11 at 0:32
I tried to use both of SOCKS4 and SOCKS5. This is the error message: pastebin.com/xFB2qZQs But! Socks is 100% woking (socks5 here is). – purple Apr 18 '11 at 13:03
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.