[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Proxy server in ruby?

jgbailey

1/8/2007 6:42:00 PM

I'm interested in creating a authorizing proxy server similar to the
Python APS project (http://ntlmaps.source...), but using Ruby.

Is there any existing ruby proxy servers out there already? A quick
search on ruby forge didn't reveal much.

Thanks for any info!

Justin

2 Answers

Jano Svitok

1/8/2007 6:54:00 PM

0

On 1/8/07, Justin Bailey <jgbailey@gmail.com> wrote:
> I'm interested in creating a authorizing proxy server similar to the
> Python APS project (http://ntlmaps.source...), but using Ruby.
>
> Is there any existing ruby proxy servers out there already? A quick
> search on ruby forge didn't reveal much.
>
> Thanks for any info!

MouseHole is a http proxy written using webrick.
http://code.whytheluckystiff.net/...

_why

1/8/2007 7:41:00 PM

0

On Tue, Jan 09, 2007 at 03:54:07AM +0900, Jan Svitok wrote:
> MouseHole is a http proxy written using webrick.
> http://code.whytheluckystiff.net/...

MouseHole's first version used WEBrick. Specifically the WEBrick::HTTPProxyServer,
which comes with Ruby. It's a bit slow, however, and doesn't stream requests.
But it's kinda neat.

MouseHole 2 uses Mongrel and can stream requests. The code is released under an
MIT license, so please be my guest and cut it up!

svn co https://code.whytheluckystiff.net/svn/mouse... mouseHole

_why