Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any Java Proxy Server Library Available? [closed]

I'm developing a client application. The application connects through a proxy server that run at 127.0.0.1:1080

The proxy server running at 127.0.0.1:1080 will also forward the client request through a set of random proxies and return the output back to the client application.

Basically the client makes request through a proxy server but the proxy server forward request through a set of random proxies.

Is there a Java library that can help?

like image 259
John Avatar asked Feb 12 '13 19:02

John


People also ask

What are proxy servers in Java?

Proxy servers act as intermediaries between client applications and other servers. In an enterprise setting, we often use them to help provide control over the content that users consume, usually across network boundaries. In this tutorial, we'll look at how to connect through proxy servers in Java.

What is a proxy server library?

A proxy server is a service that libraries use to authenticate their users to provide access to many online databases and publisher websites.


2 Answers

I did a quick search, and found the following

Java HTTP Proxy Library - http://sourceforge.net/projects/wpg-proxy/

JAVA SOCKS - http://jsocks.sourceforge.net/

Google Data API - https://developers.google.com/gdata/articles/proxy_setup

like image 167
PeakGen Avatar answered Oct 31 '22 10:10

PeakGen


Apache HTTPClient library supports proxies.

like image 33
anoopelias Avatar answered Oct 31 '22 12:10

anoopelias