[jboss-user] [JBoss Seam] - Re: Configuring Facelets into Seam

2007-05-10 Thread petemuir
Post the cns.genoscope.console.TaskFormLibrary class View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4044704#4044704 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4044704 ___

[jboss-user] [JBoss Seam] - Re: Configuring Facelets into Seam

2007-05-10 Thread Fleury
The TaskFormLibrary class : package cns.genoscope.console; import com.sun.facelets.tag.AbstractTagLibrary; import com.sun.facelets.tag.TagLibrary; import javax.faces.context.FacesContext; import javax.faces.application.Application; public final class TaskFormLibrary extends AbstractTagLibrary

[jboss-user] [JBoss Seam] - Re: Configuring Facelets into Seam

2007-05-10 Thread petemuir
Odd, I think you have a classloading problem. Is the TaskFormLibarary in the war classes? Check you don't have more than one copy of facelets.jar hanging around. Why not just use xml to set up your components? View the original post :

[jboss-user] [JBoss Seam] - Re: Configuring Facelets into Seam

2007-05-10 Thread Fleury
Thank you Petemuir for your help I'm using Jboss server (jboss-4.0.5.GA) and my TaskFormLibrary class appears only in the subdirectory jar of the exploded-archives folder, with the other classes of my session beans but not in the war subdirectory. Found no copy of facelets.jar. anonymous wrote

[jboss-user] [JBoss Seam] - Re: Configuring Facelets into Seam

2007-05-10 Thread Fleury
Petemuir, I'm coming back to this point : anonymous wrote : Check you don't have more than one copy of facelets.jar hanging around. I have a jsf-facelets.jar file in the lib directory and this declaration in my application.xml file : jsf-facelets.jar Is this the right

[jboss-user] [JBoss Seam] - Re: Configuring Facelets into Seam

2007-05-10 Thread petemuir
You need to have jsf-facelets.jar in WEB-INF/lib (stuff *will* break otherwise) and if you want to do the ClassLibrary in code, you'll need to make sure its on the war classloader. https://facelets.dev.java.net/nonav/docs/dev/docbook.html#taglib-create (or look at the

[jboss-user] [JBoss Seam] - Re: Configuring Facelets into Seam

2007-05-10 Thread Fleury
ok, I look the jboss-seam-ui.jar/META-INF/*.taglib.xml for an example Again, thanks a lot petemuir for your help View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4044731#4044731 Reply to the post :