Hi,
Two questions about App Server:
1.
If you have a low amount of Users, you could get away with a single app server. However, I think this is risky because you have a single point of failure and you also
make things like upgrades harder because you'll have to take a site offline.
Therefore my attitude is even if you only have a low number of users, I still think
you should architect for at least 2 App Servers. Do you agree / disagree?
2.
Nowadays most App Server are really App Servers + web Servers all in one.
For example, you can bundle a war inside the ear and deploy on Websphere / Weblogic no problem and this will take care of your JSPs and your
EJB components.
So I don't see the point in having a separate node for a Web server. Instead I think it makes more sense to have a Nodes which are Web + App Servers.
Then you can put a load balancer which sprays to your respective Web + App Servers?
What you think?