ServiceWire 7.0.0
dotnet add package ServiceWire --version 7.0.0
NuGet\Install-Package ServiceWire -Version 7.0.0
<PackageReference Include="ServiceWire" Version="7.0.0" />
<PackageVersion Include="ServiceWire" Version="7.0.0" />
<PackageReference Include="ServiceWire" />
paket add ServiceWire --version 7.0.0
#r "nuget: ServiceWire, 7.0.0"
#:package ServiceWire@7.0.0
#addin nuget:?package=ServiceWire&version=7.0.0
#tool nuget:?package=ServiceWire&version=7.0.0
ServiceWire
A lightweight, very fast RPC library for .NET
ServiceWire lets one .NET process call an interface implemented in another .NET process, over named pipes or TCP/IP, as if it were local. You write a plain C# interface and implement it once. There is no IDL, no code generator, no attributes and no build step — the client proxy is emitted at runtime from the interface you already have.
📖 Read the User Guide →
Full documentation with worked samples: getting started · contracts · transports · serialization · security · logging · interception · wire protocol · performance · migrating to 7.0 · troubleshooting
<sub>Reading this on NuGet? The guide is at https://github.com/tylerjensen/ServiceWire/blob/master/docs/user-guide.md</sub>
Install
dotnet add package ServiceWire
Targets netstandard2.0 and net8.0. NuGet package.
Use it
// 1. A contract both processes reference
public interface IMath
{
int Add(int a, int b);
}
// 2. An implementation, hosted as a singleton
public class MathService : IMath
{
public int Add(int a, int b) => a + b;
}
// 3. A host
using var host = new TcpHost(8098);
host.AddService<IMath>(new MathService());
host.Open();
// 4. A client
using var client = new TcpClient<IMath>(new TcpEndPoint(new IPEndPoint(IPAddress.Loopback, 8098)));
int sum = client.Proxy.Add(2, 3); // 5
Swap TcpHost/TcpClient for NpHost/NpClient and the same code runs over a named pipe.
Step-by-step, including the project layout and how to run it: Getting started.
⚠️ Build for AnyCPU or x64
ServiceWire's dynamically generated proxy will not run as x86 on an x64 system. This usually bites when Visual Studio's console template leaves Prefer 32-bit enabled. Choose AnyCPU or the specific target so you do not run 32-bit under WOW64 on an x64 machine.
What it supports
- TCP and named pipe transports, with the same contract on both
- Dynamic client proxy generation from a service interface — no codegen step
outandrefparameters (except non-primitive value types)- Very fast direct encoding of common types and arrays of them
- Multiple service interfaces on one endpoint, and one implementation on multiple endpoints
- Pluggable serialization (
ISerializer) and compression (ICompressor) - Pluggable logging and timing (
ILog,IStats) - Optional zero-knowledge authentication with an encrypted session over TCP (details and caveats)
- Aspect-oriented interception with pre-, post- and exception handling
- Concurrent in-flight calls on a shared TCP proxy (7.0)
Host status
TcpHost and NpHost expose their listener lifecycle through the inherited Status property: Created, Opening, Open, Faulted, Closed. This reports listener state, not the state of an individual client connection.
if (host.Status == HostStatus.Faulted)
{
// Create and open a replacement host, or otherwise recover the listener.
}
See Logging and diagnostics for a supervisor pattern.
Portions of this library (the dynamic proxy) are derived from RemotingLite by Frank Thomsen. Licensed under the terms in License.txt.
The older project wiki is kept for historical reference; the user guide supersedes it.
History
Performance Release with Negotiated Wire Protocol v2 — 7.0.0
A major performance release. Steady-state calls are 43–70% faster than 6.0.1 on named pipes and 13–47% faster on TCP; TCP connection setup is roughly 14× faster on .NET 8 and 10. Full tables: Performance.
Both mixed-version pairings — 6.x client with 7.0 server, and 7.0 client with 6.x server — keep working over the classic v1 wire path. The new v2 wire activates only when both ends are 7.0, so a fleet can be upgraded in any order. See Migrating to 7.0.
Internal optimizations (v1 wire format unchanged, proven byte-identical by golden tests):
- Memoized type-to-config-name resolution in both directions, removing three regex passes per complex parameter per call and repeated
Type.GetTypelookups inDefaultSerializer. - Fixed the named-pipe client to actually use its
BufferedStream, collapsing dozens of per-field pipe syscalls per call into one (and fixing a pipe stream that was never disposed). - Set
Socket.NoDelayon client and accepted sockets to eliminate Nagle and delayed-ACK latency; both sides already buffer and flush once per message. - Server dispatch through compiled expression delegates instead of
MethodInfo.Invoke(byref methods fall back to reflection); async results through compiledTask.Resultgetters; clientTask.FromResultwrapping through compiled converters. Client-visible exception behavior is unchanged and covered by parity tests. - Proxy types are created and their constructors compiled once per pooled builder; creating a proxy is now a delegate call.
- Larger named-pipe server buffers, connect-path event wait instead of a spin loop,
CompressionLevel.Fastestin the default compressor, and reused ZK cipher instances (identical ciphertext).
Multi-targeting: the package now ships netstandard2.0 (unchanged 6.x dependency graph, so no new binding redirects for .NET Framework consumers) and net8.0 (no package dependencies, plus span-based fast paths that produce identical wire bytes).
Bug fixes:
- A
string[]above the compression threshold was written with a type code no receiver could decode; it now usesCompressedUnknown, which every release since 1.5.0 can read. - Scalar
Typeparameters crashed the default serializer; they now use the wire format'sTypecode. - Thrown exceptions could not be serialized by System.Text.Json (
TargetSite), which killed the connection whenever a service method threw with the default serializer; a converter now preserves the exception type, message, HResult, inner chain, and server stack trace. - The TCP client connected with
Socket.ConnectAsyncand waited on its completion callback, which .NET dispatches as a thread-pool work item. An application whose pool was saturated could therefore seeTimeoutExceptionfromnew TcpClient<T>(...)against a server that was listening the whole time, more often the fewer cores the machine had. The connect now completes on the calling thread, soConnectTimeOutMsmeasures the network alone. Named pipes were never affected. TcpClient<T>(IPEndPoint)now routes throughTcpEndPoint, so its connect timeout comes from one place instead of a hard-coded literal; pass aTcpEndPointto choose your own.
Wire protocol v2 — the default on both transports, negotiated, never sent to a 6.x peer. Frame layouts and rationale: Wire protocol.
- Servers advertise capabilities through a new additive
ServiceSyncInfo.CapabilityFlagsmember (tolerant serializers on 6.x clients ignore it; a strict customISerializeron a 6.x client may need updating — this is part of why this release is a major version). - Framed
MethodInvocation2/Response2messages with length prefixes and correlation ids: a request payload that fails to decode is answered with a correlated error response instead of desynchronizing the stream and killing the connection. DateTimevalues travel asToBinary()(Kind-preserving, no string parsing).- Concurrent in-flight calls on a shared TCP client proxy: callers no longer serialize on a whole-round-trip lock. Whichever caller holds the read seat pairs responses to callers by correlation id while the server executes each connection's requests strictly in order; an uncontended caller reads inline with no thread handoff.
- Named-pipe channels speak v2 with the exchange serialized per channel (no pipelining): synchronous pipe handles cannot overlap a read with a write. Pipes still gain v2's decode-error resilience and binary DateTime transfer on top of the large Tier 1 buffering wins.
- The v2 frame costs a few microseconds per call, measurable only on loopback with strictly sequential callers. Three opt-outs force the classic v1 wire:
Host.EnableWireV2 = false(beforeAddService) for all clients of a host, andTcpEndPoint.UseWireV2 = false/NpEndPoint.UseWireV2 = falseper client. - In-place server downgrades with a stale cached capability produce a descriptive error and evict the cache so the next channel renegotiates.
Opt-in additions (defaults preserve prior behavior): TCP receive/send timeouts on TcpEndPoint and TcpHost, and a persistent log file writer via LoggerBase.PersistentFileWriter.
A new interop test matrix runs the published ServiceWire 6.0.1 package as a separate process against 7.0 in both directions across TCP and named pipes, with and without compression, in CI.
Connection and Logging Reliability Fixes 6.0.1
- Fixed retained TCP connection resources by detaching and disposing
SocketAsyncEventArgsafter connection attempts (#90). - Added the
Host.Statusproperty andHostStatuslifecycle states so applications can detect listener failures (#83). - Prevented the named-pipe shutdown sentinel from being processed as a client request, eliminating expected close-time errors (#80).
- Prevented named-pipe listener failures from producing an unbounded logging and CPU loop; capacity exhaustion now retries with a short backoff while other failures fault the host (#81).
- Fixed console logging so formatted messages are written instead of
System.String[](#82). - Added targeted regression coverage for these fixes and repeated .NET 10 proxy creation (#97).
.NET 10 Compatibility and Performance Improvements 6.0.0
- Fixed dynamic proxy channel validation on .NET 10 by using
Type.IsAssignableFrom. Many thanks to IvoTops for contributing this fix in pull request #98. - Updated unit and integration test runs to .NET 10 while retaining .NET Framework 4.8 coverage on Windows. The ServiceWire package continues to target .NET Standard 2.0 for broad compatibility.
- Cached method resolution, return-type conversion, and task reflection metadata to reduce repeated work during RPC calls.
- Avoided stopwatch, statistics, debug formatting, and Base64 conversion overhead when the corresponding instrumentation is disabled.
- Removed a redundant stream flush after the binary writer has already been flushed.
- Reduced dictionary lookups and allocations in parameter-type mapping, service method dispatch, and pooled value storage.
- Simplified the default GZip compression path to avoid an unnecessary input stream and decompression seek.
NamedPipeServerStreamFactory and Other Improvements 5.6.0
- Contributed fix where accepting TCP clients synchronously may block new clients from being accepted until the terminating request is received on the synchronous client.
- Contributed NamedPipeServerStreamFactory to allow greater level of permissions control in using named pipes.
- Introducted injectable ILog and IStats across channels and clients with default NullLogger and NullStats, making InjectLoggerStats obsolete.
- Code improvements for code consistency and eliminating outdated frameworks from tests and supporting projects.
- Updated several dependencies in supporting projects.
- Updated System.Text.Json to 9.0.0 to resolve known vulnerabilities in previous versions.
Support for Enum by Ref 5.5.4
- Contributed support for proper async exceptions.
Support for Enum by Ref 5.5.3
- Contributed support for Enum by ref parameters.
Bug Fix for Important Edge Case 5.5.2
- Contributed fix to case service on a host with same interface was called previously on a different host.
Replaces BinaryFormatter with System.Text.Json 5.5.0
- Replaces BinaryFormatter in DefaultSerializer with System.Text.Json. Improves performance and reduces allocations in serializing small object graphs which is the most common use case in any RPC library.
- Fixes null value in string array bug #50.
- See source for former DefaultSerializer in ServiceWire.Serializers in BinaryFormatterSerializer. Use that code as a custom injected serializer if this version breaks your serialization.
- Using ServiceWire in an ASP.NET app no longer requires the use of the EnableUnsafeBinaryFormatterSerialization flag in your project file.
Capture serialization error bug fix in 5.4.2
- Single target of NetStandard 2.0 for a smaller NuGet package.
- Fix to a NamedPipes performance issue.
- Elimination of NET462 code differences.
Capture serialization error bug fix in 5.4.1
- In .NET 5+, the BinaryFormatter is marked obsolete and prohibited in ASP.NET apps.
- This bug caused an end of stream error rather than capturing it properly. This version fixes that bug and exposes the limitation introduced in .NET 5+ on ASP.NET apps.
- Using ServiceWire in an ASP.NET app is still possible but requires the use of the EnableUnsafeBinaryFormatterSerialization flag in your project file. Use this carefully and be sure you understand the risks.
ICompression added for injecting compression strategy in 5.4.0
- Added ICompression for injecting custom compression into usage.
- Added .NET 5.0 as target back in.
AssemblyQualified names from user defined types in 5.3.6
- Fix for AssemblyQualified names from user defined types.
Multiple Framework Targets and void Return Types 5.3.5
- Updated all projects to target .net462, .net48, netcoreapp3.1, and net6.0 only.
- Corrected multiple targets for multiple OS in projects for those using Linux.
- Updated NuGet package version.
BugFix + Test cases + 48
- Throwing the original error through an Intercept would fail for interface methods that have a void return type
- Updated framework references from .net462 to .net48
.NET Framework to .NET Core and Serializer Bug Fixes 5.3.4
- Support for .NET Framework to .NET Core core parameter types to eliminate exceptions when a Framework client is talking to a Core host or vice versa.
- Serializer injection bug fixed.
.NET 4.62 added back in version 5.3.3
- Added .NET Framework 4.62 build in package to prevent permissions issue in named pipes.
- Fixed custom serializer issue.
- .NET Standard 2.0 and 2.1 builds remain.
- Resolved parallel Zk test issues.
Note: Use of async/await and Task<T> not recommended. Use of Task return type not supported. While the syntax of Task return type is supported, apparently it is not marked as Serializable. In fact async/await is not really supported. Under the covers the task type is stripped away over the wire and the method is executed on a worker thread on the server synchronously. If you think about it, you will understand that it's two separate processes, so the Task Parallel Library is not going to be able to manage the thread context across the processes. RPC is inherently synchronous but the handling of each request on the host is done on thread pools. See Async and Task returns for what this means in practice.
.NET Standard 2.0 and 2.1 in version 5.3.2
- Changed library build to only .NET Standard 2.0 and 2.1.
- This breaks users of named pipes in .NET 4.6.2 -- DO NOT UPGRADE until we resolve that issue.
Bug Fixes in version 5.3.1
- Fixed bug related to complex type serialization that occurred when using output parameters.
BREAKING CHANGES in version 5.3.0
Injectable serialization (see project library tests for examples).
Removes dependency on Newtonsoft.Json and uses BinaryFormatter for default serialization which means wire data classes must be marked [Serializable].
Internal classes are attributed to support protobuf-net serialization as well.
Changes in version 5.2.0
- Adds support for return types of Task and Task<T> to support async / await across the wire.
Changes including some breaking changes in version 5.1.0
Dropped strong named assembly.
Support for NetCoreApp 2.0, 2.2 and .NET Framework 4.62. Dropped support for .NET 3.5.
Modified projects and NuGet package generation from Visual Studio 2017.
Dropped separate projects used to build different targets.
Converted test projects to XUnit with multiple targets to allow "dotnet test" run of all targets.
Breaking Changes in version 4.0.1
Switched ServiceWire (and ServiceMq) to Newtonsoft.Json for serialization. Eliminates use of BinaryFormatter and its required Serializable attribute. Also eliminates ServiceStack.Text 3 dependency which has problems serializing structs.
Relaxed assembly version matching to allow additive changes without breaking the client or requiring an immediate client update.
Strong name added to allow the library to be used by strong named applications and libraries.
Added .NET 3.5 support to allow legacy applications to use the library. This adds a Framework specific dependency on TaskParallelLibrary 1.0.2856.0.
For the .NET 4.0 and 3.5 versions, changed to "Client Profile" for the target framework.
Removed dependency on System.Numerics in order to support .NET 3.5 and introduced ZkBigInt class taken from Scott Garland's BigInteger class. See license text for full attribution.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- System.IO.Pipes (>= 4.3.0)
- System.Reflection.Emit (>= 4.7.0)
- System.Text.Json (>= 9.0.0)
- System.Threading (>= 4.3.0)
-
net8.0
- No dependencies.
NuGet packages (8)
Showing the top 5 NuGet packages that depend on ServiceWire:
| Package | Downloads |
|---|---|
|
Stride.Core.BuildEngine.Common
Package Description |
|
|
Stride.GameStudio
Package Description |
|
|
ServiceMq
A store and forward message queue for .NET. based on ServiceWire. |
|
|
Stride.VisualStudio.Commands
Package Description |
|
|
Levrum.Utils
Package Description |
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on ServiceWire:
| Repository | Stars |
|---|---|
|
stride3d/stride
Stride (formerly Xenko), a free and open-source cross-platform C# game engine.
|
|
|
MatterHackers/MatterControl
3D printing software for Windows, Mac and Linux
|
| Version | Downloads | Last Updated |
|---|---|---|
| 7.0.0 | 104 | 8/19/2026 |
| 6.0.1 | 106 | 8/18/2026 |
| 6.0.0 | 76 | 8/18/2026 |
| 5.6.0 | 72,201 | 12/1/2024 |
| 5.5.4 | 129,859 | 2/21/2023 |
| 5.5.3 | 6,897 | 12/1/2022 |
| 5.5.2 | 10,249 | 10/29/2022 |
| 5.5.1 | 11,649 | 7/21/2022 |
| 5.5.0 | 9,788 | 6/6/2022 |
| 5.4.2 | 2,809 | 5/20/2022 |
| 5.4.1 | 13,058 | 5/11/2022 |
| 5.4.0 | 2,157 | 4/24/2022 |
| 5.3.6 | 2,116 | 3/21/2022 |
| 5.3.5 | 2,056 | 2/28/2022 |
| 5.3.4 | 98,159 | 6/29/2020 |
| 5.3.3 | 2,126 | 4/30/2020 |
| 5.3.2 | 3,596 | 1/21/2020 |
| 5.3.1 | 3,456 | 6/4/2019 |
| 5.3.0 | 2,349 | 1/11/2019 |
| 5.2.0 | 2,289 | 1/7/2019 |
Major performance release. Compiled dispatch replaces per-call reflection; type-name resolution is memoized; named-pipe client I/O is buffered; Nagle is disabled. Adds a net8.0 target alongside netstandard2.0. Introduces negotiated wire protocol v2 (framing, correlation ids, concurrent in-flight calls per channel, binary DateTime) that activates only when both ends are 7.0 - mixed 6.x pairings keep working over the v1 wire. Fixes compressed string[] corruption, scalar Type parameters, and thrown-exception serialization with the default serializer. See README for details and compatibility notes.