3 Replies Latest reply on Sep 29, 2008 4:18 AM by ceene

    View Problem

    ceene

      Hi all

      This topic belongs to JBoss Seams, but I can not make a new Topic, so I describe my Problem here.

      I have a xhtml-Page

      <table style="width:100%">
      <tr>
      <td style="width:50%">
       <fieldset class="usrFormPos" style="width:50%">
       <legend>Sucheingabe:</legend>
       <h:outputLabel value="BD-Kürzel:" styleClass="" />
       <h:inputText value="#{testhdl.suchKezi}" styleClass="usrFormValueSearch" maxlength="10"/>
       <br />
       <h:outputLabel value="BD-Name:" styleClass="" />
       <h:inputText id="Name" value="#{testhdl.suchName}" styleClass="usrFormValueSearch" maxlength="10"/>
       </fieldset>
      </td>
      <td style="width:50%">
       <fieldset class="usrFormPos" style="width:22%">
       <legend>Steuerung:</legend>
       <h:commandButton value="Suche" action="#{testhdl.userSuchen()}" styleClass="usrFormBtnSuchen"/>
       <br />
       <h:commandButton value="Logout" action="#{identity.logout}" styleClass="usrFormBtnSuchen" />
       <br />
       <h:outputLabel value=" " styleClass="" />
       <br />
       <h:outputLabel value=" " styleClass="" />
       </fieldset>
      </td>
      </tr>
      </table>
      


      If I load the Project in JBoss then I can open the Page with no Problems but if I click a Button, or load the side new I get the following errorMassage

      javax.faces.FacesException: javax.el.ELException: /pflege/LOV_User.xhtml @28,92 value="#{testhdl.suchKezi}": Error reading 'suchKezi' on type org.javassist.tmp.java.lang.Object_$$_javassist_50
      at javax.faces.component.UIOutput.getValue(UIOutput.java:176)
      at com.sun.faces.renderkit.html_basic.HtmlBasicInputRenderer.getValue(HtmlBasicInputRenderer.java:189)
      at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.getCurrentValue(HtmlBasicRenderer.java:320)
      at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeEnd(HtmlBasicRenderer.java:200)
      at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:836)
      ....

      I have no idea where my mistake is, I hope somebody can help me.