[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: failure while trying to deploy-

2007-07-20 Thread trouby
There is a size limitation of the post, so here's the last part of the log, Is that possible that this line cause the problem? | 13:49:11,968 WARN [Ejb3Configuration] Persistence provider caller does not implements the EJB3 spec correctly. Persiste | nceUnitInfo.getNewTempClassLoader() is

[jboss-user] [EJB 3.0] - EJBs depends on each other

2007-07-20 Thread trouby
Hey, I have an 'MBeans waiting for other MBeans' error produced by Jboss without any other errors around, I started to remove EJBs and the error disappeared, I think found the part that makes the trouble, I have EJBs that depends on each other. so in each of the EJB, I inject the other one

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Toplink-Hibernate, GenerateSequence Issue

2007-07-19 Thread trouby
Hey, I am trying to migrate an application from GF that uses Toplin as JPA to Jboss with Hibernate, I'm still having a confusion of how to generate IDs as generic as possible, Usually my app is deployed with Oracle 9/10 or Mysql DBs and I'd like to have my application be as generic as

[jboss-user] [JBoss Seam] - seam-gen plus arhitecture questions

2007-07-18 Thread trouby
Hey, I was wondering about few issues that I'll be glad if you guys can make them clear to me, Since actions can be implemented on any bean without much limitations, I'm kinda confused how to design my beans correctly. Usually actions needs access to resources such as database, transactions,

[jboss-user] [JBoss Seam] - NPE with component's entity-query

2007-07-03 Thread trouby
Hey, With Seam ver 1.2 I used framework:entity-query a lot and it worked perfectly, After migrating to Seam v2, I get a NPE exception, I have a persistence managed context declared in components.xml as: | core:managed-persistence-context name=entityManager auto-create=true

[jboss-user] [JBoss Seam] - Re: NPE with component's entity-query

2007-07-03 Thread trouby
ye, I just figured that out before few minutes, core:managed-persistence-context doesn't through any exceptions, so it wasn't so obvious, thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4059897#4059897 Reply to the post :

[jboss-user] [JBoss Seam] - ConvertEntity Seam 2.0 issue

2007-07-03 Thread trouby
Hey, Trying to migrate to Seam 2, I've encountered an issue related to the EntityConverter when a JSF component binded to an EJB (that is a seam component) property, I have an EJB like: | @Name(myManager) | @Interceptors( { org.jboss.seam.ejb.SeamInterceptor.class }) | public class

[jboss-user] [JBoss Seam] - Re: ConvertEntity Seam 2.0 issue

2007-07-03 Thread trouby
Eh, I know, I tracked the changes, not sure if it'll help in my case, but it looks better, The problem is that it does not work for me, I use Toplink as JPA and when I use s:convertEntity I get: Caused by: java.lang.ClassCastException:

[jboss-user] [JBoss Seam] - Re: ConvertEntity Seam 2.0 issue

2007-07-03 Thread trouby
There you go! | [#|2007-07-03T15:46:20.187+0300|SEVERE|sun-appserver9.1|facelets.viewhandler|_ThreadID=19;_ThreadName=httpSSLWorkerThread-8181-1;_RequestID=82601fb7-5e30-445d-a507-293f0fb20b53;|Error Rendering View[/targetSystemEdit.xhtml] | java.lang.RuntimeException: could not proxy

[jboss-user] [JBoss Seam] - Re: ConvertEntity Seam 2.0 issue

2007-07-03 Thread trouby
Hey, I can't remove the hibernate, I wont have support for Hibernate validation annotations... right? Regarding the TopLinkPersistenceProvider, I'll try, There is already a post about that which I started here: http://www.jboss.com/index.html?module=bbop=viewtopict=110319 I'll keep the

[jboss-user] [JBoss Seam] - Re: ConvertEntity Seam 2.0 issue

2007-07-03 Thread trouby
So actually I should remove the hibernate-all from my app's libs and ? Is there a separated jar file for the validators annotations? out of hibernate-all.jar? Thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4059960#4059960 Reply to the post :

[jboss-user] [JBoss Seam] - Re: ConvertEntity Seam 2.0 issue

2007-07-03 Thread trouby
Tried, I think that Toplink doesn't live so well with Hibernate libraries aside, I assume Seam makes some usages of Hibernate if it exists automatically, I removed Hibernate-all.jar file from my library and suddenly many problems I had disappeared, so most of the things started to work

[jboss-user] [JBoss Seam] - Re: ConvertEntity Seam 2.0 issue

2007-07-03 Thread trouby
Nah, It doesn't work, same error, and there are other missing classes, such as HibernateException, NestableRuntimeException and more. Should I report for the missing classes (mostly available within the Hibernate code package) ? Asaf. View the original post :

[jboss-user] [JBoss Seam] - Re: ConvertEntity Seam 2.0 issue

2007-07-03 Thread trouby
Yap looks like Seam depends on many Hibernate's core classes, I'll start writing the TopLinkPersistenceProvider and post the results/errors, one question about that, How do I tell Seam that it exists? I should add the provider to the classpath and? View the original post :

[jboss-user] [JBoss Seam] - Re: ConvertEntity Seam 2.0 issue

2007-07-03 Thread trouby
yap, Just wanted to make sure, I created the class, but I get a conflict when both TopLink/Hibernate Persistence Provider classes exist in the same time, | java.lang.IllegalStateException: Two components with the same name and precedence: org.jboss.seam.persistence.persistenceProvider |

[jboss-user] [JBoss Seam] - Re: ConvertEntity Seam 2.0 issue

2007-07-03 Thread trouby
Ok, So the TopLinkPersistenceProvider class is ready, I'll do some testing, make sure it works fine and upload a jar file to the wiki so other people using Toplink as JPA will be able to use it. Well, back to the original reason of this post, even when using the s:convertEntity, I get the

[jboss-user] [JBoss Seam] - redirect endless loops

2007-07-02 Thread trouby
Hey, I have some simple methods that displays some JSF forms, when I submit the form via Seam action, in the action I return another page (i.e 'return /myItemsList.xhtml) sometimes it works, and redirects to the next page, sometimes I see the loading bar of the browser stuck for several

[jboss-user] [JBoss Seam] - Seam 1.3alpha with Glassfish

2007-06-18 Thread trouby
Hey, Just wanted to inform that Seam 1.3Alpha does not work with Glassfish running under Linux. I did some tests, it works fine with win32 GF distribution, not sure what could result such a difference, here are some info: 1) Tested against Linux RH Enterprise 4/Gentoo with JDK1.5/1.6 - did

[jboss-user] [JBoss Seam] - Re: GF with Seam 1.3 - Caused by: java.lang.UnsupportedOpera

2007-06-06 Thread trouby
anonymous wrote : | Remove the expression language factory thing in faces-config.xml | Remove what? I don't think I have anything related to EL factory, I only have seam's el-resolved and the phase-listener life cycle, Thanks View the original post :

[jboss-user] [JBoss Seam] - Re: GF with Seam 1.3 - Caused by: java.lang.UnsupportedOpera

2007-06-06 Thread trouby
Eh, Already did before the post, and seeked for something now, Nothing relevant from year 07, Can you point me to a specific post? or an author? or something? Thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4051713#4051713 Reply to the post :

[jboss-user] [JBoss Seam] - Re: GF with Seam 1.3 - Caused by: java.lang.UnsupportedOpera

2007-06-06 Thread trouby
Yep, That helped, Anyway, I was wondering, there is any documentation explaining the configuration differences between 1.2 and 1.3? Seems like it's a little bit more complex, fixed few issues, now when I try to point a certain facelets xhtml file it doesnt get handled at all and the browser

[jboss-user] [JBoss Seam] - convertEntity with GF+Toplink

2007-06-06 Thread trouby
Hey, I'm trying to use s:convertEntity/ Seam's tag under GF+Toplink but I get the following exception: | java.lang.ClassCastException: oracle.toplink.essentials.internal.ejb.cmp3.EntityManagerImpl cannot be cast to org.hibernate.Session | Shouldn't it support Toplink's entityManager as

[jboss-user] [JBoss Seam] - Re: convertEntity with GF+Toplink

2007-06-06 Thread trouby
I'll work on it later on, But of course I will :-) Cheers. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4051848#4051848 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4051848

[jboss-user] [JBoss Seam] - Seam Wiki Example

2007-06-05 Thread trouby
Hey, I was wondeirng, I've seen many posts regarding Seam Wiki Example, Where is it located? In last ver archive 'jboss-seam-1.2.1.GA.zip' I couldnt find it under examples folder, Thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4051286#4051286

[jboss-user] [JBoss Seam] - s:fileUpload NPE

2007-06-05 Thread trouby
Hey, I'm trying to simply use fileUpload with no luck, submitting the form always returns null of the bean's property binded to the 'data' parameter of the 'fileUpload' tag. I have exactly the same code as mentioned at the begining of this post:

[jboss-user] [JBoss Seam] - Re: s:fileUpload NPE

2007-06-05 Thread trouby
Hey, just to mention: - If I replace Seam's 'fileUpload' tag with Myfaces one it works well and the file gets uploaded. - Something is very odd, even if I bind the tag with a varabile/backend seam component that does not exist it doesnt throw a 'property not found' exception when the page

[jboss-user] [JBoss Seam] - s:convertEntity with ajax support

2007-06-03 Thread trouby
Hey, I get a NPE when trying to combine selectItems+convertEntity+a4j support, I have the following code (with facelets) | h:selectOneMenu id=someId value=#{myEjb.sb1} required=false | s:selectItems value=#{someList.resultList} var=ia label=#{ia.name} noSelectionLabel=Any/ |

[jboss-user] [JBoss Seam] - Re: Will Woodstock works with Seam some day? :)

2007-03-26 Thread trouby
Well, It is not needed to even mention how important is that Seam will work with top JSF component libraries... Seems like the list that you've mentioned are of the biggest, Are there any place to track changes / news related this issue? As far as I know, currently woodstock libraries totally

[jboss-user] [JBoss Seam] - Will Woodstock works with Seam some day? :)

2007-03-25 Thread trouby
Just wondering, If there are any plans to make Woodstock JSF components work with Seam one day... As it looks, Woodstock based on jsf-extensions (https://jsf-extensions.dev.java.net/) which doesnt live so well together with ajax4jsf, Any plans for these two to live near each other?

[jboss-user] [JBoss Seam] - sort of overriding Conversations?

2007-03-05 Thread trouby
Hey, Assuming I have a conversation that begins over a method that creates a new entity, It is sort of a wizard, and I'd like ot keep all pages in one conversation, I tried to give a meaningful name to the conversation such as: | @Begin(id = userAdd) | with no id generation. if a user

[jboss-user] [JBoss Seam] - ResourceBundle in hebrew / default locale

2007-03-01 Thread trouby
Hi, I have two questions regarding resource bundles and locales, I've set two locales in faces-config.xml as follows: | application | locale-config | default-localeen_US/default-locale | supported-localeen_US/supported-locale |

[jboss-user] [JBoss Seam] - Re: ResourceBundle in hebrew / default locale

2007-03-01 Thread trouby
Solved, It is required to use an editor that supports automatic encoding. Eclipse resourceBundleEditor from 'http://www.resourcebundleeditor' makes a perfect job here ;) Any clue why 'he' language being the default one although en_US was set in default-locale tag? thanks View the

[jboss-user] [JBoss Seam] - Re: ResourceBundle in hebrew / default locale

2007-03-01 Thread trouby
I dont understand the question, What do you mean by how? By standards,created file per language and typeed words in hebrew into the edited file. The editor handles the encodings correctly. Asaf. View the original post :

[jboss-user] [JBoss Seam] - Seam breaks with Groovy

2007-03-01 Thread trouby
Hi, I have an annoying issue, I'm trying to pack Seam (jboss-seam.jar/thirdparty-all.jar) plus Groovy scripting language (http://groovy.codehaus.org/) As it seems, Seam uses ASM package (by Objectweb) while Groovy do the same. Problem is that Groovy comes with asm ver 2.2 while I'm not sure

[jboss-user] [JBoss Seam] - Re: need to specify the whole package name with org.jboss.se

2007-02-27 Thread trouby
hey, GF sample app not getting deployed correctly, re-compiled and tried to deploy the ear file throws errors in GF logs, this happens with 1.1.7.RC1 and GF build 32, following is the full stack trace, |

[jboss-user] [JBoss Seam] - Re: need to specify the whole package name with org.jboss.se

2007-02-27 Thread trouby
Back to this, Some 'cglib' versions didnt work correctly, Anyway two things: 1) GF sample has no usage of messages, in register.xhtml/other files all titles are statically written in the facelets files, also I tried to add some component names into the sample files, but as it didnt work for

[jboss-user] [JBoss Seam] - java.lang.NoSuchMethodError: org.jboss.seam.core.Validation.

2007-02-27 Thread trouby
Hi, There's a problem with org.jboss.seam.core.Validation.validate method in seam ver 1.1.7 under Glassfish, following is the stack dump: |

[jboss-user] [JBoss Seam] - Re: java.lang.NoSuchMethodError: org.jboss.seam.core.Validat

2007-02-27 Thread trouby
Definitely, This was my mistake, probably some caching/partial jar updates, now its ok with 1.1.7R1 thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4023106#4023106 Reply to the post :

[jboss-user] [JBoss Seam] - Re: need to specify the whole package name with org.jboss.se

2007-02-27 Thread trouby
Any comments on which GF version it was tested? Anyway, back to the original issue, any component names written in components.xml are not valid with the booking gf sample as well, Thanks, Asaf. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4023109#4023109

[jboss-user] [JBoss Seam] - Re: need to specify the whole package name with org.jboss.se

2007-02-27 Thread trouby
Better, Looks like there's an issue with the xml components file of seam's jar file. Following is the stack trace, |

[jboss-user] [JBoss Seam] - Re: need to specify the whole package name with org.jboss.se

2007-02-27 Thread trouby
Eh, that was a silly issue, Well, everything works perfectly. components.xml gets scanned with the latest CVS version, Except one minor issue the 'logout' button which throws an exception, so just FYI guys... Gavin many thanks! (following is the stack trace of the 'logout' button, just

[jboss-user] [JBoss Seam] - Re: need to specify the whole package name with org.jboss.se

2007-02-27 Thread trouby
yap, who will fix this? :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4023171#4023171 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4023171 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: need to specify the whole package name with org.jboss.se

2007-02-27 Thread trouby
Eh, great, closing this post :) Many thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4023177#4023177 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4023177 ___ jboss-user

[jboss-user] [JBoss Seam] - need to specify the whole package name with org.jboss.seam.c

2007-02-21 Thread trouby
Hey, in my facelets files, I have to specify the full package name in order to use seam's objects (such as messages/languageSelector/etc...) so h:outputText value = #{messages}/ prints nothing while h:outputText value = #{org.jboss.seam.core.messages}/ will find seam's messages array Is

[jboss-user] [JBoss Seam] - Re: need to specify the whole package name with org.jboss.se

2007-02-21 Thread trouby
Hey, When the file should be scanned? when server loads? I can see the file exits with all factory tags, but GF logs nothing about it. Thanks... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4020199#4020199 Reply to the post :

[jboss-user] [JBoss Seam] - Re: need to specify the whole package name with org.jboss.se

2007-02-21 Thread trouby
Which should be located where? Does Seam use Jboss's log facilities? under GF I cant see any seam logs files, nor any seam logging via server logs. thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4020390#4020390 Reply to the post :

[jboss-user] [JBoss Seam] - Re: PropertyNotFoundException exception with JSF binding

2006-10-20 Thread trouby
My fault Gavin, I shortcut my explainations, i'm sorry, here: I have a LIST of my own 'Attribute' class objects, where each of the 'Attribute' typed object has a collection of 'Value'(my own class) objects. I outject to the view a LIST of Attribute objects and display some of their

[jboss-user] [JBoss Seam] - PropertyNotFoundException exception with JSF binding

2006-10-18 Thread trouby
Hey, I have a list of objects that each object has a method named: 'getJsfPanelGridComponent' that returns an 'HtmlPanelGrid' initialized object. This list is outjected by seam to the facelets view, I iterate over this list with a normal 'datatable' tag, and I can see that the list gets

[jboss-user] [JBoss Seam] - Re: PropertyNotFoundException exception with JSF binding

2006-10-18 Thread trouby
Hey, As I understand, this is not a SEAM issue, iterated objects in datatable in JSF cannot be binded to UI components :-/ Is there anything I can do? does seam has any pattern that can help me with rendering UI components based on the iterated objects in a list? I see it very useful as

[jboss-user] [JBoss Seam] - Re: Partial load of data for DataTable

2006-10-12 Thread trouby
Hey, Is there any examples of this? I'd like to do exactly the same with Tomahawk datatable ! Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3978043#3978043 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3978043

[jboss-user] [JBoss Seam] - Re: Seam with Jbpm - Operation not allowed.

2006-10-07 Thread trouby
Cool, we'll wait for that, I'll continue to track this post, thanks a lot Gavin. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3976754#3976754 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3976754

[jboss-user] [JBoss Seam] - Re: Seam with Jbpm - Operation not allowed.

2006-10-06 Thread trouby
Hey back, Well hopefully I didnt do shortcuts, I used this link: http://cruisecontrol.jboss.com/cc/artifacts/jboss-seam-builds And downloaded file: jboss-seam-CVS.20061005.tar.gz Which seems to be from two days ago, Well frustrating, now SEAM does not even start, in deployment time, I get an

[jboss-user] [JBoss Seam] - Re: Seam with Jbpm - Operation not allowed.

2006-10-06 Thread trouby
Had a mistake in previous post, the problem does not occure in deployment time, only when page is requested. Thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3976559#3976559 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Seam with Jbpm - Operation not allowed.

2006-10-06 Thread trouby
Eh, guess the reason is that seam development is checked only against apache's jsf implementation, Hopefully someone will truck this post and fix it for RI too (Gavin?) :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3976655#3976655 Reply to the post :

[jboss-user] [JBoss Seam] - Seam with Jbpm - Operation not allowed.

2006-10-05 Thread trouby
Hey, I am trying to run SEAM with JBPM over Glassfish, Well, after fighting with some missing jars and confs it seems like the application is deployed fine :) When I try to execute a method that is annotated with @CreateProcess(definition=mydefinition) I get an Operation not allowed

[jboss-user] [JBoss Seam] - Re: Seam with Jbpm - Operation not allowed.

2006-10-05 Thread trouby
hey again, here it is: | [#|2006-10-06T09:54:40.570+0200|WARNING|sun-appserver-pe9.1|javax.enterprise.resource.webcontainer.jsf.lifecycle|_ThreadID=11;_ThreadName=httpWorkerThread-8080-0;_RequestID=0f5e7d05-cac0-461a-ad9e-b69262b78caf;|phase(RESTORE_VIEW 1,[EMAIL PROTECTED]) threw exception:

[jboss-user] [JBoss Seam] - Re: Entities with one/many_to_many relationships and SEAM

2006-09-18 Thread trouby
Eh, thanks for the efford and time, I solved this, Eh, silly, after digging into internal code (since JSF didnt throw ANYTHING except displaying a 'convertion error' message!), as it seems the problem was that the property that keeps the selected items was defined as a 'Collection' instead of

[jboss-user] [JBoss Seam] - Re: Entities with one/many_to_many relationships and SEAM

2006-09-17 Thread trouby
Hey again, Thanks for the last big post Adam, not sure why, but it doesnt work for me :-/ The method 'getEntityIdAsString' in the EntityConverter class is called, and then I get a 'convertion error' with the following message: Conversion Error setting value '2 5' for '#{entity.items}'.

[jboss-user] [JBoss Seam] - Re: Entities with one/many_to_many relationships and SEAM

2006-08-19 Thread trouby
Hey back, I just noticed that in web.xml there's no 'facelets.LIBRARIES' parameter for the selectItems tag lib, it also does not exist within the example, After adding the library, it seems that 'getAsString' is executed in the EntityConverter and returns the ID of the entity, but nothing

[jboss-user] [JBoss Seam] - Re: Entities with one/many_to_many relationships and SEAM

2006-08-18 Thread trouby
Hey, really weird, I use Seam with GlassFish, and GF comes with JSF1.2RI, It seems to be a native JSF error message.. Here's my JSF code: | | h:selectManyListbox id=setnotes size=10 value=#{issue.notes} required=true | f:selectItems

[jboss-user] [JBoss Seam] - Re: Entities with one/many_to_many relationships and SEAM

2006-08-18 Thread trouby
Hey, really weird, I use Seam with GlassFish, and GF comes with JSF1.2RI, It seems to be a native JSF error message.. Here's my JSF code: | | h:selectManyListbox id=setnotes size=10 value=#{issue.notes} required=true | f:selectItems

[jboss-user] [JBoss Seam] - Redirect to Error pages

2006-08-16 Thread trouby
Hey, I assume this is not a pure SEAM question but, how can I redirect to a seam page when an error code occures? I have the following code in the web.xml file | error-page | error-code404/error-code | location/error_404.xhtml/location | /error-page | It works

[jboss-user] [JBoss Seam] - Re: Entities with one/many_to_many relationships and SEAM

2006-08-16 Thread trouby
Yeah, There was a little mistake, I used the 'EntityConverter' as for 'selectOneListbox' instead for the 'selectitems:convertEntity' tag, anyway, this is the error I get now: | Conversion Error setting value '[EMAIL PROTECTED] [EMAIL PROTECTED]' for '#{issue.notes}'. | Two options

[jboss-user] [JBoss Seam] - Glassfish and Seam - NullPointerException...

2006-08-14 Thread trouby
Hey, I am trying to make SEAM work with any of Glassfish server but I always get the following exception, Can anyone point me to the right directions? |

[jboss-user] [JBoss Seam] - Re: Glassfish and Seam - NullPointerException...

2006-08-14 Thread trouby
Hey, Definitely, well, since I remembered that a little older GF build worked fine, I overided jsf-impl.jar file which is the JSF implementation coming with Gf, Seems like the problem does not occure in the older version of the overided JSF implementation, but I still get the following error,

[jboss-user] [JBoss Seam] - Re: Glassfish and Seam - NullPointerException...

2006-08-14 Thread trouby
Hey, I overided only jsf-impl.jar, regarding faces-config.xml file, it's almost empty, I only have the 'com.sun.facelets.FaceletViewHandler' for the facelets viewer handler and 'org.jboss.seam.jsf.SeamPhaseListener' which is the seam listener, thats all. Anyway, if the previous error stopped

[jboss-user] [JBoss Seam] - Re: Glassfish and Seam - NullPointerException...

2006-08-14 Thread trouby
Eh, I mixed myfaces JSF implementation with Sun's which is coming with Gf, Somehow it worked fine in older versions of GF, Anyway removing Apache's JSF implementation fixed the problem, Stan, thanks for your help, at least we know JSF needs a fix here :) cheers. View the original post :

[jboss-user] [JBoss Seam] - Re: Entities with one/many_to_many relationships and SEAM

2006-08-11 Thread trouby
Hey, Peter, back to this, I tried to use the additional code for multiple object selection, but for some reason I get the following error while trying to submit the form generated by JSF. 'Conversion Error setting value '1,2' for '#{customer.addresses}'. while '1,2' are the IDs of the

[jboss-user] [JBoss Seam] - Re: Updating a Collection of entities

2006-08-04 Thread trouby
Hey, Thanks, the first reply was helpful, I usually outjected entities that were annotated to a session scope, that is why it always worked fine, I had to annotate the scope of the collection as session too, Thanks View the original post :

[jboss-user] [JBoss Seam] - Updating a Collection of entities

2006-08-03 Thread trouby
Hello, I have an EJB with a collection variable of some entities declared as: | @In(create = false, required=false) @Out(required=false) | private CollectionmyEntity myEntitiesList; | Before using the outjected collection inside a datatable in the view, I have a previous action

[jboss-user] [JBoss Seam] - Re: Entities with one/many_to_many relationships and SEAM

2006-07-28 Thread trouby
Sure, At the moment I switched to multipleSelection, I've noticed that EntityConverter does not even try to load the entity... Will wait for some testings / examples :) Thanks a lot! Asaf. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3959614#3959614

[jboss-user] [JBoss Seam] - Re: Entities with one/many_to_many relationships and SEAM

2006-07-20 Thread trouby
Hey, Yeah, I understand Well, I added to the entity the following method: | @Override | public boolean equals(Object obj) { | if (!(obj != null obj instanceof TargetSystem)) | return false; | TargetSystem ent = (TargetSystem)

[jboss-user] [JBoss Seam] - Re: Entities with one/many_to_many relationships and SEAM

2006-07-20 Thread trouby
Nah, my mistake, I've compared an ID with an entity... That works, but anyway I was wondering, Is there going to be any standard of these? We alreayd have two types of SelectItems annotation What SEAM team is going to decide about this? Thanks guys. View the original post :

[jboss-user] [JBoss Seam] - Re: Entities with one/many_to_many relationships and SEAM

2006-07-20 Thread trouby
Hey, Btw, going a seocnd for the original subject of this post ;) Is there any example of using multiple selection tags such as: 'selectManyListbox' ? I'd like to see a collection set automatically and not a specific entity, As I understand, the SelectItems annotation and the entityconverter

<    1   2