Re: CUSTOM JSP FOR APACHE SOLR

2011-02-25 Thread Paul Libbrecht
From looking at the source, I see only the following option available for me to write search results displaying jsp's: adjust SolrDispatchFilter to treat a JspResponseWriter specially by: - enriching the http-request with the search queries and reponses - forward the request down the chain It

Re: CUSTOM JSP FOR APACHE SOLR

2011-02-25 Thread Erik Hatcher
On Feb 1, 2011, at 08:58 , Estrada Groups wrote: Has anyone noticed the rails application that installs with Solr4.0? I am interested to hear some feedback on that one... I guess you're talking about the client/ruby/flare stuff? It's been untouched for quite a while and has not been

Re: CUSTOM JSP FOR APACHE SOLR

2011-02-24 Thread Paul Libbrecht
Hello list, as suggested below, I tried to implement a custom ResponseWriter that would evaluate a JSP but that seems impossible: the HttpServletRequest and the HttpServletResponse are not available anymore. Have I missed something? Should I rather do a RequestHandler? Does anyone know an

Re: CUSTOM JSP FOR APACHE SOLR

2011-02-02 Thread Tomás Fernández Löbbe
Hi Paul, I don't fully understand what you want to do. The way, I think, SolrJ is intended to be used is from a client application (outside Solr). If what you want is something like what's done with Velocity I think you could implement a response writer that renders the JSP and send it on the

Re: CUSTOM JSP FOR APACHE SOLR

2011-02-01 Thread Estrada Groups
Has anyone noticed the rails application that installs with Solr4.0? I am interested to hear some feedback on that one... Adam On Jan 31, 2011, at 4:25 PM, Paul Libbrecht p...@hoplahup.net wrote: Tomas, I also know velocity can be used and works well. I would be interested to a simpler

CUSTOM JSP FOR APACHE SOLR

2011-01-31 Thread JOHN JAIRO GÓMEZ LAVERDE
SOLR LUCENE DEVELOPERS Hi i am new to solr and i like to make a custom search page for enterprise users in JSP that takes the results of Apache Solr. - Where i can find some useful examples for that topic ? - Is JSP the correct approach to solve mi requirement ? - If not what is the best

Re: CUSTOM JSP FOR APACHE SOLR

2011-01-31 Thread Tomás Fernández Löbbe
Hi John, you can use whatever you want for building your application, using Solr on the backend (JSP included). You should find all the information you need on Solr's wiki page: http://wiki.apache.org/solr/ http://wiki.apache.org/solr/including some client libraries to easy integrate your

Re: CUSTOM JSP FOR APACHE SOLR

2011-01-31 Thread Paul Libbrecht
Tomas, I also know velocity can be used and works well. I would be interested to a simpler way to have the objects of SOLR available in a jsp than write a custom jsp processor as a request handler; indeed, this seems to be the way solrj is expected to be used in the wiki page. Actually I