I need to make a web proxy that adds annotations to the HTML of web pages that pass through.
I'm hoping some decent software exists that can handle the HTTP proxying part ... |
Is it possible to get the system proxy configuration in Java?
In the Java Control Panel, you can set a proxy configuration. How can I access to that proxy configuration in order ... |
How would I go about creating an HTTP Proxy in Java for use recording and playing back HTTP Sessions? This would be for entirely legitimate performance monitoring purposes.
Are there any ... |
I am working on a project where we'd like to pull content from one of our legacy applications, BUT, we'd like to avoid showing the "waiting for www.somehostname.com/someproduct/..." to the user.
We ... |
I'm trying to use the latest (4.0.1) Apache http core components library. However, my web browser goes through a proxy - suppose it is myproxy.com:9191. Could someone provide some sample code ... |
how can I configure the username and password to authenticate a http proxy server using java?
I just found the following configuration parameters:
http.proxyHost=<proxyAddress>
http.proxyPort=<proxyPort>
https.proxyHost=<proxyAddress>
https.proxyPort=<proxyPort>
But, my proxy server requires authentication. How can I configure ... |
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 ...
|
|
I am thinking of a simple Java appplication (command line) that connects to the internet to download a XML file, the problem is that my Ubuntu is using a proxy to ... |
I am currently working on building a simple HTTP proxy using Apache Mina, in particular org.apache.mina.proxy, and I have a few questions about how to use some of the components.
|
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
... |
I'm trying to get a simple multithreaded proxy to work in Java. However I don't manage to get the webpage show up in my browser, after the first GET request and ... |
If an application uses the java.net.* routines, I can set a proxy when invoking the application like this:
java -Dhttp.proxyHost=proxy.server.com -Dhttp.proxyPort=8000 <whatever-the-app-is>
However, I have an application (which I can't change) using org.apache.commons.httpclient ... |
Basically I'm trying to write a proxy for http requests. I've been able to set up the server fairly easily, and after directing my browser to the proxy instead of the ... |
I'm writing a small proxy in Java that basically picks out 2 specific files and does some extra processing on them. One URL it just grabs some info out of the ... |
I'm developing a simple msn client using java, but i don't know how to set the http proxy parameters using the JML library.
Apparently it isn't native on the library =/
|
I use 100% working socks and I can't connect through my application.
SocketAddress proxyAddr = new InetSocketAddress("1.1.1.1", 12345);
... |
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 ... |
So far my research has found four distinct ways to make Java use proxies:
- Command line parameters such as -Dhttp.proxyHost
- System properties such as System.getProperties().put("http.proxyHost","110.11.12.30");
- URLConnection(Proxy proxy)
- urlConnection.setRequestProperty(...
Which one is the proper/recommended way to specify ... |
how do I set a HTTP proxy for Selenium 2's ChromeDriver in Java? I know how to do it for the FirefoxDriver using a FirefoxProfile, but there doesn't seem to be ... |
I want to made a simple HTTP proxy with Mina, I saw that there are many classes to handle that, but I'm new in Mina and I don't see how to ... |
I recently have been trying to create an account checker for a game.
The big problem is that proxies are not working properly.
I have written the following to make it connect, POST ... |
I'm trying to change the proxy setting for JVM in my User Interface (Eclipse Application running on Java 1.6.0.23)
if (isUseProxy()) {
System.setProperty("java.net.useSystemProxies", "true");
System.setProperty("http.proxyHost", getProxyHost());
...
|
Hello, I must refactor an application which uses http client to look for updates on the internet. Problem is, some users don't access the internet directly but through a http proxy e.g. proxserver.com:8118. I have a windows box with normal internet access. I thought ok, just use Zone Alarm to deny the java.exe access to the internet while allowing access to ... |
|
|
Howdy folks, I was hoping to get some advice regarding implementing a cache to go with the proxy server I am currently working on. I'm a student and am currently working on it as part of my final year project. The proxy itself is able to extract target host, url etc from the http request and can from there forward details ... |
I'm trying to find a HTTP proxy component that I can adapt so that I can programatically inspect and modify certain requests and responses. I hasten to add that it is not for any nefarious purposes but rather as a neat way to automate a process that is currently conducted manually without having to modify the backend system. I tried this ... |
|
|
|
"you have to explain what the problem is." may be nobody nows how to use this code URLEncoder.encode String data = URLEncoder.encode("formName", "UTF-8") + "=" + URLEncoder.encode("formName is true", "UTF-8"); the use of this code is to submit post into webserver then it is working; is there any class that can be use to set the http server and socks server ... |
I believe ("192.168.8.100", 808 ) these are your proxy setting. the filter for non authorised sites are applied on this server, so no way it can be cracked through your program. And to acces/open any site the request goes via this server, and the site which are not blocked are getting openned, because it they are not restricted. But the sites ... |