0 Replies Latest reply on Nov 26, 2009 3:46 PM by prati

    My Wicket component cannot read properties file

    prati
      Hi, I am using wicket and Seam

      The code is
      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

      <html<body>


      <form wicket:id="testProfile">

      <wicket:message key="page_strText1"> Text1        </wicket:message>

      <wicket:message key="page_strText2"> Text2 </wicket:message>



      </form>
      </body>
      </html>

      I have same .properties file where my HTML file is stored

      page_strText1 = Welcome
      page_strText2 = To the world of java

      And i have a java class corrosponding to wicket html page(No issues with .java file)


      But when i try to load page it only shows blank page ,Do i need to do something else
      Overwrite something.



      Thanks