you can create the services.xml and deploy the service programatically on runtime...some code snippet could be following..
File servDir = new File(serviceDir); DeploymentFileData serviceData = new DeploymentFileData(servDir); ServiceDeployer serviceDeployer = new ServiceDeployer(); serviceDeployer.init(AXIS_CONFIG_CONTEXT); serviceDeployer.deploy(serviceData); HTH, Chinmoy On Mon, Jun 20, 2011 at 4:50 PM, Arpit Gupta <[email protected]>wrote: > Hi all, > > I am using EJB as the service implementer in my web service. > I need to deploy my web service on multiple servers. > so, is there any solution to set "providerUrl" parameter dynamically in > services.xml by reading the parameter from somewhere else at deploy time. > > Thanks, > Arpit > > > ------------------------------**------------------------------**--------- > To unsubscribe, e-mail: > java-user-unsubscribe@axis.**apache.org<[email protected]> > For additional commands, e-mail: [email protected] > >
