proxy « http « Java Network Q&A

Home
Java Network Q&A
1.API
2.bluetooth
3.Client
4.connection
5.Cookie
6.Development
7.Email
8.File
9.ftp
10.http
11.HttpClient
12.https
13.ip
14.Network
15.OS
16.RMI
17.Security
18.Server
19.Socket
20.tcp
21.UDP
22.url
Java Network Q&A » http » proxy 

1. Manipulating content of pages that pass through an HTTP proxy (and calling Java)    stackoverflow.com

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 ...

2. How to get the system HTTP proxy configuration in Java    stackoverflow.com

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 ...

3. write HTTP Proxy in Java    stackoverflow.com

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 ...

4. Java HTTP Proxy    stackoverflow.com

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 ...

5. How do I configure apache httpcore 4 to use a proxy?    stackoverflow.com

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 ...

6. Authenticated http proxy with Java    stackoverflow.com

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 ...

7. Connecting with different Proxies to specific addresses    stackoverflow.com


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 ...

8. Java app behind proxy to use http_proxy variable in linux    stackoverflow.com

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 ...

9. Mina - HTTP Proxy – what is AbstractHttpLogicHandler for?    stackoverflow.com

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.

  • How do ...

10. Using HTTP proxies as SOCKS in java    stackoverflow.com

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 ...

11. Simple Java HTTP-Proxy with Sockets gets stuck without error message    stackoverflow.com

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 ...

12. Can I set the proxy on the command line when using org.apache.commons.httpclient?    stackoverflow.com

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 ...

13. How to send raw http requests in Java through proxy    stackoverflow.com

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 ...

14. Java Http Proxy    stackoverflow.com

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 ...

15. How to set http proxy in JML Messenger Library    stackoverflow.com

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 =/

16. How to use SOCKS in Java?    stackoverflow.com

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

        SocketAddress proxyAddr = new InetSocketAddress("1.1.1.1", 12345);
       ...

17. Setting proxies in HtmlUnit    stackoverflow.com

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 ...

18. "Proper" way to (web) proxy in Java    stackoverflow.com

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 ...

19. How to set HTTP proxy in ChromeDriver of Selenium 2?    stackoverflow.com

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 ...

20. Mina - HTTP Proxy – Sample    stackoverflow.com

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 ...

21. Can not tunnel through proxy    stackoverflow.com

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 ...

22. java http proxy setting is cached until JVM restart    stackoverflow.com

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());
 ...

23. Howto allow java net access solely through HTTP proxy?    coderanch.com

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 ...

24. HTTP Proxy tutorial    coderanch.com

25. Odd http proxy configuration    coderanch.com

26. HTTP proxy with cache in java    coderanch.com

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 ...

27. HTTP Intercepting Proxy    forums.oracle.com

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 ...

28. HTTP Proxy, doesn't get anything back    forums.oracle.com

29. Java Proxy for Http request    forums.oracle.com

30. Question about http proxies    forums.oracle.com

31. how to set proxy http and socks    forums.oracle.com

"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 ...

32. Java proxy - http.nonProxyHosts issue    forums.oracle.com

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 ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.