Issues ****** Caching ======= Tomcat compiles the jsp files into ``class`` files. These can be deleted by stopping Tomcat and removing the folder for your application in this folder: :: work/Catalina/localhost/ Note: If you are using the Eclipse, tomcat plugin, :doc:`../../eclipse/plugin-tomcat`, the folder will be in the root of your project e.g. ``~/projects/myy-app/work/``. Failed creating java ==================== - `Can't register Tomcat as Windows service on some computers, under Java6`_ - `Tomcat Error - prunsrv.c Failed creating java (jvm.dll)`_ I updated Java to version 1.6, removed and re-installed the service, and get this error in the ``jakarta_service_20081231.log`` (Tomcat starts without any problem using the ``bin/startup.bat`` file): :: [2009-03-27 11:33:10] [173 javajni.c] [error] The specified module could not be found. [2009-03-27 11:33:10] [924 prunsrv.c] [error] Failed creating java E:\Software\Java\jdk1.6.0_11\jre\bin\server\jvm.dll To solve the problem copy ``msvcr71.dll`` to the tomcat ``bin`` folder: :: copy msvcr71.dll \tools\tomcat\bin\ There was a copy of ``msvcr71.dll`` on my workstation at some stage! IllegalArgumentException ======================== Trying to deploy an application using a context file, :doc:`deploy`: :: SEVERE: Error deploying configuration descriptor myfaces-template.xml java.io.IOException: java.lang.IllegalArgumentException: Context path is required :: 2007-01-15 10:54:03 StandardHost[localhost]: Error deploying application at context path null java.lang.IllegalArgumentException: Context path is required I was missing the ``path`` attribute in the ``Context`` tag: ::