proxy

How do I use the trait scala.Proxy

I just found it in the API (http://www.scala-lang.org/api/current/scala/Proxy.html) and would like to see one or two examples along with an explanation what it is good for. ...

Dynamic Proxy without explicitely specifying the type in scala

is it possible to have a method that takes an arbitrary instance and returns a java.reflection.Proxy or similar that has the same type as the original argument? I guess it should look something like this: def createProxy[S](model: S)(implicit manifest: Manifest[S]): S = {...} or this def createProxy[S, T<:S](model: S)(implicit manif...

How to configure ZTE ZXVE10 W300 router as a proxy server

Hello, I need to configure my ZTE ZVE10 W300 router as a proxy server. I need the users connect to router (with real ip) and use internet through it. Is there any way to do it ? I dont want to setup web proxy server or something else behind the router, but want to do that exactly on the router. Regards, Levon ...

Work-around for aggressive proxy/cache servers causing session problems?

I have a question regarding whether incorrectly configured proxy/cache servers might be the cause of an odd problem I have seen in my web application. The application is LAMP based, and run off a single host, and the service is used from a number of different countries. Sessions are used to manage user interactions. While this applicat...

Unit-test proxy code in Java

We want to unit-test http-proxy related code. Is there a Java package which can simulate a http proxy? ...

Use server-side proxy to set expires header for static resources on another domain

I have a web app that links to several thumbnail images from another server on the same domain that I have no configuration control over. The page loads about about 2 to 2.5 mb worth of static images. I would really like to have the server owner set the expires header so the images don't re-download every single time, but unfortunately...

What is the PAC file?

I am trying to understand how a PAC file works. I have a proxy server application that I will be distributing to a few clients. The clients would have to set the proxy settings including port number on their browsers. As I understand it the PAC file should do this automatically? But my question is where should I put the PAC file? Can I ...

PHP image proxy breaks in PHP 5

I have this image proxy. It worked fine in PHP 4 but not that I have upgraded to 5 I get this error: Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when safe_mode is enabled or an open_basedir is set in /path/to/proxy.php on line 34 Here is line 34: curl_setopt($session, CURLOPT_FOLLOWLOC...

What kind of Http proxy do I need?

So, I have a website that is served by 12 separate application servers without any shared cache. We use a third party webservice to implement a particular functionality in the app. However, the 3rd party doesn't want us to be calling them a lot lest it breaks their site. Hence I am thinking of keeping some kind of a proxy in between th...

Dns.GetHostEntry behind a proxy

Hi, does anyone know how to resolve an external domain name with Dns.GetHostEntry() behind a proxy? I already tried to indicate the proxy information in my App.config (< defaultProxy >) but it doesn't work. Thanks. ...

Adding headers to proxied requests in IIS7

Hi everyone, We are using IIS7 UrlRewrite and wish to proxy a URL to another URL, but also adding a header en-route, so that SSO will work properly in the target. We want to add a header called Jespa-Connection-Id to a proxied request. The value for this would be: {REMOTE_ADDR}e:{REMOTE_PORT}e This value is not being passed through, ...

Poxy Proxy Problem! c#

Hi The code below works fine to instruct the system not to use a proxy and to not auto detect one, which causes a delay without the code. However while on a network with a proxy I just get the underlying connection is closed! So four questions: Am I specifying the proxy correctly? If so how do I tell it to use default proxy credenti...

How does the Customer Origin/ Mirror bucket concept in CDN work?

I call a 3rd party webservice for some content. I dont want to call them every time. Instead, I am planning to create a mirror bucket/customer origin to the webservice so that I always request content from the CDN and the CDN can throttle the requests to the 3rd party. My question is, to implement this, does the 3rd party need to kno...

Automatic Proxy Configuration

I have a PAC file on my server with the following code: function FindProxyForURL(url, host) { return "PROXY proxy.example.com:8080; DIRECT"; } According to the WIKI page here - http://en.wikipedia.org/wiki/Proxy_auto-config, this means that "should this proxy fail to respond, the browser contacts the website directly, without using...

proxy for mac and windows

I have a requirement that I need to restrict my kids from browsing some sites . I want to be the adminbstrator for my machine, but other users have limited access to internet. Is there any software / proxy for this ? i want solution for both windows / linux and mac ...

Adobe Air - use a flash swf to tunnel to a proxy?

I want to create an Air app (HTML and JS) that has the ability to use user entered proxy settings. While I know that by default Air will use the OS's proxy settings, I was wondering it if was possible to include a small swf that got it's settings from Air, and then created a "tunnel" to a proxy to pass the request on to. Are there exam...

Generating Interface Proxies

Hello, Ran into an issue with a class; I have a class that looks like: public class MyPresenter { public MyPresenter(IMyView view) { } } public class SomePresenter { public SomePresenter(ISomeView view) { } } The custom views inherit from a base IView instance. I ran into a situation where I need to create a custom class on...

Anyone know a good (paid) US Proxy for testing web sites?

I need to test my web site from a US perspective (most of my customers are from the US, and I'm in Australia). I'd like to be able to run through an e-commerce transaction which relies third-party gateways, SSL, etc., and have it appear as though I'm in America. The free web-based proxies don't really cut it. I don't mind paying money. M...

NHibernate mapping problem - Could not initialize proxy - no Session.

I have just started to learn NHibernate, and are following tutorials. On my own learning project, I have made up a problem for myself. I have two tables: Team: TeamId* Name Match: MatchId* TeamAId TeamBId The model entities are: Team public virtual int? TeamId { get; private set; } public virtual string Name { get; set; } public v...

using ftp4j to connect through proxy

Is this correct? I could swear it is but its not working and we are trying to track down if its a problem with my code or the proxy setup. FTPClient client = new FTPClient(); client.setConnector(new SOCKS5Connector(proxy_host, proxy_port)); client.connect(ftp_host, ftp_port); client.login(ftp_user, ftp_pass); /*some stuff*/ client.di...