Questions tagged [seam3]

Seam 3 is a collection of modules and developer tooling tailored for Java EE 6 application development, with CDI as the central piece.

Seam 3 is a collection of modules and developer tooling tailored for Java EE 6 application development, with CDI as the central piece. http://seamframework.org/Seam3

118 questions
0
votes
1 answer

Problems migrate from Seam3 to DeltaSpike

I'm just testing to migrate from Seam3 to DeltaSpike, everything is ok if there is only one EntityManager in a bean, but there will be a error if add other EntityManager(other datasource): JBAS010152: APPLICATION ERROR: transaction still active in…
yuan
  • 1
  • 1
0
votes
1 answer

Seam - Redirect last visited page after logout/login

I am working with seam 3 and I am trying to get the user back to the last page he visited. Like when I restart my server, the session is cleared and I am logged out. Now when I log back in I would like to get back directly to the page I was on…
jojo____
  • 247
  • 3
  • 16
0
votes
1 answer

How to delay invocation of @Schedule bean?

I have recently migrated an app from SEAM 2.2 > 2.3 In SEAM 2.2.x I used MDB with Quartz for scheduling, now I am using EJB 3.1 I use @Schedule instead Problem is that on startup the @Schedule beans are being invoked before SEAM has finished…
DaveB
  • 2,953
  • 7
  • 38
  • 60
0
votes
1 answer

Alternative to Deltaspike Multi-Window Handling in Seam 3 Applikation

I have problems with the Multi-Window Handling in my appliacation. I currently using Conversation Scope to enable multi window / tab handling but in case the user opens a link (button) in a new tab the conversation is shared between the old and new…
user1127860
  • 150
  • 2
  • 14
0
votes
1 answer

Problems with Seam 3 on WildFly 8 Final

I'm using WildFly 8 and I'm migrating my Java EE6 project to Java EE7 due to some WebSocket stuff. In Maven, I use the following…
mitchkman
  • 6,201
  • 8
  • 39
  • 67
0
votes
1 answer

JSTL c:forEach causes CDI (Seam 3) @ViewScoped bean to invoke @PostConstruct on every AJAX request using Mojarra 2.1.18+

This is a followup question to some questions on stackoverflow.com: JSTL c:forEach causes @ViewScoped bean to invoke @PostConstruct on every request Why does @PostConstruct callback fire every time even though bean is @ViewScoped? JSF However, we're…
Kawu
  • 13,647
  • 34
  • 123
  • 195
0
votes
0 answers

Caused by: javax.resource.ResourceException: IJ000459: Transaction is not active

We are using the following stack: -seam 3 -hibernate 4.x -jboss 7.2 -jpa 2 -primefaces 4 I have 2 sets of error logs which I have been reviewing for days but couldn't really find the problem. Local testing doesn't show this log only in production…
czetsuya
  • 4,773
  • 13
  • 53
  • 99
0
votes
0 answers

deltaspike integrating @ConversationGroup?

Recently I have been trying and testing deltaspike in my leisure times. it says it integrated codi and seam 3. but how come i dont see @conversationGroup in it? any clue anyone? thanks
Ikthiander
  • 3,917
  • 8
  • 37
  • 54
0
votes
2 answers

Overridden @PostConstruct called twice on CDI view-scoped bean (Weld, Seam 3)

We're having problems with duplicate @PostConstruct calls on a base class hierarchy. Here's the base class first: public abstract class AbstractManager implements Serializable { private List entities; @PostConstruct // when annotated…
Kawu
  • 13,647
  • 34
  • 123
  • 195
0
votes
1 answer

seam-faces 3 makes JBoss7.1.3 undeployed failed

Does anyone encountered the problem I specified above? I tried it on several web projects and produced the same result whenever I add dependency to seam-faces and deploy the app in JBoss and undeploy the app it doesn't get undeploy. What's weird is…
czetsuya
  • 4,773
  • 13
  • 53
  • 99
0
votes
1 answer

seam3-security page restriction without using seam-faces

Is there other way to use seam3-security restricting page access via permission without using seam-faces? In seam-faces we use something like: @ViewConfig public interface PagesConfig { static enum Pages1 { @ViewPattern("/*") …
czetsuya
  • 4,773
  • 13
  • 53
  • 99
0
votes
1 answer

What´s happening with Deltaspike development?

The last release of deltaspyke was release in August, 2012. The development still continuous? The project have future? I was thinking about use my faces CODI, because I don´t see any progres in deltaspike in recent months. I would like to have an…
0
votes
1 answer

Seam 3 Security not working on JBoss7 custom authenticator class not found

I've been trying seam3 security in Jboss7.1.3 with an ear project generated with maven archetype (javaee6-jboss-ear) but I can't get around the error wherein my custom class cannot be loaded. Caused by: java.lang.ClassNotFoundException:…
czetsuya
  • 4,773
  • 13
  • 53
  • 99
0
votes
1 answer

Configure failover for Jboss Seam mail

I need to implement failover functionality for sending mails using jboss seam. I tried to configure two JNDINames in mail-service.xml. But I'm not getting how i can set 2nd JNDI name in code. Also, I'm not getting how can i set smtp host in code.…
Saurabhcdt
  • 1,010
  • 1
  • 12
  • 24
0
votes
2 answers

seam-cron , @Expiration and @IntervalCron?

I was migrating my project from seam 2 to seam 3 . In seam 2 we have @Expiration and @IntervalCron annotations but in seam-cron we don't have any such annotations. @scheduled is there but it's incomplete for my requirement. I have gone through…
Rahul Razdan
  • 419
  • 4
  • 11