0 Replies Latest reply on Dec 18, 2006 12:09 PM by arkadybezoglady

    Duke's Bank example problem in JBoss

    arkadybezoglady

      For Duke's Bank example application with JBoss 4.0.5 GA


      There was erorr:
      null: org.xml.sax.SAXParseException: An invalid XML character (Unicode: 0x1b)
      was found in the CDATA section.

      When clicking on accountList link.

      So..
      I have changed accountList.jsp code:

      <c:if test="${ad.creditLine != 0}">
      \$${ad.remainingCredit}
      </c:if>


      to:

      <c:if test="${ad.creditLine != 0}">
      <fmt:formatNumber value="${ad.remainingCredit}" type="currency" />
      </c:if>


      And now it works..

      Similar problem was described also here:
      http://issues.apache.org/bugzilla/show_bug.cgi?id=40797

      ArkaD.