[jboss-user] [JBoss Seam] - Re: how can i use *.seam and *.jsf at the same time?

2008-01-27 Thread gringalet
thanks man :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123870#4123870 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4123870 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: how can i use *.seam and *.jsf at the same time?

2008-01-26 Thread gringalet
my faces-config.xml like this: ?xml version='1.0' encoding='UTF-8'? | !DOCTYPE faces-config PUBLIC | -//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN | http://java.sun.com/dtd/web-facesconfig_1_1.dtd; | | faces-config | | !-- i18n -- | |

[jboss-user] [JBoss Seam] - Re: how can i use *.seam and *.jsf at the same time?

2008-01-26 Thread [EMAIL PROTECTED]
Hi, why does it have to be a jsp file? Can't you convert it to an xhtml file? If I were you I would look at the JSF spec and see what context parameters are available. By default it would look for .jsp files but via the: javax.faces.DEFAULT_SUFFIX You change that to xhtml. cheers View the

[jboss-user] [JBoss Seam] - Re: how can i use *.seam and *.jsf at the same time?

2008-01-26 Thread gringalet
thanks a lot. i used a uploadbean developed by javazoom . they have no xhtml spec in their components. what can i do? i don't know how to upload a file via a xhtml file in jboss seam dvd store example. i believe you would tell me something about that. :) thanks. View the original post :

[jboss-user] [JBoss Seam] - Re: how can i use *.seam and *.jsf at the same time?

2008-01-26 Thread [EMAIL PROTECTED]
If you want to go the XHTML route, you need to define a blabla.taglib.xml for it and add the necessary context parameter for facelets to pick it up. There is info about it here facelets.dev.java.net , in the wiki I think there are taglib.xml files for other libraries you can have a look at.