This might be duplicate of this and this question.
I have a java application in which i am using JAX-WS (WEB SERVICES). and many other features in it like apache-commons utils.
- My application is swing application, that connects to my server code and uploads and downloads, and sync files with the server. my database is mysql.
I have compiled my server code and created a .WAR file. i deployed that .WAR (containing all the required libraries for my server side application) file on a JBoss server and its working fine.
Now my Management says me to why use JBoss instead of Tomcat, which easy to manage and setup on a linux server. actualy they have a linux server which supports tomcat, but not JBoss. so they said to me to deploy on Tomcat on Linux Server. I installed and configured tomcat on my windows and deployed a .WAR file. and also created virtual directory for my resources its working fine[but not tested completely]
My Application does not have EJB so I think that Tomcat is good enough.
Please suggest me is it fine to use Tomcat instead of JBoss server, I am worried if it may get problems in the future, or it might not support features of my application in future or after complete testing.