UcAsp.RPC 1.0.0.1

There is a newer version of this package available.
See the version list below for details.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package UcAsp.RPC --version 1.0.0.1
NuGet\Install-Package UcAsp.RPC -Version 1.0.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="UcAsp.RPC" Version="1.0.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add UcAsp.RPC --version 1.0.0.1
#r "nuget: UcAsp.RPC, 1.0.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install UcAsp.RPC as a Cake Addin
#addin nuget:?package=UcAsp.RPC&version=1.0.0.1

// Install UcAsp.RPC as a Cake Tool
#tool nuget:?package=UcAsp.RPC&version=1.0.0.1

C# 开发的.Net框架下的RPC服务,利用.Net动态编译技术和AOP实现RPC,代码侵入性小,编程简单。

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.1 821 12/17/2018
1.2.0.8 826 12/14/2018

服务器端配置

<?xml version="1.0" encoding="utf-8"?>
<configuration>
 <configSections>
   <sectionGroup name="service">
     <section name="server" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, Custom=null" />
   </sectionGroup>
 </configSections>
 <service>
   <server>
     <add key="port" value="9966" />  <!--服務器端口--->
     <add key="username" value="admin" />
     <add key="password" value="admin" />
   </server>
   <assmebly>
     <add key="Face" value="Face.dll" /><!--需要被外部應用的類庫--->
   </assmebly>
 </service>
</configuration>

服務器端设置

ApplicationContext context = new ApplicationContext();
context.Start(AppDomain.CurrentDomain.BaseDirectory+ "Application.config", AppDomain.CurrentDomain.BaseDirectory);

客戶端配置

<?xml version="1.0" encoding="utf-8"?>
<configuration>
 <configSections>
   <sectionGroup name="client">
     <section name="server" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, Custom=null" />
   </sectionGroup>
 </configSections>
 <client>
   <server>
     <add key="ip" value="127.0.0.1:9966" /> <!---服務器地址--->
     <add key="mode" value="tcp" />
     <add key="pool" value="10" />
     <add key="username" value="admin" />
     <add key="password" value="admin" />
   </server>
   <relation>
     <add key="ISCS.WMS2.Model" value="ISCS.WMS2.Model.dll" /><!--関聯類庫-->
   </relation>
 </client>

</configuration>

客户端设置
客戶端創建對象

static ApplicationContext context= new ApplicationContext();
context.Start(AppDomain.CurrentDomain.BaseDirectory + "Application.config", AppDomain.CurrentDomain.BaseDirectory);

實例一個對象

IFace.ITest clazz = context.GetProxyObject<IFace.ITest>();
int o = (int)i;
string x = clazz.R(ref o);