Luca Cavagnoli edited a comment on Bug WELD-1248

Another workaround:

ConvBean.java
@PostConstruct
public void postCon() {
	if (!FacesContext.getCurrentInstance().isPostback())
		if (conversation.isTransient())
			conversation.begin();
}
index.xhtml
<h:head>
	<f:metadata>
		<f:event listener="#{convTest.postCon}" type="preRenderView" />
	</f:metadata>
</h:head>
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira