AW: Propertiesindexer and /UURI problem

2006-07-19 Thread Darren Hartford
I don't know how to fix the code, but found a way to work around the problem. Add/modify a slide.properties file with: org.apache.slide.binding=false The bindings are having some type of impact on indexing/searching. Hope that saves someone else a lot of time figuring it out! -D

slide client

2006-07-19 Thread Julien Chambert
i'm a new bee in use of slide i try to use slide client on a java application and don't manage to get file. here is my code: . File temp = new File(temp.xml); root = new WebdavResource(webdavRootUrl); temp.CreateNewFile(); System.out.println(webdavRootUrl);

Webdav methods - which are allowable/required for read-only?

2006-07-19 Thread Darren Hartford
Hey all, I'm looking at the web.xml for slide, and want to separate the security-constraints into a search/read-only role and an admin role. For admin, it's easy: = web-resource-collection web-resource-nameAdmin DAV resource/web-resource-name

Re: Propertiesindexer and /UURI problem

2006-07-19 Thread Maximo Gurmendez
Thanks Darren! I was having the same problem,as posted earlier. Surely this saves a lot of time. Regards, Máximo - Original Message - From: Darren Hartford [EMAIL PROTECTED] To: Slide Users Mailing List slide-user@jakarta.apache.org Sent: Wednesday, July 19, 2006 10:31 AM

Re: slide client

2006-07-19 Thread Maël Villat
Hello! I believe that getMethod needs an absolute path like: /slide/files/filename.txt. You should look at the server's log, it could help you. - Original Message - From: Julien Chambert [EMAIL PROTECTED] To: slide-user@jakarta.apache.org Sent: Wednesday, July 19, 2006 3:33 PM

Re: slide client

2006-07-19 Thread Sven Pfeiffer
Hi after running in several erros when using relative urls I started to use absolute urls to identify the sources. root = new WebdavResource(webdavRootUrl); root.getMethod(http://localhost:8080/slide/files/config/projects_config.xml,targetFile); this always worked (at least for me) SVen