How to parse and map URLs?

2009-03-26 Thread dpark
I'm looking for any suggestions on the below: Business Need: A new partner client would like to leverage our current web application but allow for some dynamic rebranding (through images). The application will know which brand images to show based on the format of the URL. For example, given th

ASO, Persistent Fields and Restart Service

2008-12-01 Thread dpark
If I call the restart service, shouldn't all my session-scoped ASOs and persistent page fields be cleaned up? Correct me if i'm wrong, but the restart service simply invalidates the backing HttpSession which in turn should do the cleanup mentioned above. Thanks, Dave Park -- View this message i

Throw PageRedirectException from within Custom Exception Page

2008-07-31 Thread dpark
Is it possible to throw a PageRedirectException from within a custom ExceptionPage.pageBeginRender? Tapestry doesn't seem to like it. I get a: Unable to present exception page: org.apache.tapestry.PageRedirectException -- View this message in context: http://www.nabble.com/Throw-PageRedirectEx

RE: Localization

2008-05-07 Thread dpark
onathan Barker wrote: > > Try executing cycle.cleanup() after you set the Locale. > > >> -Original Message- >> From: dpark [mailto:[EMAIL PROTECTED] >> Sent: Wednesday, May 07, 2008 10:14 AM >> To: users@tapestry.apache.org >> Subject: Localizatio

Localization

2008-05-07 Thread dpark
I understand the following: * in order to set the locale programmatically, you call the following: getEngine().setLocale( new Locale( language ) ); * then I call getRequestCycle().activate( "SOME_PAGE" ); * Voila, I see the SOME_PAGE loaded with the locale specific properties and assets. HOWEVER,