I have an Axis2 based web service which I deployed in Tomcat.First I downloaded axis2.war & placed it in Tomcat's webapps folder.It created axis2 folder & its sub-folders.In the WEB-INF sub-folder of Axis2, in the services
sub-folder I place my .aar file.Then in my browser I go to http://localhost:8080/axis2. It has a link services, which lists out all the services.Suppose my service is HelloWorldService. So the path where it is accessible is
But I do not want to reveal to world that my web service is driven by Axis2. Suppose I want the path to be
How to do that? Do I have to rename axis2
folder to abc
. I also have an web application abc
deployed in the same Tomcat. Do I copy content of axis2
sub-folder to abc
. I tried that, did not work.