Questions tagged [seam]

JBoss Seam is an open source enterprise framework in Java. Because it fulfills some of the missed features of Java technologies such as JavaServer Faces and Enterprise Java Beans, Seam has positioned itself as the prototype for Java EE specifications.

JBoss Seam is an open source enterprise framework in Java. It includes among its features

  • Integrates presentation layer and server side business and persistence logic transparently
  • Dependency injection
  • Universal contextual model
  • Built-in persistence layer by using mediator pattern
  • Transaction management
  • A powerful event model
  • Bult-in Security model
  • Built-in application generator (customizable)

Because it fulfills some of the missed features of Java technologies such as JavaServer Faces (presentation layer) and Enterprise Java Beans (server side business logic), Seam has positioned itself as the prototype for Java EE specifications such as Contexts and Dependency Injection for the Java EE platform (contextual model), JavaServer Faces 2.0 JSR-314 (presentation layer) and Bean validation JSR-303 (validation).

Although Seam has built-in support for some Java EE technologies, you are free to choose the technology that fits better your needs.

Recommended readings

1371 questions
0
votes
2 answers

Seam - No Active Event Context

I am having problems with my Seam application, I'm not sure if it is from using Maven along with Jetty for testing or simply a misconfiguration on my part. The error I am getting is rather simple, when Seam attempts to close the event context, it…
Walter White
0
votes
1 answer

Can Richfaces components be inserted into rich:editor component?

I have another Richfaces question which may seem rather weird. I am developing a web-based application, using Richfaces for a front-end, that allows users to create templates for certain documents. For example: the user is presented with a…
Boris Golman
  • 77
  • 2
  • 11
0
votes
1 answer

seam i18n properties file from external jar

I'm trying to load i18n properties file via core:bundle-names tag in seam components.xml conf file. If I reference a properties file within war project, it's eventually loaded and I can access values from facelets with #{messages['theKeyValue']} EL.…
tugcem
  • 1,078
  • 3
  • 14
  • 25
-1
votes
2 answers

Seam 2.1 issue: losing theme

I'm developing a web application with Seam but suddenly the theme has stopped working. I've reverted the latest changes and it doesn't solve it. I've even reinstalled the JBoss (5.1) server but it doesn't fix it either. I see no error in the logs,…
Pere Villega
  • 16,429
  • 5
  • 63
  • 100
-1
votes
3 answers

Disable button on checkbox click

I have a xhtml page in which there can be 0 to 6 check boxes independent of each other. I want to make sure when all of them are checked, submit button is enabled. Let say there are 3 checkboxes, only when these 3 checkboxes are clicked, the submit…
Himalay Majumdar
  • 3,883
  • 14
  • 65
  • 94
-1
votes
1 answer

how do i set the hibernate session timeout in jboss-seam?

HOW DO I SET THE HIBERNATE SESSION TIMEOUT IN JBOSS-SEAM? I Have an upload interface with a for in server side that read line by line from a file. Each line is inserted in database and after import around 4.000 lines the connection is lost and the…
Cateno Viglio
  • 407
  • 11
  • 25
-1
votes
2 answers

Asynchronous method in seam always return null QuartzTriggerHandle ?

QuartzTriggerHandle object that returned by Asynchronous method in Seam always 'null', the job starts but cann't cancelled or paused. In, seam forum i found the next example that should be work,but it doesn't work with…
aatsy
  • 23
  • 8
-1
votes
1 answer

How to capture input entered within a rich:modalpanel?

I have an edit buttton on a search result page, That button whenever pushed should prompt the user to enter a date prior to continuing on to the next page. Button without the modal feature:
Brian
  • 13,412
  • 10
  • 56
  • 82
-1
votes
1 answer

java ee javamail how to log out going emails

I use seam mail and javamail to send emails from our java ee web application and would like to log the rendered html of each to be viewed later so we can keep a record of what is being sent. Has anyone done this or seen it done as there is not a…
Greg222
  • 41
  • 4
-1
votes
1 answer

WELD-001409 Ambiguous dependencies for type [SeamTransaction]

I have the following exception : 9:12:29,190 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-10) MSC000001: Failed to start service jboss.deployment.unit."SisneGym-ear.ear".WeldStartService: org.jboss.msc.service.StartException in service…
-1
votes
1 answer

Trying to catch ehcache Element ClassCastException

I'm having trouble with ehcache trying to cache a table which is bigger than the storage I set to it. Although the application do not fail (because it end up performing the query in the database and returning the data) my log is getting full of…
user4122522
-1
votes
1 answer

jboss seam + quartz scheduler 2.2.1 + clustering

I have problem with configuration quartz version 2.2.1 with seam framevork. Now a get error in log: [24.4.14 12:51:37:843 SELČ] 0000000b SystemOut O ERROR manage:3853 - ClusterManager: Error managing cluster: Failure updating scheduler state…
-1
votes
1 answer

How do you use Seam page parameters?

I have a bunch of Seam form pages; each has a command button that calls a sendEmail() method in a custom utility class. The method looks like this: public String sendEmail(String mailFile) throws SMTPSendFailedException { status = "Processing…
Alex
  • 34,699
  • 13
  • 75
  • 158
-1
votes
1 answer

make drop-down appear when checkbox is selected

I am making a Java/HTML program using Seam. I am trying to get an to show up when a is checked. I got it to do it by using "onclick="form.submit()" in the checkbox and putting the drop-down in an
user1423793
  • 279
  • 2
  • 6
  • 16
-2
votes
0 answers

JSF seam application adding extra ".seam" next to the file , how to remove it

UI console error: enter image description here richfaces-impl.3.3.3 not able to recognize those files faces *.seam i just tried to update servlet-mapping of web.xml but no luck. Anything do i need to add/update in web.xml or need…
1 2 3
91
92