方法 : 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 リモート処理の概要
Copyright © 2007 by Microsoft Corporation.All rights reserved.