如何:在 IIS 中配置远程处理客户端

下面的示例在 IIS 中配置了一个远程处理客户端。 <client> 标记中的 url 属性指向远程应用程序的位置。 该位置是应用程序需要客户端激活的对象时它将使用的位置。 每一个服务器激活的对象都具有指向该对象位置的特定 URL。

示例

<configuration>
   <system.runtime.remoting>
      <application>
         <client 
            url = "http://www. cpandl.com"
            displayName="MyApplication"
         >
            <wellknown 
               type = "myType,myAssembly"
               url = http://www. cpandl.com/myType.soap"
            />
            <activated 
               type = "myClientActivatedType,myAssembly"
            />
         </client>
      </application>
   </system.runtime.remoting>
</configuration>

请参见

参考

System.Runtime.Remoting.RemotingConfiguration Class

概念

客户端注册
远程应用程序的配置
远程对象配置

其他资源

使用配置文件注册远程对象
.NET Framework 远程处理概述

Footer image

版权所有 (C) 2007 Microsoft Corporation。保留所有权利。