Tewari, Vijay wrote:
I am using
the Axis AdminClient to deploy
a service. However I am unable to see the new methods unless I shutdown
and
restart Tomcat?
I am
undeploying the service before
deploying it with the new interfaces.
There is a "reloadable" flag in the server.xml file. You can make the
new methods show up automatically if you edit this. Look for this:
<!-- Define properties for each web application. This is only
needed if you want to set non-default properties,
or have web application document roots in places other
than the virtual host's appBase directory. -->
and insert the following line just below it:
<DefaultContext reloadable="true"/>
That might help you.
|