[jboss-user] [JBoss Seam] - Re: How to get seam booking example work in eclipse 3.2?

2007-08-05 Thread michaelcourcy
My advice if you need to learn is Eclipse 3.2 Seam 1.2.1 JBoss 4.0.5 Build your first app with seam-gen Everything work fine. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070976#4070976 Reply to the post : http://www.jboss.com/index.html?module=bb&op=p

[jboss-user] [JBoss Seam] - Re: Post-injection hook (or how to avoid injection races?)

2007-08-05 Thread michaelcourcy
I can't see why you need a setTitle method if the title is already provided by the person object. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070975#4070975 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070975

[jboss-user] [JBoss Seam] - Re: convert parameter f:param with s:convertdatetime

2007-07-28 Thread michaelcourcy
I'm not sure that f:param support any converter. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068465#4068465 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068465 ___ jboss

[jboss-user] [JBoss Seam] - Re: Unable to run a test

2007-07-19 Thread michaelcourcy
with seam 1.2 it works !! So I think I 'm going to keep with this version until a stable release View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065967#4065967 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065967 _

[jboss-user] [JBoss Seam] - Unable to run a test

2007-07-19 Thread michaelcourcy
Hi I'm unable to run a single test I use seam gen seam setup seam new-project seam new-action I use all the default value (ear, hsql and so on), I don't touch the code I can deploy it on JBoss every thing work fine. But when I try to run the test I get a deployment error |[testng

[jboss-user] [JBoss Seam] - Re: Action argument is null when it shouldn't be null

2007-07-17 Thread michaelcourcy
"grettke_spdr" wrote : This code from the sample works just fine though: | | Yes I ran into this problem until I unserstand that a link is a link and a post is a post ;) Wich means that using such expression | | make sens only if the #{hotelBookings} collection exist in one the

[jboss-user] [JBoss Seam] - Re: Very basic validation question

2007-07-08 Thread michaelcourcy
"[EMAIL PROTECTED]" wrote : | Not sure, looks good to me What's strange is that validation with entity bean work really fine but not with stateful bean. To prove it I build an entity bean | @Entity | @Name("aBean") | public class ABean implements Serializable{ | |

[jboss-user] [JBoss Seam] - Re: Very basic validation question

2007-07-08 Thread michaelcourcy
"hstang" wrote : did you try using s:message ? Yes I did that first, but it seams that is to be used inside a tag. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061660#4061660 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mo

[jboss-user] [JBoss Seam] - Very basic validation question

2007-07-07 Thread michaelcourcy
Hi, I want to try a very basic validation on an input text field which name is "value" This is my stateful bean | | | public void sayHello() | { | facesMessages.add("hello #{hello.value}"); | } | | | | @Length(max=10)

[jboss-user] [JBoss Seam] - Re: Seam gen edit pages, update without press save button

2007-07-06 Thread michaelcourcy
propagation="end" and @End Are you not doing the job twice ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061498#4061498 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061498

[jboss-user] [JBoss Seam] - Re: Understanding the difference between conversation and wo

2007-06-29 Thread michaelcourcy
"[EMAIL PROTECTED]" wrote : A workspace is a conversation with a description :-) ok, thank you. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059073#4059073 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4059073 __

[jboss-user] [JBoss Seam] - Understanding the difference between conversation and worksp

2007-06-28 Thread michaelcourcy
Hi everybody, I'm new to Seam and it's difficult for me to distinguish the difference between this two concepts : conversation and workspace. Is the worspace a set of conversations ? The contrary ? Or is it two ways to speak about the same thing ? As far as I can understand it really look li

[jboss-user] [JNDI/Naming/Network] - Re: Newbie question on accessing Remote Bean through JNDI

2007-02-14 Thread michaelcourcy
Trying the trailblazer tutorial, it looks like I did few mistakes If I get the object locally I should run this code | public void jspInit () { | try { | InitialContext ctx = new InitialContext(); | cal = (Calculatrice) ctx.lookup( | "EJB3Trail/Calcula

[jboss-user] [JNDI/Naming/Network] - Newbie question on accessing Remote Bean through JNDI

2007-02-13 Thread michaelcourcy
Hi, I build a Calculatrice Stateless EJB3, | | @Stateless | public class CalculatriceBean implements CalculatriceRemote { | | /** Creates a new instance of CalculatriceBean */ | public CalculatriceBean() { | } | | public int additionner(int x, int y) {