Message9122

Author zyasoft
Recipients StefanGeissler, jeff.allen, zyasoft
Date 2014-10-07.23:45:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412725548.23.0.0882341065459.issue2041@psf.upfronthosting.co.za>
In-reply-to
Content
Not so difficult to look into this. The query returns the following XML:

<?xml version="1.0" encoding="UTF-8"?>
<response>
<lst name="responseHeader"><int name="status">0</int><int name="QTime">1</int><lst name="params"><str name="fl">*,score</str><str name="q">title:lucene</str><str name="wt">standard</str><str name="version">2.2</str></lst></lst><result name="response" numFound="1" start="0" maxScore="0.15342641"><doc><str name="author">Erik Hatcher</str><str name="author_s">Erik Hatcher</str><str name="id">1</str><arr name="title"><str>Lucene in Action</str></arr><long name="_version_">1481349698602139648</long><float name="score">0.15342641</float></doc></result>
</response>

This is turn parsed by a parser returned by xml.sax.make_parser, with a handler defined by solrpy in solr.core.ResponseContentHandler. Unfortunately, I have not actually used or looked into this ancient tech ;) that supports sax, but that's the proximate point of our failure.
History
Date User Action Args
2014-10-07 23:45:48zyasoftsetmessageid: <1412725548.23.0.0882341065459.issue2041@psf.upfronthosting.co.za>
2014-10-07 23:45:48zyasoftsetrecipients: + zyasoft, jeff.allen, StefanGeissler
2014-10-07 23:45:48zyasoftlinkissue2041 messages
2014-10-07 23:45:47zyasoftcreate