Re: Unable to start web application

2004-01-18 Thread Ralf Schneider
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am Freitag, 16. Januar 2004 14:33 schrieb Shapira, Yoav: Make sure the permissions are the same, including file creation. Or alternatively, and better, use ServletContext#getResource rather than But what seems strange to me is that the same WAR

Re: Unable to start web application

2004-01-16 Thread Ralf Schneider
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am Donnerstag, 15. Januar 2004 15:21 schrieb Shapira, Yoav: Are there any other errors in the log? Does your webapp rely on No. ServletContext#getRealPath somewhere in its initialization? Are you Yes. Is that a problem? But the webapps path on

RE: Unable to start web application

2004-01-16 Thread Shapira, Yoav
Howdy, ServletContext#getRealPath somewhere in its initialization? Are you Yes. Is that a problem? But the webapps path on the server is the same as on my local machine. So, that should not matter. Make sure the permissions are the same, including file creation. Or alternatively, and

Unable to start web application

2004-01-15 Thread Ralf Schneider
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I'm quite new to developing web applications with Tomcat (5.0.6 that comes with JWSDP 1.3). I have a problem with starting a web application that is deployed as a WAR file. On my machine the web application works fine, but here I use it from

RE: Unable to start web application

2004-01-15 Thread Emile Coetzee
Schneider [mailto:[EMAIL PROTECTED] Sent: 15 January 2004 11:45 To: Tomcat Users List Subject: Unable to start web application -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I'm quite new to developing web applications with Tomcat (5.0.6 that comes with JWSDP 1.3). I have a problem with starting

RE: Unable to start web application

2004-01-15 Thread Bodycombe, Andrew
2004 12:05 To: 'Tomcat Users List'; [EMAIL PROTECTED] Subject: RE: Unable to start web application AFAIK you can't run a webapp from a war. You have to deploy (expand/extract) the war in the webapp folder to be able to run it. Usually Tomcat will deploy this for you when you start it up

Re: Unable to start web application

2004-01-15 Thread Vitor Buitoni
We could say that a WAR file is nothing more that a standard zip file, (or a .jar) with all the files and directory structure of your webapp. When you deploy a WAR file into tomcat, it extracts the file content into a directory, so it would have exactly the same result if you deploy your webapp

RE: Unable to start web application

2004-01-15 Thread Emile Coetzee
:) Cheers Emile -Original Message- From: Bodycombe, Andrew [mailto:[EMAIL PROTECTED] Sent: 15 January 2004 14:31 To: 'Tomcat Users List' Subject: RE: Unable to start web application I have to disagree with you on this point. A war file is the standard way to deploy a web application. See

RE: Unable to start web application

2004-01-15 Thread Shapira, Yoav
Howdy, We could say that a WAR file is nothing more that a standard zip file, (or a .jar) with all the files and directory structure of your webapp. You can think of a WAR as either a distribution format to be unpacked at the destination, or an executable format to be run directly by the