I want to change default Axis2 repository services directory to be services/v0.1. I have found a parameter in axis2.xml to change the service path and changed the service path to point to the directory that I want my service to be deployed to : <parameter name="servicePath"locked="false">services/v0.1</parameter> I have also changed my service's wsdl to point this new directory as location : <service name="MyService"> <port name="MyServiceSOAPport" binding="tns:MyServiceSOAPBinding"> <soap:address location="http://localhost/services/v0.1/MyService"/> </port> </service> However using Axis2 admin web page, looks like my service is still deployed to the services directory, not under services/0.1 directory as I want : What else do I need to do to deploy my service to a custom repository (not to the default repository). My custom repository is : /tomcat_inst_dir/webapps/axis2/WEB-INF/services/v0.1 Thanks Gul
