I am needing to make modifications in the query string. The query string being passed to Search.jsp is generated by a search.asp which contains this code:

        <%
        sourceFile = "http://myserver:8080/search.jsp?"; & Request.QueryString
        set oXML = Server.CreateObject("Msxml2.SERVERXMLHTTP")
        oXML.open "GET", sourceFile
        oXML.send()
        Response.Write oXML.responseText
        %>

What I need to do is to insert a new scoping parameter into the query string - so that I can point nutch to any one of five different indexdb's,
So my query string might end up looking like:


http://www.mydomain.com/search.asp?query=xyz&myindexdb=1&start=0&hitsPerPage=10&hitsPerSite=0&clustering=

Can anyone show me where & how to add this additional parameter to the search.jsp query string? Any help appreciated.

-Nathan




------------------------------------------------------- This SF.net email is sponsored by Microsoft Mobile & Embedded DevCon 2005 Attend MEDC 2005 May 9-12 in Vegas. Learn more about the latest Windows Embedded(r) & Windows Mobile(tm) platforms, applications & content. Register by 3/29 & save $300 http://ads.osdn.com/?ad_id=6883&alloc_id=15149&op=click _______________________________________________ Nutch-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nutch-developers

Reply via email to