Hi,

  I'm trying to set up a project using Tomahawk and
facelets. Before trying to use facelets, this little
login->main page web app was working fine, but I can't
get it running when adding facelets.
The thing is, it doesn't navigate at all. When I click
on a form it reaches the right navigation case, but it
shows the message "required resource
(/mylittleapp/Main.faces) is not available".

I think tehre is something missing in my config.

Here are the config files:
* faces-config.xml
...
<view-handler>com.sun.facelets.FaceletViewHandler</view-handler>

...
<navigation-rule>
<from-view-id>/Login.xhtml</from-view-id>             
                                                
<navigation-case>
<from-outcome>loginOK</from-outcome>
<to-view-id>/Main.xhtml</to-view-id>
</navigation-case>
</navigation-rule>


* web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
version="2.5"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
 http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd";>

<context-param> 
<param-name>javax.faces.CONFIG_FILES</param-name>
<param-value>/WEB-INF/faces-navigation-config.xml</param-value>
</context-param>

<context-param>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>server</param-value>
</context-param>

<context-param> 
<param-name>org.apache.myfaces.DETECT_JAVASCRIPT</param-name>
<param-value>false</param-value>
</context-param>

<context-param>
<param-name>org.apache.myfaces.PRETTY_HTML</param-name>
<param-value>true</param-value>
</context-param>

<context-param> 
<param-name>org.apache.myfaces.VALIDATE</param-name>
<param-value>true</param-value>
</context-param>

<context-param> 
<param-name>org.apache.myfaces.ADD_RESOURCE_CLASS</param-name>
<param-value>org.apache.myfaces.renderkit.html.util.DefaultAddResource
</param-value>
</context-param>
        
<context-param>
<param-name>org.apache.myfaces.CHECK_EXTENSIONS_FILTER
</param-name>
<param-value>true</param-value>
</context-param>

<context-param>
<param-name>org.apache.myfaces.RESOURCE_VIRTUAL_PATH</param-name>
<param-value>/faces/extensionResource</param-value>
</context-param>

<context-param>
<param-name>javax.faces.PARTIAL_STATE_SAVING_METHOD</param-name>
<param-value>false</param-value>
</context-param>

<context-param>
<param-name>javax.faces.PARTIAL_STATE_SAVING_DISPATCH_EVERY_TIME
</param-name>
<param-value>true</param-value>
</context-param>

<context-param>
<param-name>com.sun.faces.validateXml</param-name>
<param-value>true</param-value>
</context-param>
        
<context-param>
<param-name>com.sun.faces.verifyObjects</param-name>
<param-value>true</param-value>
</context-param>

<context-param> 
<param-name>javax.faces.DEFAULT_SUFFIX</param-name>
<param-value>.xhtml</param-value>
</context-param>

<context-param> 
<param-name>facelets.DEVELOPMENT</param-name>
<param-value>true</param-value>
</context-param>
        
<context-param>
<param-name>facelets.LIBRARIES</param-name>
<param-value>/WEB-INF/tomahawk.taglib.xml;      
/WEB-INF/jsf-core.taglib.xml
</param-value>
</context-param>


<filter>        
<filter-name>MyFacesExtensionsFilter</filter-name>
<filter-class>          
org.apache.myfaces.webapp.filter.ExtensionsFilter
</filter-class>
<init-param>
<param-name>maxFileSize</param-name>
<param-value>20m</param-value>
</init-param>
</filter>


<filter-mapping>        
<filter-name>MyFacesExtensionsFilter</filter-name>
<servlet-name>Faces Servlet</servlet-name>
</filter-mapping>

<filter-mapping>        
<filter-name>MyFacesExtensionsFilter</filter-name>
<url-pattern>/faces/myFacesExtensionResource/*</url-pattern>
</filter-mapping>

<listener>
<listener-class>
org.apache.myfaces.webapp.StartupServletContextListener
</listener-class>
</listener>


<servlet>
<servlet-name>faces</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>



<servlet-mapping>
<servlet-name>faces</servlet-name>
<url-pattern>*.faces</url-pattern>
</servlet-mapping>



<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>

</web-app>





These are the libraries and their versions:
jsf-facelets.jar (1.1.13)
my-faces (1.2.2)
tomahawk (1.1.6)
tomahawk-facelets-taglib.jar (last version)


¿What is worng with the above config?.

Thanks








      ______________________________________________ 
Enviado desde Correo Yahoo!
Disfruta de una bandeja de entrada más inteligente. 
http://es.docs.yahoo.com/mail/overview/index.html

Reply via email to