ServiceWire 5.3.5
See the version list below for details.
dotnet add package ServiceWire --version 5.3.5
NuGet\Install-Package ServiceWire -Version 5.3.5
<PackageReference Include="ServiceWire" Version="5.3.5" />
paket add ServiceWire --version 5.3.5
#r "nuget: ServiceWire, 5.3.5"
// Install ServiceWire as a Cake Addin #addin nuget:?package=ServiceWire&version=5.3.5 // Install ServiceWire as a Cake Tool #tool nuget:?package=ServiceWire&version=5.3.5
ServiceWire
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.
.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.
A Lightweight Services Library for .NET.
ServiceWire is a very fast and light weight services host and dynamic client library that simplifies the development and use of high performance remote procedure call (RPC) communication between .NET processes over Named Pipes or TCP/IP.
Find "how to use" examples in the tests code. ServiceWire documentation is available on the wiki.
Important
ServiceWire's dynamically generated proxy will NOT run as x86 on an x64 system. This ususally occurs when you use Visual Studio to create a console application with the default "prefer x86" in project properties selected. Just be sure to choose AnyCPU or the specific target (x86 or x64) so that you do not run 32bit in WOW on an x64 machine.
Get It on Nuget
Get the NuGet package here.
Using the library is easy.
Code your interface
Code your implementation
Host the implementation
Use dynamic proxy of your interface on the client side
This unique library supports:
TCP and NamedPipes protocols
ByRef (out and ref) parameters (except for non-primitive value types)
Dynamic client proxy generation from service interface
Very fast serialization of most native types and arrays of those types
Multiple service interface hosting on the same endpoint
Aspect oriented interception with pre-, post- and exception handling cross cutting
Hosting of single service implementation singleton on multiple endpoints and protocols
Protocol, serialization and execution strategy extension
Portions of this library are a derivative of RemotingLite.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. 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 was computed. 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. |
.NET Core | netcoreapp3.1 is compatible. |
.NET Framework | net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 is compatible. net481 was computed. |
-
.NETCoreApp 3.1
- System.IO.Pipes (>= 4.3.0)
- System.Reflection.Emit (>= 4.7.0)
- System.Threading (>= 4.3.0)
-
.NETFramework 4.6.2
- System.IO.Pipes (>= 4.3.0)
- System.Reflection.Emit (>= 4.7.0)
- System.Threading (>= 4.3.0)
-
.NETFramework 4.8
- System.IO.Pipes (>= 4.3.0)
- System.Reflection.Emit (>= 4.7.0)
- System.Threading (>= 4.3.0)
-
net6.0
- System.IO.Pipes (>= 4.3.0)
- System.Reflection.Emit (>= 4.7.0)
- System.Threading (>= 4.3.0)
NuGet packages (9)
Showing the top 5 NuGet packages that depend on ServiceWire:
Package | Downloads |
---|---|
Stride.Core
Core assembly for all Stride assemblies. |
|
Stride.GameStudio
Package Description |
|
Stride.Core.BuildEngine.Common
Package Description |
|
ServiceMq
A store and forward message queue for .NET. based on ServiceWire. |
|
Levrum.Utils
Package Description |
GitHub repositories (3)
Showing the top 3 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
|
|
tylerjensen/ServiceWire
ServiceWire is a very fast and light weight service host and dynamic client library that simplifies the development and use of high performance remote procedure call (RPC) communication between .NET processes over Named Pipes or TCP/IP.
|
Version | Downloads | Last updated |
---|---|---|
5.5.4 | 44,374 | 2/21/2023 |
5.5.3 | 4,299 | 12/1/2022 |
5.5.2 | 8,205 | 10/29/2022 |
5.5.1 | 10,188 | 7/21/2022 |
5.5.0 | 8,210 | 6/6/2022 |
5.4.2 | 1,274 | 5/20/2022 |
5.4.1 | 10,506 | 5/11/2022 |
5.4.0 | 686 | 4/24/2022 |
5.3.6 | 622 | 3/21/2022 |
5.3.5 | 620 | 2/28/2022 |
5.3.4 | 89,513 | 6/29/2020 |
5.3.3 | 662 | 4/30/2020 |
5.3.2 | 2,124 | 1/21/2020 |
5.3.1 | 1,784 | 6/4/2019 |
5.3.0 | 895 | 1/11/2019 |
5.2.0 | 817 | 1/7/2019 |
5.1.0 | 1,013 | 1/1/2019 |
5.0.0 | 2,032 | 8/6/2016 |
4.0.2 | 1,732 | 8/3/2016 |
4.0.1 | 2,310 | 12/22/2014 |
2.0.0 | 1,395 | 11/28/2014 |
1.6.3 | 1,652 | 11/26/2014 |
1.6.2 | 2,585 | 11/13/2014 |
1.6.1 | 4,208 | 10/30/2014 |
1.6.0 | 3,041 | 10/30/2014 |
1.5.1 | 1,959 | 4/1/2014 |
1.5.0 | 3,059 | 1/25/2014 |
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.