Have you added the the MyFaces Extensions Filter in web.xml. The example below is from the book My Faces and Facelets:
<web-app> <filter> <filter-name>extensionsFilter</filter-name> <filter-class>org.apache.myfaces.webapp.filter.ExtensionsFilter</filter-class> </filter> <!-- extension mapping for adding <script/>, <link/>, and other resource tags to JSF-pages --> <filter-mapping> <filter-name>extensionsFilter</filter-name> <url-pattern>*.jsf</url-pattern> </filter-mapping> <!-- extension mapping for serving page-independent resources (javascript, stylesheets, images, etc.) --> <filter-mapping> <filter-name>extensionsFilter</filter-name> <url-pattern>/faces/myFacesExtensionResource/*</url-pattern> </filter-mapping> </web-app> Another issue which springs to my mind is a class loading issue. Maybe there are some classes in the classpath of Glassfish (which you added) which interfere with the TomaHawk classes in the WEB-INF/lib directory of your application (Application classes are loaded after system classes - delegationmodel). -----Original message----- From: Richard Yee <[email protected]> Sent: Wed 05-08-2009 00:49 To: MyFaces Discussion <[email protected]>; Subject: Re: Issues installing Tomahawk Are you using the correct URL to access the JSF page? What are all of the libraries and the versions that you are including with your application? Are you including a JSF library (RI or MyFaces) and all of their dependencies? Which version of Glassfish are you using? I've used Tomahawk on a Glassfish v2 server and it works fine. -Richard On Tue, Aug 4, 2009 at 7:27 AM, Steve Colombié<[email protected]> wrote: > Thank you for your response. > > No, there is no exception, no error in Glassfish logs, just the error 503. > All I can say is that if I remove the library, pages which don't use > Tomahawk work. > > Steve Colombié. > > >> Are there any more information you could give us regarding >> this problem? Are there any exceptions that are thrown? >> "error 503" doesn't provide much information for isolating >> the problem. >> >> Christian >> >> >> On Friday 31 July 2009 11:30:03 Steve Colombié wrote: >> >>> >>> Hello everybody, >>> >>> I'm trying to install Tomahawk, but it always gives me a server error. >>> >>> I'm using Netbeans 6.5, JSF 1.2 (Sun implementation) and Glassfish V2. >>> I've followed the Setup Guide : >>> - Add the tomahawk.jar library to the WEB-INF/lib directory >>> - Configure the filtrer in web.xml >>> - Add the the taglib to my pages when I use Tomahawk components >>> >>> But when I browse any page of my application (even those which don't use >>> Tomahawk components), it gives me a "error 503". >>> >>> Does anybody have any hint about this ? >>> >>> Thanks in advance, >>> Steve Colombié. >>> >> >> >> >> > > > >

