I like to know if it is posible disable the error messages that appear at the bottom of the page when I have some JSF syntax error:

<ul title="Project Stage[Development]: Unhandled Messages" 
   id="javax_faces_developmentstage_messages">
  <li style="Color: orange">    
    The button/link/text component needs to have a Form in its ancestry. Please 
    add <h:form>.
  </li>
</ul>

And you can't say "add the form tag".

link|improve this question
feedback

1 Answer

up vote 5 down vote accepted

Remove the <context-param> with name of javax.faces.PROJECT_STAGE from your web.xml, or set its value to Production instead of Development.

See also:

link|improve this answer
Thanks this solve my problem. – Diego Maye Dec 19 '11 at 21:46
You're welcome. Since you're new here, please don't forget to mark the answer accepted whenever it helped (most) in solving the problem. See also meta.stackoverflow.com/questions/5234/… – BalusC Dec 19 '11 at 21:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.