Lifecycle lifecycle = getLifecycle();
// Get the FacesContext instance for this request
context = getFacesContext(request, response, lifecycle, null);
// For actions we only execute the lifecycle phase
lifecycle.execute(context);
// If responseComplete don't save any state as we aren't falling through to render
// Usual occurs because of a redirect
if (!context.getResponseComplete())
{