Re: servlet forwarding solrj request/response

2010-01-21 Thread Daniel Angelov
thanks Erik, "or perhaps a proxy in the middle that forwards requests on to Solr, but captures however you like. " That is what I am lookin for. How I can to implement this kind of proxy, I try with RequestDispatcher forward method od servlet API, but, when jboss appl requests doc via solrj(from to

Re: servlet forwarding solrj request/response

2010-01-21 Thread Erik Hatcher
sure, you could put a servlet filter in Solr's web.xml to capture whatever you like. another option would be to hook into Solr's logging and fire events/ data off elsewhere. or perhaps a proxy in the middle that forwards requests on to Solr, but captures however you like. Erik O

servlet forwarding solrj request/response

2010-01-21 Thread Daniel Angelov
Is it possible to make a servlet which take some information/statistic about solrj request/response between another web application and solr server? For example I have a JBOSS web appl for add/select documents from solr, but I want to take some information about this operations in another web appl