Curl Global Community
HTTPサーバにファイルをアップロードとダウンロード - Printable Version

+- Curl Global Community (https://communities.curl.com)
+-- Forum: Discussions (https://communities.curl.com/forumdisplay.php?fid=1)
+--- Forum: General Curl questions (https://communities.curl.com/forumdisplay.php?fid=2)
+--- Thread: HTTPサーバにファイルをアップロードとダウンロード (/showthread.php?tid=416)

Pages: 1 2


RE: HTTPサーバにファイルをアップロードとダウンロード - zrllch - 03-02-2012

(02-29-2012, 11:56 AM)hokada Wrote: ちなみに、WebDavを使う場合は、CurlでWebDavプロトコルを実装する必要がありそうです。

よろしくお願いいたします。
CurlでWebDavプロトコルを実装するについて、何かご参照できるものがありますか。





RE: HTTPサーバにファイルをアップロードとダウンロード - heavybugtracker - 03-06-2012

RFC2518はWebDAVのオフィシャル文書ですので、一番信頼のできる資料でしょう。次のリンクに日本語訳があるうえ、Apacheなどの関連資料も載っています。
http://webdav.todo.gr.jp/download/



RE: HTTPサーバにファイルをアップロードとダウンロード - wbardwell - 03-06-2012

You will need to implement a HttpRequestData subclass that returns the data to be sent from HttpRequestData.request-data. You can use that with a PUT request (HttpRequestMethod.put). Full WEBDAV includes lots of methods that are not in the HttpRequestMethod enum, so you will not be able to implement things that require those methods unless you re-implement things with DataTCPSocket.