Re: webserverless search with lucene on offline HTML doc

2006-02-22 Thread Fabio Insaccanebbia
The signed applet is surely a simpler and more elegant solution.. In some projects however this could not be a viable option: the "System properties problem" you have pointed out (and I had missed :-) is hopefully going to be solved in 1.9 (http://issues.apache.org/jira/browse/LUCENE-369) Fabio

RE: webserverless search with lucene on offline HTML doc

2006-02-21 Thread Trieschnigg, R.B. \(Dolf\)
> Wouldn't this be a good case for the JarDirectory implementation > somebody asked for? > The index could then be statically written in a jar file downloaded > with the applet (the original mail refers to static offline HTML > files). I wrote a quick and dirty implementation of a JarDirectory - i

Re: webserverless search with lucene on offline HTML doc

2006-02-20 Thread paolo berto
On Feb 20, 2006, at 12:42 PM, Fabio Insaccanebbia wrote: Wouldn't this be a good case for the JarDirectory implementation somebody asked for? The index could then be statically written in a jar file downloaded with the applet (the original mail refers to static offline HTML files). It could eve

Re: webserverless search with lucene on offline HTML doc

2006-02-20 Thread paolo berto
Hey Dolf. On Feb 20, 2006, at 12:11 PM, Trieschnigg, R.B. ((Dolf)) wrote: Hi Paulo, The main problem is that Lucene needs to store its index on a disk which under normal circumstances an applet may not read. The applet operates in a sandbox, which only allows "safe" operations. Reading a

Re: webserverless search with lucene on offline HTML doc

2006-02-20 Thread Fabio Insaccanebbia
Wouldn't this be a good case for the JarDirectory implementation somebody asked for? The index could then be statically written in a jar file downloaded with the applet (the original mail refers to static offline HTML files). It could even be a great idea for improving the Maven site-plugin :-) [I

RE: webserverless search with lucene on offline HTML doc

2006-02-20 Thread Trieschnigg, R.B. \(Dolf\)
Hi Paulo, The main problem is that Lucene needs to store its index on a disk which under normal circumstances an applet may not read. The applet operates in a sandbox, which only allows "safe" operations. Reading and writing to disk is not allowed. An applet can only get resources from the host