[jboss-user] [JBoss Seam] - Re: Seam/jBpm deployment on linux - need hints

2008-02-09 Thread jteb
It sounds to me as a difference between OS installs of Glassfish. Maybe you should take your problem to the Glassfish forums (or whatever they have, I'm not familiar). Not trying to be rude, I just think they might be more able to help. This is not a SEAM issue. BTW, your English is better than

[jboss-user] [JBoss Seam] - Re: Exception handling with interceptors

2008-02-08 Thread jteb
I've been using Interceptors for this kind of work. However one can only define EJB3 interceptors at the class level. What I do is a workaround, which I find rather nasty, but since I haven't thought of another way yet and this works, I'll point it out. I define an annotation which has Intercep

[jboss-user] [JBoss Seam] - Re: URGENT: question on seam filter in web.xml

2008-02-07 Thread jteb
Which version of Seam? Which version of JBoss AS? How was this web.xml generated? The combination has always worked fine for me. And please use code tags. Regards, Jan View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4127609#4127609 Reply to the post : http:/

[jboss-user] [JBoss Seam] - Re: Integration richfaces with seam

2008-01-27 Thread jteb
Well, I advice you to get the JBoss tools and download Seam (which includes loads of examples of using Seam with RichFaces) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4123928#4123928 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting

[jboss-user] [JBoss Seam] - Re: Force method to be run before page redirect (no pages.xm

2008-01-24 Thread jteb
It's been a while, but from the top of my head: | @Target(TYPE) | @Retention(RUNTIME) | @Interceptors(QuestionRemovedInterceptor.class) | public @interface QuestionRemoved {} | | @Interceptor | public class QuestionRemovedInterceptor { | |@AroundInvoke |public aroundI

[jboss-user] [JBoss Seam] - Re: Force method to be run before page redirect (no pages.xm

2008-01-24 Thread jteb
sorry InvocationContext View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4123158#4123158 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4123158 ___ jboss-user mailing list jboss-u

[jboss-user] [JBoss Seam] - Re: Force method to be run before page redirect (no pages.xm

2008-01-24 Thread jteb
I guess you could use an Interceptor on the action-method. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4123153#4123153 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4123153

[jboss-user] [JBoss Seam] - Re: Retreiving data based on displayed data

2008-01-04 Thread jteb
Can't you use a stateful bean with an @Factory annotated method to load you data? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117070#4117070 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117070

[jboss-user] [JBoss Seam] - Re: Get request parameters from current page

2007-11-07 Thread jteb
@RequestParameter(required=false) should do the trick, right? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4102419#4102419 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4102419 ___

[jboss-user] [JBoss Seam] - Re: Identity.hasPermission

2007-10-12 Thread jteb
Thank you very much. I was thinking about something like that, but didn't know whether I could just extend / wrap it. I'll give it a go tonight. Thanks, Jan View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4094711#4094711 Reply to the post : http://www.jboss

[jboss-user] [JBoss Seam] - Identity.hasPermission

2007-10-12 Thread jteb
Hi, I was going through the sources of seam-1.2.1.GA and 2.0.0.CR2 and noticed something I found odd. According to the documentation, I can use s:hasPermission to check for certain ACL like permissions. However in the code when I click through the functions, I get to checkPermission, which cal