Questions tagged [seam2]
220 questions
0
votes
1 answer
FlushMode doesn't work
I have a problem with the flush Mode on a conversation:
If I set the flush Mode to manual in the @Begin(..) annotation, Hibernate still populates any changes on the attached entity directly to the database.
CustomerBranch is…

nag
- 647
- 6
- 25
- 43
0
votes
1 answer
Seam file component in javaee6
I'm trying to replicate the loading of a property file of seam in javaee6 but still don't know where to start.
In seam we can load a property file as a seam component by defining it in the components.xml:

czetsuya
- 4,773
- 13
- 53
- 99
0
votes
1 answer
javax.servlet.ServletException at Jboss 7.1 Seam 2.2.1 JSF 1.2 project environment
We've developed a web application using Jboss 7.1 + Seam 2.2.1.Final + JSF 1.2 + Richfaces 3.3.3.Final and JBoss Maven Integration 1.0 . We've deployed the our .war file to the application server successfully. But one of the .xhtml page we want to a…

Pınar Göçebe
- 101
- 2
- 12
0
votes
2 answers
seam 2.2.2.Final looses translations
I'm using seam 2.2.2.Final with Richfaces 3.3.3.Final on JBoss AS 6.
My application is translated into 2 languages (dutch and english).
Sometimes (varying from hours to days) the web application looses the translations. It then only displays the…

gadeynebram
- 725
- 2
- 6
- 22
0
votes
2 answers
This webpage has a redirect loop error after opened any page of seam application in jboss AS 7.1
My project is using seam 2.2.2 Final, and the application server is Jboss 7.1. After a long deployment process, finally I can deploy it successfully. But when I attempt to open it in the browser, I get error like this:
"This webpage has a redirect…

Pınar Göçebe
- 101
- 2
- 12
0
votes
1 answer
EntityManager is not persisting with merge and when flushed i get a could not initialize proxy - no Session is thrown
My application is written in Seam(2.2.1.CR2) and in a recent update I implemented a field called points for my User entity. This field should hold points aggregated from a numerous other fields and actions, so since I have a database with tons of…

jakob
- 5,979
- 7
- 64
- 103
0
votes
1 answer
Is seam-gen still compatible with glassfish 3.1.2?
Currently I'm trying to deploy a web app in ear format in glassfish app server.
Following the instructions from jboss on how to use seam-gen, I was able to create the project. But when I invoked gf-deploy, I got the ff error:
gf-deploy-datasource:
…

czetsuya
- 4,773
- 13
- 53
- 99
0
votes
2 answers
Form validation for rich:togglePanel
In my application I've created a wizard. It seems like I can not switch panels because validation fails on a non displayed panel.
The wizard has this layout:

gadeynebram
- 725
- 2
- 6
- 22
-1
votes
1 answer
How to navigate to different pages on the basis of query params by jsf page initialization in the corresponding controller
@Factory("loginContext")
@Begin(join = true)
public LoginContext initLoginContext() {
if (loginContext == null) {
loginContext = new LoginContext();
}
loginContext.setLanguageCode(LocaleSelector.instance().getLanguage());
…

Pratap
- 1
- 3
-3
votes
1 answer
How to resolve an exception related to rest api POST request?
I have a call from angular 5 app:
const httpOptions = {
headers: new HttpHeaders({ 'Accept': 'application/json', 'Content-Type': 'application/json' })
};
...
addTrip(trip: Trip): Observable {
return…

user2304483
- 1,462
- 6
- 28
- 50