I have a custom requesthandler which does some very basic dynamic parameter substitution. dynamic params are params which are enclosed in braces ({}).
So this means i can do something like this: q={order}... where {order} is substituted by the name of an existing order-column. Now this all works well when i supply such a query directly as un url in firefox / IE. However when i supply a query through SOLR-J I get an "invalid URI" exception as SOLR-J automatically URLEncodes the braces and then passes this onto Apache-HttpClient, which chokes on the URLEncoded URI. Is there any way around passing things as braces trough SOLR-J such that the resulting URL is correctly interprested by HttpClient? Geert-Jan -- View this message in context: http://www.nabble.com/Solr-J%3A-automatic-url-escaping-gives-invalid-uri-exception.-How-to-workaround--tf4733909.html#a13536871 Sent from the Solr - User mailing list archive at Nabble.com.