This feature is not really "official" yet because it's not documented or 
demonstrated in any of the example apps.  It's actually part of the groundwork 
we needed to do for the upcoming JBossWS/Seam integration in 1.3.0.  To 
configure it, you need to add an entry like this to your pages.xml:

<conversation name="upgradeCustomer"
  |   parameter-name="customerId"
  |   parameter-value="#{customer.id}"/>

You can then refer to this conversation in your page configuration/s:

<page view="/upgrade-customer.xhtml"
  |     conversation="upgradeCustomer">
  | 

Then instead of using a synthetic conversation id (e.g. cid=123) it will use 
the "natural" id, i.e. the primary key value of the customer ( customerId=444) 
to identify the conversation.


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4032238#4032238

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4032238
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to