소리소문 없이... 사랑도 명예도 이름도 남김 없이...
DexCore.net

.Net General/.Net XML-RPC 26

XML RPC 관련 Site

http://kldp.org/HOWTO/html/XML-RPC-HOWTO/index.html 일반적인 내용, 한글문서 http://www.python.or.kr:8080/python/Internet/xmlrpc.html 파이선에서의 구현방법 http://aspxmlrpc.sourceforge.net/ ASP에서의 구현방법 http://php.weblogs.com/xml-rpc PHP에서의 구현방법 http://classic.helma.at/hannes/xmlrpc/ 자바에서의 구현방법 http://xmlrpc-c.sourceforge.net/ C/C++ 구현방법 http://www.xml-rpc.com XML-RPC의 총본산 write by pie 출처 : http://blog.naver.com/9namy

XML-RPC HOWTO

http://wiki.kldp.org/HOWTO//html/XML-RPC-HOWTO/index.html XML-RPC HOWTO KiddEric Source Builders eric.kidd (at) pobox.com And Other Contributors 원영식 monpetit (at) orgio.net 0.8.0, 2001-04-12 Copyright © 2001 by Eric Kidd 이 문서는 다양한 컴퓨터언어로 XML-RPC 클라이언트와 서버를 만드는 방법을 기술한다. Perl, Python, C, C++, Java, PHP 등의 각종 언어로 된 예제 코드를 제공하며, XML-RPC를 지원하는 모든 오퍼레이팅 시스템의 Zope와 KDE 2.0 섹션도 포함한다. 고친 과정 고침 0.8.0 200..

닷넷에서의 XML-RPC 구현 (클라이언트)

using System; using System.IO; using System.Text; using System.Net; using CookComputing.XmlRpc; struct userInfo { //사용자 정보 구조체 public string s_user_id; public byte[] bt_user_name; public string s_user_email; }; struct attatchFile { //첨부파일 다운로드 정보 구조체 public byte[] bt_file_name; public string s_download_url; }; struct contentInfo { // 글정보 구조체 public string s_message_id; public byte[] bt_title; pu..

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

## web.config 이렇게 웹어플리케이션을 설정해 놓고 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디렉토리일 것이다. (확실히는 모르겠다.난 그렇게 했다.) [출처]

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

using System; using CookComputing.XmlRpc; using System.Text; using System.Net; using System.IO; struct userInfo { //사용자 정보 구조체 public string s_user_id; public byte[] bt_user_name; public string s_user_email; }; struct attatchFile { //첨부파일 다운로드 정보 구조체 public byte[] bt_file_name; public string s_download_url; }; struct contentInfo { // 글정보 구조체 public string s_message_id; public byte[] bt_title; pu..

728x90
반응형