I have a simple JSF application, a search form and results table, and a search button that calls a managed bean called SearchHandler.doSearch to populate the results. (I'm using Eclipse and WTP.)
On Tomcat everything works fine, the web page shows, click the button hits a break point in SearchHandler.doSearch, it does the search and populates the table.
However, running on GlassFish, the web page shows, click the button just causes the page to refresh. It never hits the breakpoint in SearchHandler.doSearch and doesn't do the search and populate the table.
Is there something simple I am missing?
rob