赞
踩
在使用 .NET Remoting 开发跨进程应用的时候,你可能会遇到一些异常。因为这些异常在后验的时候非常简单但在一开始有各种异常烦扰的时候却并不清晰,所以我将这些异常整理到此文中,方便小伙伴们通过搜索引擎查阅。
System.Runtime.Remoting.RemotingException:“连接到 IPC 端口失败: 系统找不到指定的文件。”
或者英文版:
System.Runtime.Remoting.RemotingException: Failed to connect to an IPC Port: The system cannot find the file specified.
出现此异常时,说明你获取到了一个远端对象,但是在使用此对象的时候,甚至还没有注册 IPC 端口。
比如,下面的代码是注册一个 IPC 端口的一种比较粗暴的写法,传入的 portName
是 IPC 的 Uri 路径前缀。例如我可以传入 walterlv
,这样一个 IPC 对象的格式大约类似 ipc://walterlv/xxx
。
private static void RegisterChannel(string portName)
{
var serverProvider = new BinaryServerFormatterSinkProvider
{
TypeFilterLevel = TypeFilterLevel.Full,
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。