while i easily get a webdav server up an running with
gem install webrick-webdav
and
require 'webrick'
require 'webrick/httpservlet/webdavhandler'
server = WEBrick::HTTPServer.new(context.values)
server.mount("/webdav", WEBrick::HTTPServlet::WebDAVHandler, Dir.pwd)
...
and can mount and read the files, i still can't actually modify any of
the exported/mounted webdav files.
before i start diving into real problem tracking i would like to ask if
someone of you had the same problems? i export/mount on mac os x. might
this be a mac or a webrick-webdav problem? any tips welcomed,
have fun
dirk
--
Posted via http://www.ruby-forum.com/.