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

14,096

Solution 1

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.

Solution 2

Some of your fields might be wrong according to your schema.xml. Besides seek if there is more than one schema.xml in the classpath your server might be loading the wrong before the correct one.

Share:
14,096
Admin
Author by

Admin

Updated on June 08, 2022

Comments

  • Admin
    Admin almost 2 years

    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.