Simon Munro
unread,Feb 3, 2011, 9:07:04 AM2/3/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to SolrNet
I querying a SOLR instance that returns JSON (&wt=json) by *default*
and it seems that the SolrNet xml parser falls over (which is
unsurprising). Does solrNet have native support for a JSON result at
all?
I added the extra params to the query string for now to get it to
work:
var queryOptions = new QueryOptions()
{
ExtraParams =
new
List<KeyValuePair<string, string>>()
{
new
KeyValuePair<string, string>("wt", "xml"),
},
};
Simon