If i want to deploy a new webservice from an exisitng webservice, which of the following is correct? or are they both wrong??
AxisServer server = AxisServer.getServer(env); server.deployWSDD(wsddDoc); or is it, AxisServer server = new AxisServer(); server.deployWSDD(wsddDoc); i am not sure what does the getServer() do but is it right to create a new AxisServer instance? please help, Jeff
