On Thu, Mar 29, 2012 at 13:25, paras jain <[email protected]> wrote: > i am unable to find the .war files when i customizing the jsp page.so will > you guide where i find .war files .
The war file is a package that contains your whole webapp, i.e. all the jsp files, libraries and resources. It's a single file for easy deployment, when copied to the tomcat webapps folder, tomcat automatically unpacks it into a directory with the same name. I actually made a mistake telling you that the webapps are .war files in DSpace. They're in form of unpacked directories under [dspace]/webapps/, e.g. jspui, xmlui, solr etc. When you run "ant update", the .jsp files you edited in [dspace-source] are compiled and copied to [dspace]/webapps. Your context in tomcat configuration should point to these individual directories (webapps) as in the example. Think of it as assigning a webapp to an URL. Regards, ~~helix84 ------------------------------------------------------------------------------ This SF email is sponsosred by: Try Windows Azure free for 90 days Click Here http://p.sf.net/sfu/sfd2d-msazure _______________________________________________ DSpace-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dspace-tech

