This content has been marked as final.
Show 1 reply
-
1. Re: Security Hotfix APSB10-04 Breaks our SOLR service
ilssac Dec 28, 2010 2:10 PM (in response to ilssac)I don't know how many times I looked at this, I even posted it here in the original post! But there is a typo in this line:
<Set name="Host"><SystemProperty naem="jetty.host" default="127.0.0.1"/></Set>
Fixing "<SystemProperty naem" to "<SystemProperty name" fixed the problem on this server straight away.
What was really missleading me was that both the development and production servers where suffering the same problem! But it was a completely different and distinct typo on the production server causing the problem there.
<Set name="port"><SystemProperty name="jetty.host" default="127.0.0.1"/></Set>Fixing '<Set name="port"' to '<Set name="host"' fixed the production server!
Lesson Learned: Cut and Paste WHENEVER POSSIBLE!

