If you want to un-jar a warfile within CIFS rather than doing a bulk upload using the GUI, then you must do something let the virtualization server know about it (the GUI does this for you).Assuming you have done the bulk upload directly to staging (the most efficient technique), then just navigate to the staging sandbox of that web project and hit the "Refresh" button(actually it would be better named "Reload"). That will kick the virt server and tell it aboutthe new webapp. Note that you don't have to do this every time you upload contens via CIFS;the only case is when you modify the contents of WEB-INF or META-INF… which is exactly whatyou're doing. Again, actions through the GUI take care of this for you automatically, so the only time you'vegot to manually "Refresh" is when you modify WEB-INF or META-INF via CIFS. Another thing: I'm assuming you are un-jaring your .war file. Here's how to do that:GIVEN:- Your webapp war file is called alfresco-sample-website.war
- Your web project is called "test"
- Your CIFS mount point is the "v" drive
- This will be the ROOT webapp of the project
THEN:Navigate to:v:/test/HEAD/DATA/www/avm_webapps/ROOT
And say:jar xvf alfresco-sample-website.war
If you've done this properly, then within: v:/test/HEAD/DATA/www/avm_webapps/ROOT
you should see the WEB-INF and META-INF directories.At this point, you can go back to the GUI and hit the "Refresh"control associated with the staging sandbox of your web project.Once the virtualization server has reloaded it, you should beable to click on the "eyeball" icon in staging (or any of the associated author sandboxes) and see your webapp virtualized.*********** DEBUGGING ***********If you really want to see what's going on at a deeper level, you can edit: $VIRTUAL_TOMCAT_HOME/conf/logging.properties
Then set:org.alfresco.catalina.host.AVMHostConfig.level = FINE
However, changing the debug level of the virtualization server requires you to restart it;you only need to restart the virt server, not the alfresco webapp, if you want to employthis low-level debugging technique. I hope this helps, -Jon——————————PS: This is now in the Virtualization Server FAQ:http://wiki.alfresco.com/wiki/Virtualization_Server_FAQ#Are_files_edited.2Fcreated_in_CIFS_immediate...