Sometimes certain .war files have issues being deployed because the system appends your username to the front before deploying it. This is because if you deployed a test.war no one else on the entire server would also be able to deploy a test.war. It first appends your username to the front like bogdan13_test.war and then deploys it. The problem arises when your .war scripts are hard coded to only work with one .war name. You can write better code to have it work with any filename, or the easiest way to fix it is to create your .war with the username on the front already. Let us know if this helps, or if you're still having issues.