Ryan: the relevant functionality is highly dependent on which DOM parser
the user has ... that was the goal of SOLR-78, to make Solr work for
people who only have a DOM Level 2 parser.
I'm a little confused by two things...
1) can you please post the stack trace from the "Schema Parsing Failed"
SolrException you got when using the trunk ... i'd like to try and figure
out which "number" from the schema it had a problem parsing based on the
line numbers from the stack trace
2) what exactly do you mean by...
: I applied the path from SOLR-78. This fixed this issue when i am
: running on windows, but strangely, it is still there on the linux
: version!
...there are two patches in SOLR-78, the first is 4k dated 14/Dec, the
second is 3k labeled 7/Dec (the labels show up when you mouse over the
links). the 4K version is already commited in the trunk. Are you saying
that when you used the older version of the patch, the problem went away
in windows?
: For now, i guess i just have to keep in the:
:
: if( txt == null || txt.length() < 1 ) {
: txt = nd.getNodeValue();
: }
hmmm.... I'm having troubling figuring out any way that the current
DOMUtil.getText would return null or the empty string if nd.getNodeValue
acctually has something usefull in it.
-Hoss