다음을 통해 공유


방법: 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 Remoting 개요

Footer image

Copyright © 2007 by Microsoft Corporation. All rights reserved.