Open Source Proxy Library for .Net [closed]

2019-02-16 13:42发布

I'm looking for a open source .Net HTTP proxy library. Basically I want to develop something like Fiddler (so much lighter with less features).

标签: .net proxy
3条回答
在下西门庆
2楼-- · 2019-02-16 13:59

I've used the Mentalis Proxy at work: http://www.mentalis.org/soft/projects/proxy/

It's not been touched for a while so there may be a few bugs.

Licence details are here: http://www.mentalis.org/site/license.qpx

查看更多
别忘想泡老子
3楼-- · 2019-02-16 14:06

Mentalis doesn't handle non-ASCII very well. The core proxy engine of Fiddler is called "FiddlerCore," now available as a .NET class library: http://www.fiddler2.com/fiddler/Core/

查看更多
闹够了就滚
4楼-- · 2019-02-16 14:16

There is URLRewriter.NET, a free open-source component for IIS/ASP.NET.

As the name suggests, it's an URL rewriting component, but it has also proxying capabilities. With a simple line like this in the configuration file

RewriteRule ^(.*) http://www.testsiteXY.com$1 [P]

you could easily use it as proxy.

查看更多
登录 后发表回答