Removing "join=true" doesn't help. I still get the same error. Here is my bean:
| @Stateful
| @Name("booking")
| @Scope(CONVERSATION)
| @Interceptors(SeamInterceptor.class)
| @LoggedIn
| @Conversational(ifNotBegunOutcome = "home")
| public class BookingActionimplements Booking, Serializable {
| ...
| @Begin
| public String start() {
| em.refresh(user);
| return "booking";
| }
| public String confirm() {
| ...
| return "confirmed";
| }
| }
|
my pages.xml
| <page view-id="/booking.xhtml" action="#{booking.start}"/>
|
When user click confirm button in booking.seam page, the confirm is not called.
Instead, the user gets redirected to home page because no conversation exists.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3950743#3950743
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3950743
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user