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 JEE specifications.
0
votes
0answers
9 views
Unable to create JBoss Seam EntityManager
This is so frustrating, here is the error log for the past 3 days. I'm not really sure what to do. Please help me. The source is included below.
2013-05-20 10:52:44,197 ERROR [STDERR] ...
0
votes
0answers
10 views
Null object passed to an action on seam repeater
I have in a seam page for a table rows used a repeater like this:
<a4j:repeat id="r1279186" value="#{PatientList.entities}" var="Patient" rowKeyVar="rowIndex" >
<tr>
<td>
...
1
vote
2answers
39 views
When I Download Excel file from Java not show “Save as” Window, but the file is correctly saved
I want to show to the user the "Save as" Windows when i click in the option "Export File" of my app, the file is an excel 2007 than i have created with Apache POI. The file is correctly saved in the ...
0
votes
1answer
40 views
Map as backing property for rich:pickList
I want to use Map<String, List<Object>> as a backing property for rich:pickList as follows:
<ui:repeat value="#{bean.selectedMap.entrySet" var="entry"} >
...
1
vote
1answer
35 views
Using iText with JBoss 7 Java EE project
How to use iText with JBoss 7 Java EE project?
I created a Java EE Project using JBoss Tools
Group Id: org.jboss.tools.example
Artifact Id: multi
I'm now trying to use iText to create a PDF from my ...
3
votes
1answer
42 views
Replacing Seam with jee6 in conversation
A project I'm working on is going to upgrade from jee5/seam to jee6, where "those who descide" think it is a good idea to drop seam since most of its features have been incorporated into jee6. But I ...
0
votes
0answers
17 views
Richfaces does not get submit code when adding select in the xhtml file
I am having the following problem: there is a xhtml page which contains a form.
When this form is submitted by a button it calls to my pagebean and saves the values submitted to my database. But since ...
0
votes
0answers
7 views
JBPM 5 integration with Seam3
I am new to Seam3. I need to know how we can integrate JBPM 5 with Seam3.
I didn't get much information for this, if anybody knows about JBPM 5 integration with Seam3 please provide some information.
-1
votes
0answers
26 views
JavaEE 6 Security Frameworks? [closed]
We're big users of JBoss Seam 2.3 in our shop, but are looking to migrate completely over to JavaEE 6 for new development, now that Seam 2.x will not be receiving any more major new functions. One of ...
0
votes
1answer
26 views
Is Seam3 and Weld CDI the same thing?
may be it seems a foolish question but I really confused , is Seam3 and Weld CDI the same things? I am reading some posts which refers to "CDI (Weld) / seam3", should I consider them as the same ...
1
vote
1answer
51 views
Spring Equivalent of @Factory Annotation of Seam
we recently converted our project from JBoss seam to using Spring and JSF. Our controller needs to initialize some properties. Right now were simply using the constructor to call the initialization ...
0
votes
1answer
52 views
Internet Explorer destroys context on a:commandButton
I am experiencing some issues when using an a:commandButtonin Internet Explorer. I am using an <a:commandButton> with an action to add a details object. This is working just fine when I use ...
0
votes
1answer
19 views
rich:scrollableDataTable with a 2 row header
I'm developping a scrollableDataTable with an header having 2 row in it.
<rich:scrollableDataTable ...
<rich:column...>
<f:facet name="header">
<s:div>
<h:panelGrid ...
0
votes
2answers
55 views
Converting from Seam to weld CDI
I am converting a project from Seam to CDI and I am quite new in these fields. I am stuck in converting @Startup, @Cretae, @RequestParameter , @Out , @AutoCreate ,@ Destroy
tags, what is the ...
0
votes
0answers
8 views
Removing ViewExpiredException messages in the log in Seam
I was wondering if anyone has found a way to "deal" with the ViewExpiredException messages that are logged by Seam applications. We have dealt with the expection itself, everything redirects correctly ...
0
votes
2answers
49 views
unable to open Eclipse Juno IDE
I have just installed Jboss tools (Juno) plugin in Eclipse Juno, after i installed i restarted for getting the changes but from that time onwards it is not opening the IDE. It has stored the following ...
0
votes
0answers
42 views
Seam, JSF, and EL null checks
I'm working on a web application that is pretty vast. We're using Seam 2.2.1 and JSF, among other things. The full implementation isn't really relevant to the question, though.
We use plenty of XHMTL ...
0
votes
1answer
48 views
Updating entities in Extended Persistence Context
I have a form - Workflow where there are fields like wfName, assignedUser, dueDate, turnAroundTime. etc.
It is backed by an entity Workflow with a reference to the User entity as Many-to-One.
When a ...
0
votes
1answer
42 views
Select default value in h:selectOneMenu
I am trying to show a select one menu, such that the value selected by default is the name of the city (if there is a city in the variable "item"). If there is no value, I want to show the "nothing ...
2
votes
0answers
83 views
Setting a String in JSF and Seam using selectOneMenu populated by JS
I have a string that is being set from selectonemenu. The values in the menu depend on the selection in another menu, and are populated using JavaScript. Everything behaves fine on the front end (the ...
-1
votes
0answers
35 views
JBoss Seam without hibernate
I'm working on system using JBoss Seam and Hibernate, but I've been asked to get rid of Hibernate because the client doesn't want the system using an ORM.
The point is that the client wants to test ...
2
votes
1answer
96 views
Richfaces and JSF/AJAX Lifecycles
I´ve managed to get the code to do what I intended, but I do not understand a particular aspect of why this works. I´m running Seam 2.2.2 with Richfaces 3.3.3.
Here is the code from the xhtml page:
...
0
votes
0answers
61 views
Upgrading JSF from 1.2 to 2.1 on JBoss 5.1.1
I'm trying to upgrade my webapp from JSF 1.2 to JSF 2.1.
Here's what I'm running now:
| Item | Version |
| ----- | ----------- |
| JBoss | 5.1.1 (EAP) |
| Seam | 2.2.1 (EAP) |
| JSF | 1.2 ...
0
votes
0answers
59 views
Access nested properties in variable EL expression
Normally, I can access nested bean's property, in this case, address_name of address like this:
#{customer.address.address_name}
Let's say, I have a String:
String addressPath = ...
0
votes
0answers
31 views
Execute Callback when a4j:mediaOutput element Completes Rendering
Is there a way to call an action method or javascript function when an a4j:mediaOutput completes the rendering of its image? I checked and there is no oncomplete attribute for this element.
...
0
votes
0answers
35 views
Elegant solution for “already logged in” user in Seam
I'm using seam 2.1.2 and currently have an issue with linking from excel (link) to my application.
<page view-id="/mypage.xhtml" login-required="true">
...
0
votes
1answer
62 views
rich:calendar update backing bean after component edit
I have a rich:calendar component in a datatable:
<rich:column id="last_#{row.index}" >
<rich:calendar id="lcal_#{row.index}"
value="#{_obj.list[row.index].lastTaught}">
...
0
votes
0answers
10 views
org.jboss.seam.ConcurrentRequestTimeoutException randomly
I' ve made a web application using Jboss Seam 2.3 and Primefaces 3.5. I am getting this exception quite randomly and the worst part is that I need to restart my tomcat cause the aplication dont ...
0
votes
0answers
20 views
How to specify a absoulte path in seam pages.xml when I'm redirecting pages
The problem is when I want to typ something like this:
<exception class="javax.servlet.ServletException">
<end-conversation/>
<redirect view-id="/error.xhtml"/>
...
0
votes
0answers
22 views
SEAM Override POJO class
I am using the URL rewriter in pages.xml to remove the .xhtml extension from the login pages, unfortunatly I ran into this
problem whereby if a ViewExpirationException occurs, SEAM will reload the ...
0
votes
0answers
29 views
<s:fileUpload> is returning null value
while doing file upload using <s:fileUpload> component is returning to null .
application is using seam 2.1.2 integrate with Richfaces,Jsf
<h:panelGrid columns="2" cellspacing="1" ...
2
votes
1answer
52 views
Passing HTML into message bundle
I am in the process of 'Internationalising' my App, which is SEAM 2 / JSF 1.2 based
One thing that is annoying me is having HTML markup in the message bundle, I would like to avoid this if possible, ...
0
votes
2answers
70 views
SEAM localeSelector not injecting
I am using SEAM 2's LocaleSelector to set the locale in my application which works ok
I am also using JAWR's i18n message generator to make the messages available as a Javascript variable, as per the ...
2
votes
0answers
58 views
selenium server launching two test execution tabs in firefox
So as the title suggests, when launching my HTML suite with a custom firefox profile (also with multiwindow), the server is launching two tabs, both trying to execute the test, targetting the same ...
0
votes
0answers
79 views
How to access a bean in ServletContextListener's contextDestroyed
I have a JSF application that uses JSF 1.2 and Servlets 2.3 and Seam 2.2.0. I want to run a sort of backup everytime the application closes. I have tried using the ServletContextListener like this:
...
0
votes
1answer
51 views
Deploying a seam project in JBOSS (Developer Studio)
I trying to get some experience with the Seam Framework - JBoss Seam.
Me and a friend would like to develop a simple application, but we can't get anywhere. When he creates a project, he can run it ...
0
votes
2answers
102 views
Conversation scoped and jsf redirect
is it possible to maintaining conversation during redirect to external url?
I started paypal transaction with CDI conversation bean and next there is faces redirect to paypal page when I log in and ...
2
votes
2answers
386 views
Show success message and then redirect to another page after a timeout using PageFlow
How can I show a success message and then redirect the user to another page after a timeout of e.g. 5 seconds?
I need this for the login page after a successful login. I tried the following and I can ...
1
vote
2answers
107 views
Pass session values from action to servlet in seam framework
I am setting the session object in TestAction class and when i am trying to get the session object in TestServlet it returns null. Any one please tell me how to pass session from action class to ...
0
votes
1answer
22 views
Configuring multiple welcome pages in Seam
I have a Seam application where the Login page is the default welcome page when the application is accessed. I have a few other pages for eg. Change password or Reset Password which donot require any ...
0
votes
0answers
168 views
Richfaces datatable: partial update of a single column
We're undertaking a migration from Seam 2.2/Richfaces 3.3/JSF 1.2 to Seam 2.3/RichFaces 4/JSF 2. Having some trouble with partial updating of a richfaces datatable, using RichFaces 4. Our intention is ...
0
votes
2answers
112 views
Keep url parameters after clicking <h:commandButton>
I've got a page which takes an id as a url parameter and uses it to get an object and display data about it. On this page we've got a modal which includes a file upload component, so we cannot use ...
0
votes
1answer
56 views
primefaces does not render f:selecteditems
here is mycode: there might be some mistakes but I am doing right, I am thinking my problem is in Java code can you please throw some light, I am trying to render radio values.
<p:selectOneRadio ...
0
votes
1answer
33 views
Seam3 @ViewConfig redirect page https
I have seam 3.1.0 Final application, use @ViewConfig for security part, it works fine redirect http,
@ViewConfig
public interface AppViewConfig {
static enum Checkout {
@ViewPattern("/test/*")
...
0
votes
0answers
81 views
Illegal view ID…ID must begin with /
I am trying to redirect to a page in Seam using the following code:
public String getReferURL(){
return this.referURL;
}
public void setReferURL(String referURL){
this.referURL=referURL;
}
...
0
votes
0answers
44 views
stylesheet files css seam 2.3
Good morning, when I generate a project in seam 2.3 the css files are not generated, I would like to know if you use my css files seam seam 2.2 in 2.3?
The seam generate 2.3 css file?
Thank you!
0
votes
1answer
32 views
Which Seam component to use: <h:outputLink> or <h:commandLink>?
I'm very new to Seam and am just getting used to the different components available. I'm wondering which one I should use for this situation.
The answer to this question explains the difference ...
0
votes
1answer
44 views
How do I debug Facelets page rendering issues?
I am using JBoss 7.1, Seam 2.2.2.
When rendering a page I am getting the Facelets debug page with a NullPointerException without any line number indicating where on the page it is occurring. Are ...
0
votes
0answers
66 views
creation of custom skin with richfaces 4.3.0 CR1 [closed]
Hi I fallowed the pretty stright farword steps given in jboss community for creation of the new skin but it went in vein.
The Problem is that when I create a new skin for example ...
0
votes
1answer
98 views
JBoss7 + seam2.3 = java.lang.LinkageError: loader constraint violation: when resolving overridden method
We are trying to migrate seam2.2 + jboss4.2.3 to jboss7.1.1 + seam2.3 and we are currently facing:
Caused by: java.lang.LinkageError: loader constraint violation:
when resolving overridden method
...

