show/hide this revision's text 2 Clarification in response to a comment

To solve this one I'd probably create a JSF fragment that only includes your form, then use a tag to include it in my JSF page.

That solution is probably a little fragile depending on your environment , so another option might be to get ahold of the JSF Context and pull your managed bean out of there from your servlet/jsp. Something like this..though.

EDIT: See Chris Hall's answer, FacesContext context = FacesContext.getCurrentInstance(); Application app = context.getApplication(); ValueBinding bnd = app.createValueBinding("#{" + beanName + "}"); Object bean = bnd.getValue(context);

Just replace beanName with is not available outside the name of your bean as defined in your jsf configuration and cast it appropriatelyFacesServlet.

show/hide this revision's text 1

To solve this one I'd probably create a JSF fragment that only includes your form, then use a tag to include it in my JSF page.

That solution is probably a little fragile depending on your environment, so another option might be to get ahold of the JSF Context and pull your managed bean out of there from your servlet/jsp. Something like this...

FacesContext context = FacesContext.getCurrentInstance();
Application app = context.getApplication();
ValueBinding bnd = app.createValueBinding("#{" + beanName + "}");
Object bean = bnd.getValue(context);

Just replace beanName with the name of your bean as defined in your jsf configuration and cast it appropriately.