Tomcat起動時に次のようなエラーが発生する場合、
org.seasar.framework.exception.ParserConfigurationRuntimeException: [ESSR0053]パーサの設定に問題があります。理由はjavax.xml.parsers.ParserConfigurationException: Feature 'http://apache.org/xml/features/xinclude' is not recognized.
$TOMCAT/common/endorsedにある、xercesImpl.jarとxml-apis.jarを削除してください。 (Tomcat 5.5.20で確認)
以下のように、formに1つのInputTextしか無い場合に、inputTextにfocusして
Enterキーを押すとname属性がわたらず、doXxxが呼ばれない。
この現象はIEの場合のみ発生する。
<form id="form"> <span>hogehoge</span> <input type="text" id="arg1" title="INPUT1" /> <input type="submit" value="calculate" id="doCalculate"/> <input type="text" style="display: none" /> </form>
これを解消するには、
<input type="text" />
をひとつ追加する