How do you post the documents to solr ? Via php, jsp or smth like that ?
Then if u use curl from php or jsp or asp you can see the error that
solr returns,
in php using curl i found out the error using this...
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 4);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $header);
$data = curl_exec($ch);
and then i printed $data, my schema was parsed successfully but actually
in the xml i was using variables bit different than in schema plus there
were some logical errors in the schema ...
So try to find the SOLR runtime errors using a solution like above