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

Debug JSF Phase with Seam 3 / Seam Faces

I'm trying to resolve a weird behavior in my application, and to help me I would like to debug the JSF phases (i.e display the sequence) I use Seam 3 with the SeamFaces Module. I've trying to use the @Observes annotation as explained in the…
Julien Lafont
  • 7,869
  • 2
  • 32
  • 52
0
votes
1 answer

What do HardCoded annotation?

I want to know what do @HardCoded annotation. I don't found any documentation when I search in Google. Thanks.
Mounir
  • 11,306
  • 2
  • 27
  • 34
0
votes
1 answer

@Requires annotation of Seam Solder should receive a string or a class?

Seam Solder documentation says that the @Requires annotation requires an array of Class objects as a parameter. However, when I try to use it (from Seam Solder 3.0.0.Final API artifact - not the impl artifact, it is worth noting) Eclipse informs me…
brandizzi
  • 26,083
  • 8
  • 103
  • 158
0
votes
2 answers

How to redirect page request by user loggedin

I am developing a site with Seam 3 and JBoss 7. I'm using Seam security and JSF. The front page of the site has the login controls. When the user enters his credentials he is redirected to his user page "/MySC". But if the logged-in user just types…
RLuceac
  • 372
  • 1
  • 3
  • 12
0
votes
1 answer

How to enable Seam 3 debug level logging on a Glassfish server

After migrating to CDI/Seam 3 I'm getting these messages in my server log: WARN: Cannot attempt extension on null. I saw a post in the Seam 3 forum (which is not accepting new posts at present) with some logging from…
Oversteer
  • 1,778
  • 1
  • 22
  • 38
0
votes
1 answer

How to customize seam 3 credentials?

is there any way to customize seam 3 credentials object? I need to add one more attribute to credentials (captcha). I tryed the following code: @Named("credentials") @SessionScoped public class Credentials extends CredentialsImpl { private…
0
votes
1 answer

Passing Parameters With Seam, RichFaces & PopupPanel

I'm trying to get a little application working using Seam 3, RichFaces 4 and hitting a few troubles with passing some parameters around. I've tried a lot of different things but I keep falling at the final hurdle. I'm carrying through a customerId…
Lee Theobald
  • 8,461
  • 12
  • 49
  • 58
0
votes
2 answers

Seam3 Solder logging

I've just started using Seam Solder and their logging module looks interesting http://docs.jboss.org/seam/3/solder/latest/reference/en-US/html/logging.html See code at bottom of post for my test example. A few issues that has risen from trying to…
Rasmus Franke
  • 4,434
  • 8
  • 45
  • 62
0
votes
1 answer

Seam 3 - Security Module - Identity Management with JPAIdendityStore

I'm using seam 3 security module with identity management with JpaIdentityStore, postgres and Jboss 6 to create users on my database, but it's not working. I'm following the example provided…
Felipe
  • 1
  • 2
0
votes
1 answer

Anyone have experience with Seam 3?

Currently I'm working on a large multi-user, communication-heavy project which uses Seam 2 and RichFaces 3. It's been in development for about 5 weeks now. I'm at a stage where I've found some limitations with RichFaces and will need to start using…
NRaf
  • 7,407
  • 13
  • 52
  • 91
0
votes
1 answer

Using f:event to inject a ConversationScoped bean into a ViewScoped bean

I can't inject a ConversationScoped bean into a ViewScoped bean, because the ConversationScoped bean could be shorter lived than the ViewScoped one, or vice versa, depending on whether or not the ConversationScoped bean is long-lived. To get over…
Brian Leathem
  • 4,609
  • 1
  • 24
  • 44
0
votes
1 answer

seam solder (former weld-extensions project) is not initialized

I want to use logger in my java web application. I'm using JBossAS 6.0.0.final, cdi (weld), jsf ... etc. Seam solder proposes to use an abstract logger is not tying to a concrete implementation (slf4j, log4j, etc) using jboss-logging api. In order…
user268292
  • 71
  • 1
  • 3
0
votes
2 answers

CDI (Weld) / Seam 3 Persistence module / Glassfish 3 - Unexplainable exception when starting server

I am using Weld, Jboss' implementation of CDI. JPA/Hibernate for persistence. For something different I am giving it a crack on Glassfish 3 which I have not used before. I am using Maven for dependency management. As CDI doesn't have transaction…
Aaron Chambers
  • 1,354
  • 2
  • 12
  • 27
0
votes
1 answer
0
votes
1 answer

JUnit Testing with bean injection

I am trying to test my web application using JUnit. I saw that there is cdi-unit which seems pretty nice or Arquillian with JBoss (I am on Seam3, JBoss 7.1.3) but I can't make it work. As soon as I try to inject a bean (and I need to inject…
jojo____
  • 247
  • 3
  • 16