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 Done processing (where deploy.wsd

RE: Programmatic deployment of web services

2005-01-13 Thread Bill Keicher
of web services you can programmatically add to the scope of jws, has security implications...blah blah blah. just a crazy thought... -Original Message- From: Bradley Mazurek [mailto:[EMAIL PROTECTED] Sent: Thursday, January 13, 2005 10:37 AM To: [EMAIL PROTECTED] Subject: Programmatic de

Programmatic deployment of web services

2005-01-13 Thread Bradley Mazurek
On the Axis wiki I see the following question: Q) How do I deploy a service on web application initialization? In the last message of the thread that questions' answer refers to, I see the following: I need to deploy and undeploy services programmatically. The deployment is done from a servlet

Programmatic deployment of web services

2003-01-30 Thread Antti S. Brax
I believe a few days ago there was discussion about programmatically deploying web services (I searched the archive as I just subscribed to this list). The suggested solution was to edit the server-config.wsdd file manually. I need to deploy and undeploy services programmatically. The deployment i

RE: Programmatic deployment of web services

2003-01-27 Thread James Flagg
ECTED] 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 co

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 14

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 org.apache.a

Programmatic deployment of web services

2003-01-27 Thread James Flagg
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 org.apache.axis.client.AdminClient deploy.wsdd which connects to the Axis servlet on localhost:8080 and registers the service. However, I hav