> It's a pretty simple 'proxy'
>
> Controller:
>
> class ProxyController(BaseController):
>
>     def fetch(self):
>
>
>         host = request.params.get('host')
>         url_f = request.params.get('url')
>         data = request.params.get('data')
>         method = request.params.get('method')
>
>         headers = {"Content-type": "application/x-www-form-urlencoded"}
>         conn = httplib.HTTPConnection(host)
>         if method == 'POST':
>             conn.request(method, url_f, data, headers)
>         else:
>             conn.request(method, url_f+'?'+data)
>
>         http_response = conn.getresponse()
>
>         data = http_response.read()
>         conn.close()
>
>         return data
>
>




What error do you get ?

Is there something in the uWSGI log ?


-- 
Roberto De Ioris
http://unbit.it
_______________________________________________
uWSGI mailing list
[email protected]
http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi

Reply via email to