Hello!
I've got a quite annoying problem.
My jsf-project is working well, but every time i call my Login.jsp i get the following warning:
13.11.2008 16:39:15 com.sun.faces.renderkit.html_basic.HtmlBasicRenderer getForComponent
WARNING: Component with ID 'login' was not found in the view. [translated into english ^^]
13.11.2008 16:39:15 com.sun.faces.renderkit.html_basic.HtmlBasicRenderer getForComponent
WARNING: Component with ID 'user' was not found in the view. [translated into english ^^]
13.11.2008 16:39:15 com.sun.faces.renderkit.html_basic.HtmlBasicRenderer getForComponent
WARNING: Component with ID 'password' was not found in the view. [translated into english ^^]
Can someone tell me where this comes from and how to fix it?
my jsp-code
<h:form id="form1">
<table cellpadding="5" cellspacing="0" align="left">
<tr>
<td>
<h:outputLabel for="login" value="#{bundle.liefKennung}"/>
</td>
<td>
<h:inputText id="login" required="true" binding="#{Login.loginId}"/>
</td>
</tr>
<tr>
<td>
<h:outputLabel for="user" value="#{bundle.benutzerKennung}"/>
</td>
<td>
<h:inputText id="user" required="true" binding="#{Login.userName}"/>
</td>
</tr>
<tr>
<td>
<h:outputLabel for="password" value="#{bundle.passwort}"/>
</td>
<td>
<h:inputSecret id="password" required="true" binding="#{Login.password}"/>
</td>
</tr>
<tr>
<td></td>
<td align="right">
<h:commandButton id="submit" action="#{Login.checkData}" styleClass="button" value="Login"/>
<h:commandLink id="back" action="success" immediate="true" value="#{bundle.back}"/>
</td>
</tr>
<tr>
<td colspan="2">
<h:messages globalOnly="true" showDetail="false"/><br></br>
</td>
</tr>
</table>
</h:form>
Furthermore i get those warnings:
WARNING: [ValidatorRule]{faces-config/validator} Merge(javax.faces.LongRange)
13.11.2008 16:59:53 com.sun.faces.config.rules.ValidatorRule end
WARNING: [ValidatorRule]{faces-config/validator} Merge(javax.faces.DoubleRange)
13.11.2008 16:59:53 com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.math.BigDecimal)
13.11.2008 16:59:53 com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.math.BigInteger)
13.11.2008 16:59:53 com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.util.Calendar)
13.11.2008 16:59:53 com.sun.faces.config.rules.NavigationRuleRule end
WARNING: [NavigationRuleRule]{faces-config/navigation-rule} Merge(*)
funnily, i dont have any converters or validators.
I found out that they just come, because i did not define strict navigation-rules. I just told every navigation the following:
<from-view-id>*</from-view-id>
how can i disable them?