views:

439

answers:

2

What would be the simplest implementation of a proxy written for GAE, which relays every URL (including POST, and header data) to a remote HTTP host, and return with it's result (with special consideration to error codes)? Please apply KISS principles!

+1  A: 

How about this one ?

Dmitry
+1  A: 

I've found this proxy app from the Downy project works very well.

lost-theory