Hi List, Thanks in advance for the help. I'm new to Solr and ran across a bit of a problem. I installed Solr with the Jetty and tested the exampledocs. Everything went great. Next I tried adding one of my own documents to the collection. The XML is below:
test.xml <add> <doc> <field name="id">123456789</field> <field name="url">http://localhost/testing.xml</field> <field name="title">Testing</field> <field name="name">Testing</field> <field name="creationDate">2007-06-16</field> <field name="rating">10</field> <field name="content">A Test piece of legislation</field> <field name="published">on</field> </doc> </add> when I try to post it with the default: java -jar post.jar text.xml I get the error: SimplePostTool: FATAL: Conncection error (is Solr running at http://localhost:8983/solr/update ?): java.io.IOException: Server returned HTTP response code: 400 f or URL: http://localhost:8983/solr/update I've made sure that my XML Document is UTF-8, the test.xml is UTF-8 and that other exampledocs still post. If anyone had any advice as to where to go from here it would be much appreciated. Thanks, Spencer