I am using JSF 2.1.7 and Myfaces CODI 1.0.5 on JBoss AS 7.1.1. My is not working. I have read the requirements and have through examples
You need to remove type="button" from the . It should have been type="submit", which is the default already.
type="button"
type="submit"
The type="button" makes it an instead of which is only useful for client side handlers which you usually attach using onclick and so on.
onclick