Hi, I am developing in tapestry 5.2. I have including pages and component but i noticed one problem:
@Property Private LoginVo loginVo; @Log @PageLoaded void pageLoaded() { loginVo =new LoginVo(); } <input type="text" t:id="userName" t:type="TextField" t:label="User Name" t:value="loginVo.username" t:validate="required"/> <input type="text" t:id="userName" t:type="TextField" t:label="User Name" t:value="loginVo.password" t:validate="required"/> if we include this value object in the page and initializes in the PageLoaded the page will be render, providing a response to the browser. we fille up this values with any value for example xxx and yyy and press submit.Then if we open a new browser instance and we call to this page it is appear the form with the fields values xxx and yyy even. I test this behabiour in diferent PC browser with the same result. In tapestry 5.2 we have a sigleton page and not pooled pages but the session can not be share with the rest of user i try to use ResetPaged but it doesn´t work finally and setup tapestry for the used of pooled pages. I check it the same example in tapestry 5.1.5 and this it work fine. If you call with diferent browser intances the fields are null even if you initializes the values in a instance browser. Is this a bug in tapestry 5.2 or has to be used in a diferent way?? In which method i have to initializes the POJO´s attribubes? Any help will be welcome. Thanks in advance. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-2-Request-data-shared-in-different-client-browser-tp3405994p3405994.html Sent from the Tapestry - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org