You are trying to inject the seam component: "theUser" while your Seam 
component is called: "userInput"

either:
1) Change 
private UserInput theUser;
to
private UserInput userInput

2) Change 
@Name("userinput")
to
@Name("theUser")

3) Change
@In(create = true)
to
@In(value=userInput, create=true)

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3963149#3963149

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3963149
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to