Re: One Struts2-project to rule them all

2009-07-30 Thread Zoran Avtarovski
We¹ve implemented a similar solution where we have a custom interceptor which sets a domainId value based on the url used to access the site. It¹s then a simple matter of applying the appropriate processing for each of the domains based on the domainId value. I can tell you from our perspective i

Re: One Struts2-project to rule them all

2009-07-30 Thread David Canos
thankx for your answers > I did a similar project as few months back where we supported 15 different > URL with one Enterprise Implementation. The FilterDispatacher approach I > guess is the right way to modularize the code. What you mean with Enterprise Implementation? just an ear with a simple

Re: One Struts2-project to rule them all

2009-07-30 Thread kishore chakraborty
Hi David, I did a similar project as few months back where we supported 15 different URL with one Enterprise Implementation. The FilterDispatacher approach I guess is the right way to modularize the code. Your own FilterDispatacher (extending the Struts FilterDispatcher this class), which pars

Re: One Struts2-project to rule them all

2009-07-30 Thread Paweł Wielgus
Hi David, i don't understand well what You would like to achieve but will aliases work for You? Just like regular alias www.myapp.com inside tomcat for myapp.com, you can add myapp2.com and so on for every domain You need. Best greetings, Paweł Wielgus. 2009/7/30 David Canos : > Hi folksI'm facin