3

以下は、ローカル ファイル システムからリモート Apache サーバーにファイルをアップロードするプログラムです。

プログラムは 409 競合エラーで終了します。私が間違っていることについて何かアドバイスはありますか?httpd.conf で DAV をオンにして、必要なすべての許可を与えましたが、それでもうまくいきませんでした。必要に応じて httpd.conf を投稿できます。

これはコードです:

BOUNDARY = "AaB03xZZZZZZ11322321111XSDW"
uri = URI.parse("http://localhost/dropbox/")
file = "/tmp/KEYS.txt"
http = Net::HTTP.new(uri.host, uri.port)
request = Net::HTTP::Put.new(uri.request_uri)
request.body_stream=File.open(file)
request["Content-Type"] = "multipart/form-data"
request.add_field('Content-Length', File.size(file))
request.add_field('session', BOUNDARY)
response=http.request(request)
puts "Request Headers: #{request.to_hash.inspect}"
puts "Sending PUT #{uri.request_uri} to #{uri.host}:#{uri.port}"
puts "Response #{response.code} #{response.message}"
puts "#{response.body}"
puts "Headers: #{response.to_hash.inspect}"

そしてその出力:

Request Headers: {"accept"=>["*/*"], "host"=>["localhost"], "content-length"=>[88873],     "content-type"=>["multipart/form-data"], "session"=>["AaB03xZZZZZZ11322321111XSDW"],   "connection"=>["close"]}
Sending PUT /dropbox/ to localhost:80
Response 409 Conflict
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>409 Conflict</title>
</head><body>
<h1>Conflict</h1>
<p>Cannot PUT to a collection.</p>
<hr />
<address>Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8r DAV/2 PHP/5.3.10 with Suhosin-Patch Server at localhost Port 80</address>
</body></html>
Headers: {"server"=>["Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8r DAV/2  PHP/5.3.10 with Suhosin-Patch"], "content-length"=>["315"], "content-type"=>["text/html;  charset=ISO-8859-1"], "date"=>["Thu, 23 Aug 2012 17:36:40 GMT"], "connection"=>["close"]}
4

1 に答える 1

5

5行目を次のように変更すると、問題は解決しました。

request = Net::HTTP::Put.new("#{uri.request_uri}/test.file")

「コレクションにPUTできません」というエラーは、フォルダに対してアップロードを実行できないことを意味します。ファイル名を指定する必要があります。

于 2012-10-22T21:09:09.120 に答える