상세 컨텐츠

본문 제목

닷넷에서의 XML-RPC 구현 (설정)

.Net General/.Net XML-RPC

by 탑~! 2009. 9. 18. 14:56

본문

## web.config

 

<configuration>
  <system.web>
    <httpHandlers>
      <add verb="*" path="rpcServer.rem"
         type="rpcServer, rpcServer" />
    </httpHandlers>
  </system.web>
</configuration>

 

이렇게 웹어플리케이션을 설정해 놓고

http://...(경로).../rpcServer.rem

으로 클라이언트에서 이 서버주소로 XML을 날리면 된다.

 

 

## 컴파일

csc /r:system.web.dll /r:CookComputing.XmlRpc.dll /target:library rpcServer.cs
csc /r:CookComputing.XmlRpc.dll clientTest.cs

(배치파일 첨부참조)

 

dll파일의 위치는 해당 어플리케이션의 bin디렉토리일 것이다.

(확실히는 모르겠다.난 그렇게 했다.)

[출처]


'.Net General > .Net XML-RPC' 카테고리의 다른 글

XML RPC 관련 Site  (0) 2011.11.17
XML-RPC HOWTO  (0) 2011.11.17
닷넷에서의 XML-RPC 구현 (클라이언트)  (0) 2009.09.18
닷넷에서의 XML-RPC 구현 (서버)  (0) 2009.09.18
.Net XML-RPC  (0) 2009.09.18

관련글 더보기