Skip to content

Latest commit

 

History

History
44 lines (25 loc) · 1.28 KB

README.md

File metadata and controls

44 lines (25 loc) · 1.28 KB

IocServiceStack.Client

Gitter Build status

IocServiceStack.Client is a open source .NET library to communicate over HTTP with IocServiceStack.Gateway. This enables communication to remote services of IocServiceStack.

out and ref arguments cannot be used when making remote calls.

Supports

  • .NET Framework 4.6
PM> Install-Package IocServiceStack.Client -Pre

NuGet Pre Release

Usage

Setup

using IocServiceStack.Client;

//Configure remote services
IocServicelet.Configure(config =>
{
    config.UseRemoteServices(
	gatewayBaseUrl : 
		"http://localhost:8080/serviceapi");
});

Web N-Tier Architecture using IocServiceStack, IocServiceStack.Gateway, and IocServiceStack.Client

https://github.com/rjinaga/Web-N-Tier-Architecture