共用方式為


HOW TO:在 IIS 中設定遠端用戶端

本主題專門說明一項為了在現有應用程式中提供回溯相容性而保留的舊有技術,不建議用於新的開發工作。分散式應用程式應使用 Windows Communication Foundation (WCF) 進行開發。

下列範例會在 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 遠端處理概觀

建置日期:2010-02-13