greeeeat...so Lucene only really works in 2.2 but the webdav servlet doesn't so basically I can't search because I have to the WebdavServlet mapped to "/content/"?
Any ideas? Do I have to wait for 2.2, I only have a few days to finish the search part of my project. Or should I maybe write an external indexer like Karl did and add an indexer listener?
<listener classname="org.apache.slide.search.IndexTrigger">
<configuration>
<indexer classname="YourIndexer" synchronous="false" uri="/files/your/path"/>
</configuration>
</listener>

best regards Eirikur, idega.



On 6.1.2005, at 09:30, Stefan L�tzkendorf wrote:

This issue will be resolved in 2.2.

This issue means that there where problems map the WebdavServlet in your web.xml to an other path than /.

e.g.
<servlet-mapping>
   <servlet-name>webdav</servlet-name>
   <url-pattern>/webdav/*</url-pattern>
</servlet-mapping>

instead of
<servlet-mapping>
   <servlet-name>webdav</servlet-name>
   <url-pattern>/</url-pattern>
</servlet-mapping>

Stefan

Eirikur Hrafnsson wrote:
In the 2.2 release notes is says
KNOWN ISSUES
------------
WebDAV Layer:
- SEARCH doesn't work with WebdavServlet mapped to a path other than /
What path is this refering to?
The tomcat context or the servlet mapping?
I map the Slide servlet "/content/" on my tomcat server. Will a DASL search fail for that setup?
Best Regards
Eirikur S. Hrafnsson, [EMAIL PROTECTED]
Chief Software Engineer
Idega Software
http://www.idega.com
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-- Stefan L�tzkendorf -- [EMAIL PROTECTED]


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Best Regards

Eirikur S. Hrafnsson, [EMAIL PROTECTED]
Chief Software Engineer
Idega Software
http://www.idega.com


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to