Questions tagged [seam2]
220 questions
0
votes
1 answer
JavaScript TO Bean in SEAM + JSF 1.2
I want to save the variable "position" in my BEAN, does anyone know how to do this? I'm starting in javascipt.
function placeMarker(position, map) {
var marker = new google.maps.Marker({
position: position,
map: map
});
…

João Proença
- 13
- 5
0
votes
2 answers
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 instructions here I have created a class that…

DaveB
- 2,953
- 7
- 38
- 60
0
votes
1 answer
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…

czetsuya
- 4,773
- 13
- 53
- 99
0
votes
1 answer
SEAM pages.xml conditional redirect
I am using SEAM 2.2.2 (JBoss AS6), trying to implement the following navigation logic:
I have 3 user types: user, client, admin
For each type I am using the following page rules...
…

DaveB
- 2,953
- 7
- 38
- 60
0
votes
1 answer
Seam unexpected createInstance call
I have a xhtml page, in which i'm trying to open a dialog and set/change some values. Page is normally backed by MemberInformationService, in this page's page.xml, i call a wire function to set some values into MemberLogHome's instance. Everything…

YnScN
- 35
- 5
0
votes
1 answer
Why is richfaces visiting nodes that have not been specified in the execute attribute?
The setup I'm working here is JSF2 in JBoss AS7 with Seam-2.3.
I've a manager bean that get's called via in a big template via an like so:

mabi
- 5,279
- 2
- 43
- 78
0
votes
2 answers
What is conversation in jboss seam?
I am new to seam framework and have been using it since few weeks now. I came across some tags related to seam conversation. But I did not understand what conversation means and when to use it?
Can anybody give me some details about this with an…

Newbie
- 2,979
- 9
- 34
- 41
0
votes
1 answer
@ByPassInterceptors in seam 3?
@ByPassInterceptor
annotation is removed from seam 3 that i know .
and as per CDI documentation ,
By default, a bean archive has no enabled interceptors bound via interceptor bindings.
so is it safe if i remove @BypassInterceptor annotation…

Rahul Razdan
- 419
- 4
- 11
0
votes
1 answer
Jboss Seam Mail 2.2.1: m:message recognized as UIInstructions
I'm trying to run Jboss Seam Mail example from here http://docs.jboss.org/seam/2.2.1.Final/reference/en-US/html/mail.html
The mail isn't sent and there's no error in the log.
Using Eclipse debugger I detected that m:message tag from the template is…

Petro Verheles
- 141
- 9
0
votes
1 answer
How to use Spring Managed Hibernate Session in Seam?
Most recent project I working where I trying to use Spring (3.1.1.RELEASE) Managed Hibernate Session into Seam (2.3.0.Final).
In JBoss Seam Documentation where they explain How to use Seam Managed Hibernate Session in Spring. But our requirement is…

Śhāhēēd
- 1,812
- 6
- 23
- 44
0
votes
1 answer
Jboss7 MDB MailListener to a mail redopurce adapter
I'm porting a seam2/hibernate ear app to jboss7.1.1FINAL
I've included in ear\lib the jar mail-ra.jar that contains sem interfaces I neaded.
But it looks like that the mail-ra.jar lib is not find during the deploy I got the error above
Any…

simonC
- 4,101
- 10
- 50
- 78
0
votes
1 answer
OWASP TOP 10 - 4. Insecure Direct Object References - other way then ESAPI in JSF 1.2 + JAVA + SEAM
Is there anything already integrated in JSF 1.2 or SEAM 2.2.2 to prevent A4-Insecure Direct Object References
I know the ESAPI functions to do it, but i don't want to include another framework into my project if not necessary, is there anything…

Joergi
- 1,527
- 3
- 39
- 82
0
votes
3 answers
End conversation when leave page in Seam
I have a wizard in my Seam project which has four pages. When user starts the wizard by coming to the first page (wizard1.xhtml) I start a conversation. To do that in my pages.xml I have following code.
…

prageeth
- 7,159
- 7
- 44
- 72
0
votes
1 answer
rich:contextmenu display after reRender oncontextmenu
I'm using Richfaces 3.3.3
Is it somehow possible to reRender a contextmenu and after it is rerendered, display it?
Currently I use a4j:support with the event onmouseover to reRender the contextmenu according to some values attached to the pointed…

gadeynebram
- 725
- 2
- 6
- 22
0
votes
1 answer
Seam 2.2 change injected field value using reflection
I use Seam 2.2. I want to get a private field from a Seam component using Reflections.
So I have:
LocalizationEditActionRoot localizationEditActionRoot = (LocalizationEditActionRoot) Component
…

spauny
- 4,976
- 9
- 44
- 61