[jboss-user] [JBoss Seam] - Re: Unexpected behaviour - DataModel Nested conversations

2007-12-03 Thread [EMAIL PROTECTED]
Norman put some fixes for this into CVS recently, so I suggest trying CVS out.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4109776#4109776

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4109776
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Unexpected behaviour - DataModel Nested conversations

2007-12-03 Thread koenhandekyn
i am having a similar issue

when i'm putting a EntityQuery object in conversation scope, the moment i do an 
update on one of the entities the query resultList returns a list of EMPTY 
instances (properties are empty) afterwards

i'm already capturing an event and calling REFRESH on the entityQuery but that 
doesnt seem to do the trick

using:

  |   event type=org.jboss.seam.afterTransactionSuccess.Address
  | action execute=#{managedAddresses.refresh} /
  |   /event
  | 

i do see the refresh method getting called.

any tips ???



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4109772#4109772

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4109772
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Unexpected behaviour - DataModel Nested conversations

2007-11-09 Thread danidacila
P.S.
If I change the scope of the searchBean to session everything works ok.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4103382#4103382

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4103382
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Unexpected behaviour - DataModel Nested conversations

2007-11-09 Thread danidacila
I have changed the original hotelBooking example like this:

@Name(hotelSearch)
@Scope(ScopeType.CONVERSATION)
public class HotelSearchingAction implements Serializable {
...
@Begin
public void find() {
...
}
...
}

and

@Name(hotelBooking)
public class HotelBookingAction
{
...
   @Begin(nested = true)
   public void selectHotel(Hotel selectedHotel)
   {
 ...
   }
...
}


exactly the same.
1st search - everything ok
hit view hotel - ok
hit cancel - the search view presents all the hotels but their attributes are 
empty.


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4103386#4103386

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4103386
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user