[jboss-user] [JBoss Seam] - Re: @In with primitives

2007-03-07 Thread docjava
"[EMAIL PROTECTED]" wrote : Best practice I'd say is to use an Integer. Hi Shane, thanks for your time. While it obviously is a good idea to switch to Integer where null-references are wanted, the fact that i used an int initially is a good indicator, that null isnĀ“t that useful ;) I do not see

[jboss-user] [JBoss Seam] - @In with primitives

2007-03-07 Thread docjava
Hi My Task is to keep a few Parameters of a Conversational Bean as defaults in the Session scope. My first try is: @In(required = false, scope = ScopeType.SESSION) @Out(scope = ScopeType.SESSION) private int documentListPageSize=0; which gives me an exception in sun.reflect.Unsaf

[jboss-user] [JBoss Seam] - Re: ajax4jsf validation in 1.1.7.rc1

2007-02-26 Thread docjava
damn. that was stupid. thanks, works fine now. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4022572#4022572 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4022572 ___ jboss-us

[jboss-user] [JBoss Seam] - ajax4jsf validation in 1.1.7.rc1

2007-02-26 Thread docjava
hi something stopped working in 1.1.7. We have a simple named (non-entity or session) POJO like this: @Name("credentials") public class LoginCredentials { private String username; private String password; public LoginCredentials(){} @NotEmpty(message = "Bitte Passwort eingeben.")

[jboss-user] [JBoss Seam] - Broadcast Event to any component

2007-02-12 Thread docjava
Hi Is it possible to raise an Event that is sent to ALL components that define Observer methods no matter what Scope/Context they are in ? I happen to have some DataModel exporting components that may be interested in changed Data and thus should requery them. Any Idea how to do that ? Thanks

[jboss-user] [JBoss Seam] - Re: Master/Detail and Events

2007-02-12 Thread docjava
we are suffering from the same troubles. gavin mentioned in another thread, that raiseAsyncEvent can be used to notify observers outside of the current conversation. However we were not able to find out how this should be done. anyone ? View the original post : http://www.jboss.com/index.html