Is there a .NET FastCGI library?

I am developing a small server that needs to communicate via http. Since I want it to be available for different mature http servers, I chose FastCGI as the common interface.

Now I can not find the (free) .NET library that implements the FCGI interface and does all the hard work for me. Do you know someone?

+5
source share
5 answers

Not that I knew (I look too)

, FastCGI, , , - StdIn - -, .Net- (Process, Socket ....) . , FastCGI .Net Process Socket P/Invoke Windows.

+2

​​ F #: SharpCGI

#.

, Kragen, Win32, .NET. , - FastCGI.

+2

, , FastCGI, #, . (FastCgi - , , ), , , . API , -, . .
, ( ).

NuGet GitHub. FastCgiNet.

+2

Yes, there are many libraries, such as SharpCGI and FCGIDotNet, but they all implement the server side of the protocol. I still need to find the code to talk to the existing FastCGI server, this is just the opposite of what all these libraries do (although the code is 90% the same for it).

+1
source

All Articles