Huygens 1.2.0
See the version list below for details.
dotnet add package Huygens --version 1.2.0
NuGet\Install-Package Huygens -Version 1.2.0
<PackageReference Include="Huygens" Version="1.2.0" />
paket add Huygens --version 1.2.0
#r "nuget: Huygens, 1.2.0"
// Install Huygens as a Cake Addin #addin nuget:?package=Huygens&version=1.2.0 // Install Huygens as a Cake Tool #tool nuget:?package=Huygens&version=1.2.0
Huygens
Cut down CassiniDev server for internally hosting IIS sites
https://www.nuget.org/packages/Huygens
Derived from https://archive.codeplex.com/?p=cassinidev and released under the same license.
Library to load, host and run ASP.Net websites inside your own process. Has functionality equivalent to the IIS Developer server. Can expose IP ports or keep sites internal to your process. Supports .Net MVC and Web APIs
To do:
- Decode HTTP chunked?
- Accept null Headers on requests
Internal hosting
You can host a site without exposing on an IP port like this:
using (var server = new DirectServer(@"C:\inetpub\wwwroot\PublishSample")) // a published site
{
var request = new SerialisableRequest{
Method = "GET",
RequestUri = "/values",
Headers = new Dictionary˂string, string˃{
{ "Content-Type","application/json" }
},
Content = null
};
var result = server.DirectCall(request);
var resultString = Encoding.UTF8.GetString(result.Content);
Console.WriteLine(resultString);
}
Creating a new DirectServer
takes a few seconds, but it can handle an unlimited number of DirectCall
requests.
External hosting
using (var server = SocketServer(32768, "/", @"C:\inetpub\wwwroot\PublishSample"))
{
server.Start();
// accessible to web browsers etc.
server.Stop();
}
Azure hosting
You can't use the SocketServer
on Azure, due to permissions limitations. The DirectServer
is usable as long as you have a B1 or higher application service plan, and your host app has the Application Setting WEBSITE_LOAD_USER_PROFILE
= 1
You can also host the DirectServer in a 'Web Job', 'Worker Role' or 'Service Fabric' resource.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net46 is compatible. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Work around an obscure bug in ASP.Net