Questions tagged [jboss-seam]

JBOSS Seam is a web application framework developed by JBoss, a division of Red Hat.

Official site

http://seamframework.org/ is the official of JBoss Seam.

Online tutorials

50 questions
4
votes
1 answer

Deploying a Seam project (war file) on Tomcat 7 - Maven: two components with same name

[EDIT] The working project can be found at: https://github.com/joergi77/JSF2_Richfaces4_Seam_23 [/EDIT] When I deploy my project on a Tomcat 7.0.57 (has been a JBoss ear projekt, I'm changing the structure to a war file), I'm not getting an error,…
Joergi
  • 1,593
  • 2
  • 36
  • 74
4
votes
1 answer

Could not instantiate Seam component: register

I'm trying to run Registration Example http://docs.jboss.org/seam/2.3.0.Beta1/html/tutorial.html in JBoss Seam 2.3 via JBoss Tools. I created the project using JBoss Tools and not by command line. Then I made User.java, Register.java,…
3
votes
0 answers

Creating a custom filter in Jboss Seam

I have backing Bean around which I would like to have a filter. I tried creating one using the following- @Startup @Filter(around="com.myapp.action.ViewAttachment") @Name(value="TestFilter") @Scope(ScopeType.APPLICATION) @BypassInterceptors public…
Amit
  • 315
  • 3
  • 5
  • 16
2
votes
1 answer

ConvertDateTime does not get timezone defined in web.xml

I'm using f:convertDateTime to format a dateTime in a datatable. I set the following context parameter in web.xml to explicitly set the timezone to system timezone:
Ronaldo Lanhellas
  • 2,134
  • 4
  • 27
  • 58
2
votes
0 answers

Deploying JBoss Seam 2.3 to JBoss AS 7.1.1 with Intellij IDEA 15 Ultimate

I create a JBoss Seam project with a maven archtype, mvn archetype:generate \ -DarchetypeArtifactId=jbosscc-seam-archetype \ -DarchetypeGroupId=de.akquinet.jbosscc \ -DarchetypeVersion=1.5 \ …
Bahri Gökcan
  • 940
  • 3
  • 10
  • 20
2
votes
0 answers

Create PDF file through the batch file called by Web Application

I have a web system using jboss seam. There is an functionality that invokes a batch file. The batch file creates a pdf file using org.w3c.tidy.Tidy. When I run the batch file by hand, it works very well, but, unfortunately, when I run it by the web…
2
votes
1 answer

google visualization + jboss seam 2

I'm trying to use google visualization api in jboss seam 2 project. I have created a simple example which is actually taken from Google Quick Start page.