NickDarvey.ServiceFabric.ServiceUris

Sometimes you use Service Remoting, sometimes you use HTTP and sometimes you use both. This library has transformations from Service Remoting URIs to reverse proxy URIs and vice versa.


Keywords
fabric, proxy, reverse, service, remoting, service-fabric
License
MIT
Install
Install-Package NickDarvey.ServiceFabric.ServiceUris -Version 0.3.0

Documentation

ServiceFabric.ServiceUris

Sometimes you use Service Remoting, sometimes you use HTTP and sometimes you use both. This library has transformations from Service Remoting URIs to reverse proxy URIs and vice versa.

Service Remoting to reverse proxy

var original = new Uri("fabric:/Application/Name/And/Service/Name");
var result = original.ToReverseProxyServiceUri(new Uri("https://localhost:19080"));
Assert.Equal(new Uri("https://localhost:19080/Application/Name/And/Service/Name"), result)

Reverse proxy to Service Remoting

var original = new Uri("https://localhost:19080/Application/Name/And/Service/Name");
var result = original.ToServiceRemotingServiceUri();
Assert.Equal(new Uri("fabric:/Application/Name/And/Service/Name"), result);