[jboss-user] [JBoss Seam] - Re: how to leave a long running conversation and start a new

2008-02-15 Thread c_inconnu
Thanks for the input. It is what i was looking for. However, it is strange that there is no direct support for this... I was wondering if using one big top level conversation then nested conversations couldn't do the job (i am a noob, remember :) ? In fact, my problem is to manage workspace a

[jboss-user] [JBoss Seam] - Re: Conversation and workspace

2008-02-15 Thread c_inconnu
someone please ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4129734#4129734 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4129734 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: how to leave a long running conversation and start a new

2008-02-14 Thread c_inconnu
Hi I have a similar problem and i am quite new to Seam. Has anyone a solution ? marcelkolsteren could you please explain how you did it using the API ? Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4129460#4129460 Reply to the post :

[jboss-user] [JBoss Seam] - Conversation and workspace

2008-02-14 Thread c_inconnu
Hi, I am trying to set a workspace management like in eclipse, ie buttons in the toolbar etc. I am quite new to jsf/seam etc so i read the documentation, did a lot of searching but i cannot make it work : it seems that it is always the same conversation whatever button i click (i used the

[jboss-user] [JBoss Seam] - FileUploadException from SocketTimeoutException

2007-12-10 Thread c_inconnu
Hi, I have an upload control which works fine with small files but when time exceeds ~20s (for an 14Mo file) I got : | 11:29:06,468 WARN [lifecycle] executePhase(RESTORE_VIEW 1,[EMAIL PROTECTED]) threw exception | org.jboss.seam.web.FileUploadException: IO Error parsing multipart request

[jboss-user] [JBoss Seam] - Re: FileUploadException from SocketTimeoutException

2007-12-10 Thread c_inconnu
Sorry to bump but this is really important. Someone of the Seam team ? I am using Seam 2.0 and JBoss 4.2.2 Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4111657#4111657 Reply to the post :

[jboss-user] [JBoss Seam] - protected setter for a business key ?

2007-07-30 Thread c_inconnu
Hi, I'd like to have a class like that : | @Entity | public class MyUser | extends XXX | { | private String login; | | protected MyUser() | { | // used by EJB3 | } | | public MyUser(String login) | { |

[jboss-user] [JBoss Seam] - Re: Having problems looking up a Seam component in the JNDI

2007-04-15 Thread c_inconnu
8 wrote : I asked the same question in the EJB3 forum a while back and I didn't get a reply there either. I did not make any progress on this issue (and abandoned it). So unfortunately, I can't offer much help... Thanks... Anyone from the Seam team ? Please ? View the original post :

[jboss-user] [JBoss Seam] - Re: Domain design with EJB3 and Seam

2007-04-13 Thread c_inconnu
anonymous wrote : | Looks like you have #{user.password} somewhere... If you have a UIInput component with a valuebinding onto a property then it needs both public getters and setters. Post your JSF if your unsure on this. | I finally found what was wrong: I indeed left #{user.password}

[jboss-user] [JBoss Seam] - Re: Having problems looking up a Seam component in the JNDI

2007-04-13 Thread c_inconnu
Hi, This is an old thread but i got the exact same problem. Have you managed to get this working ? I must say that i'm using Maven2. The following works in JBoss AS but not in the microcontainer : | @Local | public interface Authenticator | { | boolean authenticate(); | } |

[jboss-user] [Beginners Corner] - File names in an EAR and NoClassDefFoundError

2007-04-12 Thread c_inconnu
Hi, I have a problem with the archive naming inside an EAR. Here is the EAR structure: | a.ear | +- META-INF | |+- application.xml | |+- jboss-app.xml | +- b.jar | +- c.war | A class in c.war is calling a class in b.jar. All is working fine, but if i rename b.jar

[jboss-user] [JBoss Seam] - Re: Domain design with EJB3 and Seam

2007-04-12 Thread c_inconnu
Ok, it seems that i have made a mistake somewhere. Now it is working (and i don't know why...). petemuir wrote : Not really, as, IMO, a large difference between a javabean and a strut is encapsulation. If all we have is getA{return a;} and setA(){this.a=a;} there is no big difference...

[jboss-user] [JBoss Seam] - Re: Domain design with EJB3 and Seam

2007-04-12 Thread c_inconnu
Well, I shouldn't have answered too fast... I found where lies the problem. This is basically the booking example with an User class of mine. When I register (ie go to register.xhtml) I got : 1) with a protected User constructor and no getPassword() at all | 17:24:02,546 ERROR [STDERR] 12

[jboss-user] [JBoss Seam] - Re: Domain design with EJB3 and Seam

2007-04-12 Thread c_inconnu
petemuir wrote : | As the EJB3 spec allows entities with protected constructor, then Seam should do too. Can you file a JIRA issue for this? | Done ! http://jira.jboss.com/jira/browse/JBSEAM-1176 anonymous wrote : | Looks like you have #{user.password} somewhere... If you have a

[jboss-user] [JBoss Seam] - Domain design with EJB3 and Seam

2007-04-10 Thread c_inconnu
Hi, My question is about access level modifiers in the model design (with EJB3 entity and Seam). For example, I'd like to have something like that : | @Entity | public class MyUser | extends XXX | { | private String login; | | protected MyUser() | { |

[jboss-user] [JBoss Seam] - Re: unit testing a war with actions in a separate jar

2007-04-03 Thread c_inconnu
Someone ? I really could not find any solution... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4033906#4033906 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4033906 ___

[jboss-user] [JBoss Seam] - unit testing a war with actions in a separate jar

2007-04-02 Thread c_inconnu
Hi, I am trying to repackage the booking example in 3 jars : -domain.jar for the ejb entities -ejb.jar for the actions -web.war for the webapp I managed to successfully unit test the actions (BookingUnitTest) but i cannot make i work for the webapp. In domain.jar i have : anonymous wrote :