| Author |
Building/Deploying JSF in Weblogic
|
Ken Flor
Ranch Hand
Joined: Aug 01, 2006
Posts: 34
|
|
Hi, I just started on JSF. I do not know if I have configured my weblogic properly. There is no error when i put this into my JSP <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core" %> <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html" %> However when i add <f:use_faces> <h:form id="simpleForm" formName="simpleForm"> <table> <tr> <td>Name:</td> <td><h:textentry_input id="name"/></td> </tr> <tr> <td>Password:</td> <td><h:textentry_secret id="password"/></td> </tr> </table> <p><h:command_button id="submit" commandName="Log In"/> </h:form> </f:use_faces> , error reported in weblogic server is no handler for tagname='use_faces' .... is my weblogic still not configured properly?
|
 |
Sushma Sharma
Ranch Hand
Joined: Jun 02, 2005
Posts: 139
|
|
There is really no tag like f:use_faces You need to use f:view tag instead of your use_faces.
|
 |
 |
|
|
subject: Building/Deploying JSF in Weblogic
|
|
|