proxy

creating a proxy site

Youtube is banned in turkey. So i want allow people to see youtube videos from my site. Basically my site will act as a proxy for users to get access to youtube videos. I also want to provide user to search youtube vidos on my site. And allow the user to play and download the videos. I will prefed do the above thing in j2ee/jsp/php. C...

HTTP proxy connection sharing

I am attempting to implement an HTTP tunnel using similar techniques to those employed by web browsers to simulate a full-duplex connection, in Java using the Netty framework. I wish to implement this in such a way that it will work in the presence of real world HTTP proxies. I am attempting to do this without using a servlet container, ...

jQuery - how can I set a proxy?

Is this possible? Looking for a way to set a proxy setting view web page. Can I embed it or run some JavaScript, etc... ...

how to send request through web service proxy as a single packet (don't chunk)

Hello, I'm trying to utilize a web service through C#. In the web service documentation it states that the web service only accepts requests as a single packet/stream and not multiple packets. Does anyone know how to change this setting when accessing the web service through a web reference in Visual Studio? I am getting a SOAPExceptio...

Apache 2.2 reverse proxy not working as expected?

I’ve configure my apache accordingly from what I’ve read in the apache 2.2 manual. Taking the following as an example of my configuration. ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPass "/home/kwokfu/sandbox" "http://localhost:8080/sandbox" ProxyPassReverse "/home/kwokfu/sandbox" "http://localhost:8...

how a proxy server can be local ?

hello all , i have a server and i setup vpn server on it, in our country some websites are blocked. but with this proxy server users can not surf websites because the websites URL are still blocked and they see block page , programs like Freegate , Gpass , how can make it for us to surf websites ? it means what happens after connecting...

proxy server in java

i have the follwoing code of proxy server. IS if the right approach? Will this be able to handel load/trafffic if deployed comerially?? package proxyserver; import com.sun.corba.se.spi.activation.Server; import java.net.* ; import java.io.* ; import java.lang.* ; import java.util.* ; /** * * @author user */ public class Main { ...

SVNAnt Through Proxy

I just installed Ant for the first time today and have been playing with it. I am behind a proxy and I feel this is the source of my problems. I have managed to successfully create an ant build file which gets a web page over HTTP through a proxy without any problems. However, when I try to use SVNAnt to export a repository over HTTP thr...

apache camel Client Using Producer Template versus Client Using Spring Remoting PROXY

Hello! I'm trying the Apache Camel Tutorial JmsRemoting. Following the examples, the proxy client works fine to template and proxy clients configuration. But, when i change the example in order to use a JAXB transportation object xml, configuring routes with marshal and unmarshal dataformats, the situation become different. 1) When i...

J2SE Proxy Authentication

We use 2 SIMILAR Microsoft ISA Proxy Server 2003 to connect to internet. Each Proxy has different Login style, as below : Server-1 : nt-domain\alan Server-2 : [email protected] Logon in IE, Firefox and my Phonecell via Wifi all are fine. But, a problem appears when we run a java application J2SE Ver 4, 5 and 6, where it needs internet a...

Python http proxy library based on libevent or comparable technology?

I'm looking to build an intelligent reverse http proxy capable of routing, header examination and enrichment (eg. examine and build cookies and http headers), and various other fanciness. For a general idea of what I'm looking to build see Ruby Proxies for Scale and Monitoring - except in Python. I realize that Twisted is an exceedingl...

seting proxy in javascript

the following is the code for seting proxy on server side. # System.setProperty("http.proxyHost", "220.134.110.231"); # System.setProperty("http.proxyPort", "80"); I want to achieve the same thing on clint side. Means the people visit my webpage (it will contain some javascript/applet). so my applet /javascript code should do this ...

Finding IP address of client connected through a proxy

Hi guys, Is there a way to collect the IP address of a client connected to your website through a proxy server? The entire setup is an internal LAN and through the sysadmin, I have control over the proxy machine as well. I am using PHP5 for the website server side. I tried $_SERVER['REMOTE_ADDR'] in PHP but this variable just stores t...

NTLM proxy without password?

I work on a corporate windows network (which I log in to) with a HTTP proxy. When I use Internet Explorer it magically uses the proxy without me needing to type in my password. Certain other programs seem to manage this too, like JavaWebStart has a "use browser settings" option. However when I use scripts/programs like curl or wget to f...

Detect bowser proxy setting enabled or not using Javascript

We have a coupon download functionality in our website. Users should download a plugin which allows them to then download the actual coupon. Plugin download is not working in IE6 with proxy settings. It is working in all other browsers even with proxy setting. Now, my client want to display some message to the user if the user is usin...

How can I make a VERY simple web proxy using ASP.NET?

I'm about to launch a site that was working well until I found the following hiccup: I can't request a Yahoo! Pipe over SSL. So the pages that require SSL are now missing a piece of their functionality unless I figure out a way around this; obviously, this could be done if I use an SSL-hosted page on my app to request the Yahoo! pipe f...

Easy Non-GPL PHP Proxy

I'm trying to find a proxy PHP script that I can use to display a website, but also allow users to click on links continuing to use the proxy. Almost every one I have found that works is covered by the GPL license. I've looked into creating my own proxy, however I can't find a way to have the links on the page continue to use the proxy,...

Silverlight WCF Proxy async only?

Why do the Silerlight-generated WCF proxy class(es) offer only async calls? There are cases where I don't really need the async pattern (for example in a BackgroundWorker) EDIT : Sometimes I need to process the results of two WCF calls. It would have been much simpler if I could have waited (the business of the app allows that) for bot...

How to debug HTTP Proxy problems with artifactory?

I have an artifactory within a corporate network. I configured a http proxy for each remote repository. It doesn't work. How could I possibly find out why it doesn't work? Are there any log settings which I could tweak? Using the same proxy within Firefox works just fine. ...

proxies in python ftp application

I'm developing ftp client in python ftplib. How do i add proxies support to it (most ftp apps i seen seem to have it)? I'm especially thinking about socks proxies, but also other types... ftp, http (is it even possible to use http proxies with ftp program?) Any ideas how to do it? ...