Bad Request Error When attempting to add documents to server through Solrj

BiCen picture BiCen · Nov 28, 2010 · Viewed 13.9k times · Source

I'm trying to do a simple SolrDocument submission with Java like the one detailed in the Solrj Wiki. However, the submission always fails and returns this:

org.apache.solr.common.SolrException: Bad Request
Bad Request
request: http://address:port/solr/update?wt=xml&version=2.2

I do not run into any issues when querying the Solr server through Solrj, so I don't think there are any problems with the address or connection.

apologizes if this is too vague, but this is all I have to go on. Thanks.

Answer

dongpf picture dongpf · Jun 17, 2011

I run into this issue before, my problem is solr document is not valid with the fields defined in schema.xml. So make the fields and types match, and problem will be fixed.