Tagged Questions
4
votes
5answers
460 views
How to build proxy gateway?
I have great IM that to work needs proxy of type (SOCKS4,SOCKS4A,SOCKS5), However my company is using Http Proxy.
I would like to build my own proxy that will just forward data to my company's ...
3
votes
2answers
223 views
Socksifying a Java ServerSocket - how to approach
I would like to have a Java program running on network A have a ServerSocket living on another network B through a proxy. I have played with a SOCKS5 proxy (which works) but it appears that all the ...
3
votes
2answers
482 views
socks in java (opening via socks)
how do i add SOCKS support to my application? and where can i get the libs?
3
votes
2answers
2k views
Java Proxy client class that supports authentication
I'm looking for a java socks Proxy client class that supports authetication, any suggestions? The java.net.Proxy does not support authentication.
Edit:
I can't seem to find a way that would attach ...
2
votes
0answers
130 views
Networking properties set for a SOCKS proxy & specific Proxy.NO_PROXY
A simple test to force direct connection to toto.localhost.lan (that is served on my local machine) when system properties are configured to use a SOCKS proxy.
package net.wetope.launcher.tests;
...
2
votes
2answers
413 views
How can I use SOCKS with HtmlUnit?
Is it possible to use HtmlUnit through SOCKS proxy? Could anyone please provide a code sample?
====
So I've dug through webclient sources, here's the best way I can think of:
Subclass ...
2
votes
2answers
104 views
Java API: Connect using proxies on different threads
I would like to use different proxies instead of just one. Currently the ProxySelector sets a system wide proxy for all URLConnections. Does anyone know of a library that supports non system-wide ...
2
votes
1answer
3k views
Connecting with different Proxies to specific addresses
I am developing a Java webservice application (with JAX-WS) that has to use two different proxies to establish separated connections to internet and an intranet. As solution I tried to write my own ...
1
vote
0answers
72 views
java.net.SocketException: Connection timed out:could be due to invalid address on IBM AIX
I am facing one weird issue on IBM AIX machine. It's working fine on windows and other unix box. The issue is:
Exception in thread "main" java.net.SocketException: Connection timed out:could be due ...
1
vote
1answer
122 views
Java Mail: How to use SOCKS for IMAP processing without global sytem properties?
I have the problem described in this question
JavaMail: How to use different SOCKS5 for different threads?
..but there is no really answer to this question :-(
additionally I want to retrieve mails ...
1
vote
1answer
121 views
JavaMail: How to use different SOCKS5 for different threads?
I wrote multithreading application which connects to some email accounts from database per thread.
I know that JavaMail have no any options to use SOCKS5 for connection so I decided to use it via ...
1
vote
0answers
199 views
How to use SOCKS in Java?
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, ...
1
vote
2answers
199 views
Java Socks5 External Application
I have connected to a socks5 server in my java application, and now I want to launch an external application and have all of its connections run through the socks5 server. The external application ...
1
vote
1answer
1k views
Java SOCKS proxy
Does socksProxyHost property requires an IP address
System.setProperty("socksProxyHost", preferences.getProxyHost() );
setting it like following, If i provide 127.0.0.1 i get connected to the proxy ...
0
votes
0answers
56 views
Java Socks5 implementation
I need to add the Socks5 protocol to a finished HTTP client/server which uses non-blocking sockets with Selector. I was thinking of creating own classes with the following parents: SocketChannel, ...
0
votes
1answer
61 views
How to use socks in HtmlUnit
I've googled for three hours and found nothing helpful.
I have WebClient which connects to some sites through socks 5 which are not require to use login and password to work through them:
WebClient ...
0
votes
1answer
123 views
Setting proxies in HtmlUnit
I'm using proxies with htmlunit, my proxy list contain mixture of both http and socks, I dont know if the next selected proxy to be passed to htmlunit is type http or socks, will htmlunit ...
0
votes
1answer
117 views
How do I find out if the proxy speaks Socks v4 or v5?
Im trying to make a program that connects to a proxy but i have a little problem, I have socksv4 and v5 protocal written up but how do i know which version the proxy is?
The reason I'm not using the ...
0
votes
2answers
125 views
Checking the type of a web proxy
How do I determine whether a web proxy IP is of type HTTP or SOCKS4/5 with java?
Thank you.
0
votes
2answers
239 views
How to use URLConnection Timeout
I am trying to sort through a list of SOCKS proxies, and figure out which ones have a connect and read time of less than 1000ms, here is my code
for(Proxy p : proxies) {
try {
...
0
votes
2answers
261 views
URLConnection(Proxy proxy) ignoring the set proxy
I'm trying to test a SOCKS proxy that's under load from multiple machines. The outline of my code is something along the lines of
Connect directly to the server with one client, download the test ...
0
votes
1answer
445 views
SOCKS5 Proxy using SSLSocket
I have a client/server application that remotely connects to a server via Java's SSLSocket.
I'm trying to implement an optional mode that enables connections via an authenticated SOCKS v5 proxy.
I ...
0
votes
0answers
368 views
socket connection not properly trying each proxy returned from ProxySelector.select()
Experimentally, java.net.URL cycles through the list of proxies returned by java.net.ProxySelector.select(URI) until if finds one that works. However, once java.net.Socket encounters a broken proxy it ...
0
votes
1answer
434 views
Connecting to a SOCKS5 proxy to do FTP/S in Java
I'm writing a job that will connect to a client's FTP/S server over my SOCKS5 proxy and I'm utilizing the Apache Commons Net package. The issue is that my SOCKS proxy is configured to not require ...
0
votes
3answers
200 views
Socket/Proxy problem in java
I have a socket connecting to a proxy then to a remote server i specify. However i want multiple connections to the remove server from the proxy. So i want to create 4 sockets to the same proxy and ...
0
votes
4answers
150 views
Using HTTP proxies as SOCKS in java
Is there any way to use an HTTP proxy as a SOCKS proxy?
i want to use it as a socket to connect with an endpoint and send packets of information
0
votes
1answer
224 views
How to use URLConnection through a SOCKS proxy?
How can I set the SOCKS proxy for a URLConnection given by (new URL(url)).openConnection()?
Different proxies are needed on a per-connection basis, so please don't suggest setting system properties.
0
votes
1answer
143 views
Why doesn't Java support socks4?
Take this code into consideration:
Proxy p = new Proxy(Type.SOCKS, new InetSocketAddress(proxyURL, port));
try {
long time = System.currentTimeMillis();
URLConnection urlConn ...