[jboss-user] [JBoss Tools (users)] - Re: Unknown context variable name:

2008-12-17 Thread scatu...@gmail.com
In order to make sure that I had all the steps required to reproduce the behavior, I created a project from scratch with seam-gen in a new workspace and guess what, problem fixed. I no longer get warnings so I guess that your first answer that I didn't understand at the time was probably the

[jboss-user] [JBoss Tools (users)] - Re: Unknown context variable name:

2008-12-16 Thread scatu...@gmail.com
It finally installed and now I get 337 warnings instead of 8. ;) I get syntax error warnings on EL Stuff generated by seam-gen. All attributes from variables coming from the var attribute of rich:dataTable are unresolved. Context assist for those variables don't work. here is an example:

[jboss-user] [JBoss Tools (users)] - Re: Unknown context variable name:

2008-12-15 Thread scatu...@gmail.com
It's in my session beans. In the code bellow, identity, credentials and localLocator cause an Unknown context variable name: %variableName% warning. | package org.domain.SeamOne.session; | | /* imports... | */ | | @Stateless | @Name(authenticator) | public class

[jboss-user] [JBoss Tools (users)] - Re: Unknown context variable name:

2008-12-15 Thread scatu...@gmail.com
I'm using currently using jboss-seam-2.1.0.SP1. I'll try reproducing it on JBossTools 3.0 Eclipse 3.4 but it looks like I'll have to do a clean install of Eclispe. Doesn't seam to be an easy upgrade button! ;) I'll get back to you as soon as test is done. Thanks View the original post :

[jboss-user] [JBoss Tools (users)] - Re: Unknown context variable name:

2008-12-15 Thread scatu...@gmail.com
I lost a lot of time with this today... For some reason, JBoss Tools 3.0 will not install in eclipse 3.4.1. It hangs when I try to install it with the eclipse updater. It says that it is downloading org.eclipse.birt.integration.wtp.ui and it stays at 5% forever. I tried downloading the

[jboss-user] [JBoss Tools (users)] - Unknown context variable name:

2008-12-12 Thread scatu...@gmail.com
I get this warning for every components that comes from the seam package. Identity, Credentials and LocaleLocator do the same. My application works fine though. Every time the projects builds, warnings are duplicated so my list of warnings grows until I do a Clean. I don't want to remove the

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Lazy children loaded when persist is called

2008-12-11 Thread scatu...@gmail.com
Let's say we have an entity that has a OneToMany relationship declared like this : | @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY, mappedBy = Parent) | public SetChild getChildren() { | return this.children; | } | | public void setChildren(SetChild children) {