JSF Servlet Arch Help needed.
Posted
by abc
on Stack Overflow
See other posts from Stack Overflow
or by abc
Published on 2010-04-20T07:59:07Z
Indexed on
2010/04/20
8:03 UTC
Read the original article
Hit count: 241
i want a mechanism in my web app as described below:
user will enter mydomain.com/CompanyName , depending upon the CompanyNameit will show its logo and its customized page, and i will take that parsed parameter in session again upon each request i will compare the parsed CompanyName and one stored in session , and if they matched then application will show the requested page with user's data.else it will be redirected to login page. and the main thing is i want this thing in JSF arch.
i tried taking a servlet that will resolve all request and it will parse and then will dispatch the request to prefered servlet,but problem is it goes in loop as again it resolves to the same controller servlet,
© Stack Overflow or respective owner