Log in to follow, share, and participate in this community.
Thread Seam 3 + Filters
Seam 3 + Filtershi,. In seam 2 , we have AbstractFilter . I checked the code it internally implements Filter from javax.servlet.Filter . there is also @Filter annotation which helps seam master filter to reach our filter a...
start seam examplesHello, could someone help me with the seam examples? I dont know how i get them to work. My steps so far: - installation of Jboss developer studio - download and configuration of jboss 7...
seam-catch - @sendHttpError not found ??hi , in seam 2 we have @HttpError annotation . i found this link http://www.parleys.com/#st=5&id=2204&sl=14 during the presentation they talked about @sendHttpError annotation in seam-catch. ...
Thread @Asynchronous , @Expiration and @IntervalCron in seam 3
@Asynchronous , @Expiration and @IntervalCron in seam 3hi, During migartion of my project , I faced issues realted to scheduling . in seam 3 @asynchronous is in Ejb and seam-cron both which i have to use ??? @Expiration and @IntervalCron ,...
Renderer in seam 3 or CDI ???hi, In seam 2 we have a Renderer which we can use with Email functionality to render xhtml pages . see http://www.seamframework.org/120157.lace -- SEAM 2 now in seam 3 i can see javax.faces.Re...
Seam and multi threadingHello, Currently, I have to do perfermance optimization of one of our Seam applications. And we have a functionality which clones thousands of objects. So I thought of using multi-threading to speed it up and ...
ServletContexts in seam 3 ??hi , in seam 2 we have ServletContexts class which i was using like :- ServletContexts.instance().getRequest().getSession().setAttribute("",""); ServletContexts.instance().getRequest().getSession().ge...
Thread Seam3 or CDI equivalent for org.jboss.seam.core.Interpolator
Seam3 or CDI equivalent for org.jboss.seam.core.InterpolatorDoes Seam3/CDI expose access to a class that I can use for Interpolation? In Seam2 I was using org.jboss.seam.core.Interpolator.interpolate() to interpolate XML files (read from disk) before transformation and publi...
Thread seam 3 IllegalStateException after session timeout
seam 3 IllegalStateException after session timeoutI'm running a simple Seam 3 app on JBoss 7.1.1.Final with the following in WEB-INF/lib: prettyfaces-jsf2-3.3.3.jar richfaces-components-api-4.2.0.Final.jar richfaces-components-ui-4.2.0.Final.jar richfaces-...
BypassInterceptors modsIs there going to be any mods to @BypassInterceptors in Seam 3? Specifically, in Seam 2.x there is no way to selectively deactivate interceptors for a component, it's all or nothing. More fine-grained control ...
seam 3 + Expressions + ValueExpressions ??hi , I'm working on migration from seam 2 to seam 3 . in seam 2 we have 2 classes named : Expressions and ValueExpression . in seam 3 these classes i can find easily but are different as follow...
Context Object in seam 3 and CDI ?hi , I'm Doing a migration for my project and i faced issues with Context Object. in seam 2 we can use import org.jboss.seam.contexts.Context; import org.jboss.seam.contexts.Contexts; &...
Seam3 persistence example/forgeHy, I'm currently trying to get Seam3 persistence running. I'm always getting "object is detached". Does anybody have a small working example which he could share? I just want to build a simple CRUD applica...
Thread Seam+CDI Event Probleam - Observer does not work
Seam+CDI Event Probleam - Observer does not workHi all, I'm in trouble with Observers. I have a superclass that fire event and another class responsible for observe the event, but it's not working. My superclass: public abstract class Abstr...
UndeclaredThrowableException - ErrorHi, I have following problem, at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) [rt.jar:1.6.0_33] at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorIm...
Thread @handlesExceptions shows exception in eclipse console
@handlesExceptions shows exception in eclipse consolehi , I'm using @handlesException to catch AuthorizationException its working fine . but the exceptions is visible in console ( which i don't like ) my class is like this:- @HandlesExceptions p...