Hi. I have an existing application deployed as a war file.  When I update
the war file, stop and start tomcat again, the war file is not re-expanding
over the old deployment.  I have set the permissions to 777 so it should not
be a permissions issue. 

It works if I delete the existing directory it expands into, then restart
tomcat, however that's not practical for a production environment.  Anyone
have any ideas for me?

--Dan


Supporting configs:
xml fragment in webapps:
<!-- BEGIN CONTEXT -->  
<Context 
        path="/bar" 
        docBase="/foo/bar.war" 
        debug="0"
        reloadable="true"
        crossContext="false"
        privileged="true"
        >

</Context>
<!-- END CONTEXT -->

server.xml
        <Host name="foo.com"
        debug="0" appBase="/foo"
        unpackWARs="true" autoDeploy="true"
        deployXML="true" liveDeploy="true">

The odd thing is that the logs indicate it's writing the files, but they
don't actually get updated.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to