다음을 통해 공유


방법: 채널 구성

다음 예제에서는 "http"와 이름이 다른 HttpChannel을 구성하고 이를 서버 응용 프로그램에 사용하는 방법을 보여 줍니다.

예제

<configuration>
 <system.runtime.remoting>
    <application>
      <service>
        <wellknown 
          type="Type,Assembly" 
          mode="Singleton" 
          objectUri="endpoint"
        />
      </service>
      <channels>
        <channel ref="OtherChannel"/>
      </channel>
    </application>
    <channels>
      <channel 
        id="OtherChannel"
        type="CompleteTypeInformation including versiong and strong-name information"
      />
    </channels>
 </system.runtime.remoting>
</configuration>

참고 항목

참조

System.Runtime.Remoting.RemotingConfiguration Class

개념

원격 응용 프로그램 구성
채널
채널 등록
서버측 등록
클라이언트측 등록
채널 등록

기타 리소스

구성 파일을 사용하여 원격 개체 등록
.NET Framework Remoting 개요

Footer image

Copyright © 2007 by Microsoft Corporation. All rights reserved.