RE: Programmatic deployment of web services

2005-01-13 Thread Bill Keicher
I haven't tried this before, but maybe you could leverage the .jws that axis supports...perhaps by writing a servlet that allows you to upload .jws files? This is clearly more of a hack than anything else, and I don't even know if it'd work. In addition, it limits the types of web services

Re: Programmatic deployment of web services

2005-01-13 Thread Bill Keese
Does anyone have any advice on how to go about programmatically deploying and undeploying services, or at least appropriate places in the source code to begin looking? Isn't that what the AdminClient is for? % java org.apache.axis.client.AdminClient deploy.wsdd AdminDone processing/Admin

Re: Programmatic deployment of web services

2003-01-27 Thread Benjamin Tomasini
I would just modifiy the server-config.wsdd manually. Same effect. On Mon, 2003-01-27 at 14:26, James Flagg wrote: Greetings all, According to the Axis documentation, the way to deploy web services using WSDD is to invoke the AdminClient from the command line: % java

Re: Programmatic deployment of web services

2003-01-27 Thread Benjamin Tomasini
Or, just be sure to use the same server-config.wsdd file for the webapp after each deployment. Any settings in this file will be reloaded when the webapp starts. Auto deploying through the admin client on startup would be redundant and complex - probably more buggy, too. On Mon, 2003-01-27 at

RE: Programmatic deployment of web services

2003-01-27 Thread James Flagg
] Subject: Re: Programmatic deployment of web services Or, just be sure to use the same server-config.wsdd file for the webapp after each deployment. Any settings in this file will be reloaded when the webapp starts. Auto deploying through the admin client on startup would be redundant and complex