方法 : ホスト アプリケーション ドメインのサーバー側でアクティブ化されるオブジェクトとクライアント側でアクティブ化されるオブジェクトを登録する
ホスト アプリケーション ドメインのサーバー側でアクティブ化されるオブジェクトとクライアント側でアクティブ化されるオブジェクトの登録方法を次の例に示します。<activated> タグの type 属性は、<wellknown> タグに表示されるときのオブジェクトの完全な型名とアセンブリ名を示します。
例
<configuration>
<system.runtime.remoting>
<application>
<service>
<wellknown
mode = "SingleCall"
type = "myType,myAssembly"
objectUri = "myType.soap"
/>
<activated
type="MyActivatedType, TypeAssembly"
/>
</service>
</application>
</system.runtime.remoting>
</configuration>
関連項目
参照
System.Runtime.Remoting.RemotingConfiguration Class
概念
サーバー側の登録
リモート アプリケーションの構成
リモート オブジェクトの設定
その他の技術情報
構成ファイルを使用したリモート オブジェクトの登録
.NET Framework リモート処理の概要
Copyright © 2007 by Microsoft Corporation.All rights reserved.