Hi Zopistas, I have defined a class as follows: class RedProjector(ObjectManager, PropertyManager, RoleManager, Item, FindSupport, PhotoFolder): within this class I have the following methods: security.declareProtected('FTP access', 'manage_FTPget', 'manage_FTPstat', 'manage_FTPlist') def manage_FTPget(self): """Handle GET requests.""" print "get" return self.read() def manage_FTPstat(self, REQUEST): """Handle STAT requests.""" print "stat" return ObjectManager.manage_FTPstat(REQUEST) def manage_FTPlist(self, REQUEST): """Handle LIST requests.""" print "list" return ObjectManager.manage_FTPlist(REQUEST) however neither of them is ever hit when I access an instance of the class trough WebDAV (I am using MS Word) Any tips what I am doing wrong is much appreciated. Robert