I have deployed my war file in webapps folder and its gets unzipped when I start tomcat. Everything works fine on localhost. But when I try to access my webapps project html page from different machine I'm getting "403 fordidden".
Please Note that this is not stardard tomcat, since the product that i'm working on is enterprise product, we have modified the tomcat(which im not aware of). I tried to change catalina.policy file with following changes
grant codeBase "file:${catalina.base}/webapps/Visualization/-" {
permission java.net.SocketPermission "*.us.companyname.com:8080", "connect";
permission java.net.SocketPermission "*.us.companyname.com", "connect";
permission java.net,SocketPermission "*.us.companyname.com:80", "connect";
};
Also the next guess that i had was changing the permissions in tomcat-user.xml file, but there does not exist any such file.
Any pointers for the above problem is appreciated.
Thanks,