Skip to content

.NET library for using HTTP 1.1 over streams, especially Windows Named Pipes

License

Notifications You must be signed in to change notification settings

docker/HttpOverStream

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HttpOverStream

NuGet Build Status

Used by Docker Desktop.

.NET library for using HTTP 1.1 over streams, especially Windows Named Pipes.

This library essentially allows inter-process communication over named pipes using HTTP which doesn't require opening ports on the host machine like a standard web server.

There is both a client and server implementation and these have been tested across languages (GoLang and Javascript so far can both successfully send and receive messages here). Server implementation in OWIN is more production ready than the .NET Core version.

Server usage (OWIN) is like this:

    var server = CustomListenerHost.Start(startupAction, new NamedPipeListener(pipeName));

Client usage:

    _httpClient = new NamedPipeHttpClientBuilder("myPipeName")
                    .WithPerRequestTimeout(TimeSpan.FromSeconds(5))
                    .Build();
    var response = await _httpClient.GetAsync("/api/endpoint");