o0111 / ruralcafe

Automatically exported from code.google.com/p/ruralcafe
0 stars 0 forks source link

LPRequestHandler does not handle non GET/HEAD requests #16

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Currently other requests are not being handled properly. They are just being 
streamed through without any filtering or connection management. Minimally 
things like POST should work.

Original issue reported on code.google.com by shouldab...@gmail.com on 10 Oct 2010 at 7:47

GoogleCodeExporter commented 8 years ago
The method LocalRequestHandler.HandleRequest treats requests which are not HEAD 
or GET like documents not cacheable. What is the reason for this? Would 
filtering be more difficult for POST requests?

Original comment by satiaher...@gmx.de on 11 Apr 2013 at 7:04

GoogleCodeExporter commented 8 years ago
I think the reason for this was at the time I had no idea whether POSTs were 
treated differently. If you can get this to work for POST that would be great.

Original comment by shouldab...@gmail.com on 18 Apr 2013 at 11:49

GoogleCodeExporter commented 8 years ago

Original comment by satiaher...@gmx.de on 1 May 2013 at 10:55

GoogleCodeExporter commented 8 years ago
Now every non-GET/HEAD request gets streamed transparently. The parameters are 
passed correctly and this works. Nevertheless this was not planned for SLOW 
network, but at the moment I couldn't think of another solution.

Original comment by satiaher...@gmx.de on 24 May 2013 at 3:58

GoogleCodeExporter commented 8 years ago
Most POSTs work (even without streaming them), although there are very few 
outside of https...

Original comment by satiaher...@gmx.de on 4 Sep 2013 at 4:55