[jboss-user] [JBoss Seam] - Re: pojo.identifierProperty undefined error in CR1 release

2006-11-23 Thread Ci
The same fails for me, only Postgres is used instead. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3988212#3988212 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3988212 ___ j

[jboss-user] [JBoss Seam] - Re: Seam components in different jars

2006-11-14 Thread Ci
A-ha, I put an empty seam.properties file into the add.jar and it works now. Good, but very weird... Should be placed in FAQ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3985837#3985837 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posti

[jboss-user] [JBoss Seam] - Re: Seam components in different jars

2006-11-14 Thread Ci
I have a similar problem, a component is in the second jar. Seam from cvs, JBoss 4.0.5.GA. [EMAIL PROTECTED](ScopeType.STATELESS) | @Name("localeStuff") | @Intercept(InterceptionType.NEVER) | public class LocaleStuff { | public void select(ValueChangeEvent event) {...} | } lives in

[jboss-user] [JBoss Seam] - Re: JSF Exception handling

2006-11-14 Thread Ci
Btw, it was inspired by http://www.jroller.com/page/mert?entry=handling_errors_with_an_errror View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3985819#3985819 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3985819

[jboss-user] [EJB/JBoss] - Re: SFSB timeout setting

2006-11-09 Thread Ci
thank you! btw, I found the answer to my first question. ejb3-interceptors-aop.xml: | ... | | @org.jboss.annotation.ejb.cache.simple.CacheConfig (maxSize=10, idleTimeoutSeconds=3600) | | ... | View the original post : http://www.jboss.com/index.h

[jboss-user] [JBoss Seam] - http session timeout - exception

2006-11-08 Thread Ci
Hi! Struggling with the CannotFindBeanException (something like that) that occured when the http session was more than SFSB life time, I found a place where I can set @CacheConfig annotation one time for the whole project. Now my SFSB lives longer than http session. But now another problem ari

[jboss-user] [JBoss Seam] - Re: Nested conversation question

2006-11-07 Thread Ci
It seems to work! Great! Thanks Gavin :) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3983692#3983692 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3983692 ___ jboss-user mai

[jboss-user] [JBoss Seam] - Re: Nested conversation question

2006-11-03 Thread Ci
Sorry, it does not work either. In Manager class there is an unlockConversation() method. After the nested conversation is destroyed, getCurrentConversationEntry() will return null, and its stack (which is obviously not empty) won't be unlocked. I suppose something like that: public void unl

[jboss-user] [JBoss Seam] - Re: Nested conversation question

2006-10-31 Thread Ci
And by the way, are concurrent nested conversations inside one parent conversation possible? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3982094#3982094 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3982094 _

[jboss-user] [JBoss Seam] - Nested conversation question

2006-10-31 Thread Ci
Hi! I tried to use nested conversation. I took an Issue example and made my CRUD after it. I have a set of Clients, every Client has a set of Addresses. I wanted to organize a CRUD around a selected Client and a nested CRUD around a selected Address. But there are situations where this approac

[jboss-user] [EJB/JBoss] - SFSB timeout setting

2006-10-30 Thread Ci
Hello! I am using JBoss 4.0.5.GA and Seam 1.1. I permanently get exceptions like that: 19:23:07,124 WARN [Contexts] Could not destroy component: clientEditor | javax.ejb.EJBNoSuchObjectException: Could not find Stateful bean: 5r4m5v-man6m0-etofwmzy-1-etog131z-g | at org.jboss.ejb3

[jboss-user] [JBoss Seam] - Re: How can I create seam context etc in httpservlet

2006-10-12 Thread Ci
1: I do like below: FacesContextFactory _facesContextFactory = |(FacesContextFactory) FactoryFinder.getFactory(FactoryFinder.FACES_CONTEXT_FACTORY); | LifecycleFactory lifecycleFactory = |(LifecycleFactory) FactoryFinder.getFactory(FactoryFinder.LIFECYCLE_FACTORY); | ServletConte

[jboss-user] [JBoss Seam] - Re: How can I create seam context etc in httpservlet

2006-10-10 Thread Ci
SeamServletFilter ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3977233#3977233 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3977233 ___ jboss-user mailing list jboss-user@

[jboss-user] [JBoss Seam] - Re: ManagedEntity class has gone

2006-10-10 Thread Ci
anonymous wrote : baz> Why not use the original Seam release. Because every second reply in this forum contains words "check CVS for a new corrected version" :) anonymous wrote : Gavin> org.jboss.seam.framework.EntityHome That's what I wanted to hear! Thanks! Is EntityHome finished enough to st

[jboss-user] [JBoss Seam] - Re: ManagedEntity class has gone

2006-10-09 Thread Ci
What are them renamed into? Wait - yes, of course, I am eager to see a brand new Seam. But we try to use Seam in some kind of commercial development and merely cannot stop and sit sleeping. Luckily for us, ManagedEntity was broken and we got a local copy. Any way, it was rather unexpected to lo

[jboss-user] [JBoss Seam] - ManagedEntity class has gone

2006-10-09 Thread Ci
Hi! I suppose nobody uses ManagedEntity class as it disappeared from CVS (after some floating through packages) and did not work before it (due to joinTransaction() and cast to String in getConvertedId()). Is it true - is it completely gone? What alternative has to be used? Now I keep working

[jboss-user] [JBoss Seam] - Re: examples/security

2006-10-03 Thread Ci
Yes, model security works fine. Are there any options for page security now? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3975678#3975678 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3975678

[jboss-user] [JBoss Seam] - examples/security

2006-10-02 Thread Ci
Hi! Should the example in the directory examples/security in the Seam distribution work or is it not ready yet? There are lots of commented things in web.xml, and direct access to /seam-security/protected/protected.seam is allowed even if a user is not logged in... View the original post : ht