RE: WAR FILE NOT WORKING

2003-02-19 Thread Jacob Kjome

So, then you decided not to create a  entry in the server.xml and 
it is now expanding for you, but your app isn't working properly?

Ok, what was the name of the .war file?  Let's assume it is 
"myapp.war".  This will expand to a directory called "myapp" and you will 
be able to access it via

http://localhost:8080/myapp/
and
http://localhost:8080/myapp/Welcome.jsp

1.  Are you sure it is "Welcome.jsp" and not "welcome.jsp"?
2.  If you are sure about #1, then check the console and/or the log files 
for error messages

Send a message back to the list if none of the above is fruitful.

Jake

At 02:53 PM 2/19/2003 +0530, you wrote:
Sorry Jacob to bug you again,
as you said it is self extracting but i am not able to reach the welcome 
file with
http://:8080/myapp/Welcome.jsp
http://:8080/apps/Welcome.jsp

http://:8080/myapp.Welcome.jsp
http://:8080/app.Welcome.jsp

and i am using object stream and url connection


-Original Message-
From:   Jacob Kjome [SMTP:[EMAIL PROTECTED]]
Sent:   Wednesday, February 19, 2003 11:22 AM
To:     Tomcat Users List
Subject:RE: WAR FILE NOT WORKING


Just do...


reloadable="true" crossContext="true" privileged="true" />

The just drop the "apps.war" file into CATALINA_HOME/webapps.  Now start
Tomcat.

The war file will *not* be expanded and the customer doesn't need to expand
it.  It will run from the .war file.  Now, this assumes you aren't using
any File IO within the WAR.  If not, then you are golden.  If so, then this
won't work for you.

What I meant by "minus the .war" is:

WAR file name:   apps.war
directory name:   apps

the directory name is the same name as the WAR file name except without the
".war" parteg... "minus .war".

Anyway, if you want to deploy your app as a directory structure and not a
WAR file *and* you want to define a  entry for it, you simply
*have* to tell your customer to expand the "apps.war" file to a directory
named "apps".  A WAR file is, pretty much, the same as a .zip or .jar
file.  Your customer can use any archive utility that works with .zip or
.jar archives to do the extraction.  This shoud all be done with Tomcat
stopped first.

If you don't want to have to worry about this, then don't add the 
entry.  It doesn't look like you are really doing anything special in it
anyway, so why add it?  Tomcat will create a default entry *and* you get
the benefit of auto-expansion just like you want.

Jake

At 11:01 AM 2/19/2003 +0530, you wrote:
>   I think my problem was not clear. I create a war file and put it in
> webapps and also i define a context for the directory which i   except to
> be created by the tomcat by extracting the war file. I  start my tomcat
> 4.1.12, it craches saying ..\webapps\apps does not exists or is not
> readable. I want to know
>1) is it possible to put the war file with out extracting it and defining
>teh context. Use it like "http:\\:8080\apps\Welcome.jsp"
>2)If 1 cannot be done how do i use war file.(i dont want to extract it
>myself and define the context myself) i want to put the war file, define
>context and use it
>
>-Original Message-
>From:   Peng Tuck Kwok [SMTP:[EMAIL PROTECTED]]
>Sent:   Wednesday, February 19, 2003 10:05 AM
>To: Tomcat Users List
>Subject:Re: WAR FILE NOT WORKING
>
>If you have already defined a context in server.xml before a war file is
>created, then the directory for that context should exist. Otherwise if
>you run tomcat from the command line it will just quit. Try this :
>remove the reference to the context called apps from your server.xml and
>remove (or move somewhere else) the apps directory under webapps. Place
>the war file you want in the webapps directory, start (restart if you
>are currently running) tomcat. They war file should deploy itself.
>
>You can test the war file unpacking behaviour  by downloading a few
>examples on your own.
>
>
>Nandish A wrote:
> > Hi Jake(Hope i can call you this way),
> >   Thanks for your help, but (as usually) things work if
> extract myself. If i have to extract it myself then the purpose of the
> war file is not solved(as far as i am concerned). I would like to give
> the war file to my customer and the configuration of server.xml file, and
> i except it should extract and work fine. Jake i did not understand what
> is minus the ".war".
> >
> > Thanks and regards
> > Nandish
> >
> > Second, if you configure this in server.xml and then expect a .war of the
> > name apps.war to be extracted to a directory of the same name (minus the
> > ".war"), you are mistaken.  You will need to shut down Tomcat and unpack
> > this 

RE: WAR FILE NOT WORKING

2003-02-19 Thread Nandish A
Sorry Jacob to bug you again, 
as you said it is self extracting but i am not able to reach the welcome file with
http://:8080/myapp/Welcome.jsp
http://:8080/apps/Welcome.jsp

http://:8080/myapp.Welcome.jsp
http://:8080/app.Welcome.jsp

and i am using object stream and url connection


-Original Message-
From:   Jacob Kjome [SMTP:[EMAIL PROTECTED]]
Sent:   Wednesday, February 19, 2003 11:22 AM
To: Tomcat Users List
Subject:RE: WAR FILE NOT WORKING


Just do...



The just drop the "apps.war" file into CATALINA_HOME/webapps.  Now start 
Tomcat.

The war file will *not* be expanded and the customer doesn't need to expand 
it.  It will run from the .war file.  Now, this assumes you aren't using 
any File IO within the WAR.  If not, then you are golden.  If so, then this 
won't work for you.

What I meant by "minus the .war" is:

WAR file name:   apps.war
directory name:   apps

the directory name is the same name as the WAR file name except without the 
".war" parteg... "minus .war".

Anyway, if you want to deploy your app as a directory structure and not a 
WAR file *and* you want to define a  entry for it, you simply 
*have* to tell your customer to expand the "apps.war" file to a directory 
named "apps".  A WAR file is, pretty much, the same as a .zip or .jar 
file.  Your customer can use any archive utility that works with .zip or 
.jar archives to do the extraction.  This shoud all be done with Tomcat 
stopped first.

If you don't want to have to worry about this, then don't add the  
entry.  It doesn't look like you are really doing anything special in it 
anyway, so why add it?  Tomcat will create a default entry *and* you get 
the benefit of auto-expansion just like you want.

Jake

At 11:01 AM 2/19/2003 +0530, you wrote:
>   I think my problem was not clear. I create a war file and put it in 
> webapps and also i define a context for the directory which i   except to 
> be created by the tomcat by extracting the war file. I  start my tomcat 
> 4.1.12, it craches saying ..\webapps\apps does not exists or is not 
> readable. I want to know
>1) is it possible to put the war file with out extracting it and defining 
>teh context. Use it like "http:\\:8080\apps\Welcome.jsp"
>2)If 1 cannot be done how do i use war file.(i dont want to extract it 
>myself and define the context myself) i want to put the war file, define 
>context and use it
>
>-Original Message-
>From:   Peng Tuck Kwok [SMTP:[EMAIL PROTECTED]]
>Sent:   Wednesday, February 19, 2003 10:05 AM
>To: Tomcat Users List
>Subject:Re: WAR FILE NOT WORKING
>
>If you have already defined a context in server.xml before a war file is
>created, then the directory for that context should exist. Otherwise if
>you run tomcat from the command line it will just quit. Try this :
>remove the reference to the context called apps from your server.xml and
>remove (or move somewhere else) the apps directory under webapps. Place
>the war file you want in the webapps directory, start (restart if you
>are currently running) tomcat. They war file should deploy itself.
>
>You can test the war file unpacking behaviour  by downloading a few
>examples on your own.
>
>
>Nandish A wrote:
> > Hi Jake(Hope i can call you this way),
> >   Thanks for your help, but (as usually) things work if 
> extract myself. If i have to extract it myself then the purpose of the 
> war file is not solved(as far as i am concerned). I would like to give 
> the war file to my customer and the configuration of server.xml file, and 
> i except it should extract and work fine. Jake i did not understand what 
> is minus the ".war".
> >
> > Thanks and regards
> > Nandish
> >
> > Second, if you configure this in server.xml and then expect a .war of the
> > name apps.war to be extracted to a directory of the same name (minus the
> > ".war"), you are mistaken.  You will need to shut down Tomcat and unpack
> > this yourself first.  If you didn't configure anything in server.xml, then
> > it would be unpacked like you expect.  It is all in Tomcat's
> > documentation.  Don't feel alone on this one, though.  A lot of people 
> have
> > had this confusion and the behavior is somewhat of a contentious
> > issue.  However, now that you know it works this way (whether we like 
> it or
> > not), you can work around it.
> >
> > Jake
> >
> > At 04:13 PM 2/18/2003 +0530, you wrote:
> >
> >>hi all i am using tomcat 4.1.17 windows 95. i tested my application
> >>keeping it in a directory "apps" on desktop and configuring the server.xml
> >>file. No when i cr

Re: WAR FILE NOT WORKING

2003-02-18 Thread Peng Tuck Kwok
See replies inline :
Nandish A wrote:

  I think my problem was not clear. I create a war file and 
>put it in webapps and also i define a context for the directory which i
>except to be created by the tomcat by extracting the war file. I  start
> my tomcat 4.1.12, it craches saying ..\webapps\apps does not exists 
or is not readable.
Yes, you define a context in server xml but did not create the physical 
directory for the context. So tomcat quits before it gets to the 
business of unpacking your wars, so no directory for you. If you didn't 
create a context(and directory in webapps) in the first place I'm 
preeety sure that the war file will be unpacked.


It is possible for you to define your own context outside of server.xml 
as is done with the admin web application. Just put the war file in the 
webapp directory along with its own xml file which defines its context.

I want to know
1) is it possible to put the war file with out extracting it and defining teh context. Use it like "http:\\:8080\apps\Welcome.jsp"
2)If 1 cannot be done how do i use war file.(i dont want to extract it myself and define the context myself) i want to put the war file, define context and use it


Yes you can.  Look here 
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/host.html

-Original Message-
From:	Peng Tuck Kwok [SMTP:[EMAIL PROTECTED]]
Sent:	Wednesday, February 19, 2003 10:05 AM
To:	Tomcat Users List
Subject:	Re: WAR FILE NOT WORKING

If you have already defined a context in server.xml before a war file is 
created, then the directory for that context should exist. Otherwise if 
you run tomcat from the command line it will just quit. Try this :
remove the reference to the context called apps from your server.xml and 
remove (or move somewhere else) the apps directory under webapps. Place 
the war file you want in the webapps directory, start (restart if you 
are currently running) tomcat. They war file should deploy itself.

You can test the war file unpacking behaviour  by downloading a few 
examples on your own.


Nandish A wrote:

Hi Jake(Hope i can call you this way), 
		Thanks for your help, but (as usually) things work if extract myself. If i have to extract it myself then the purpose of the war file is not solved(as far as i am concerned). I would like to give the war file to my customer and the configuration of server.xml file, and i except it should extract and work fine. Jake i did not understand what is minus the ".war".

Thanks and regards
Nandish

Second, if you configure this in server.xml and then expect a .war of the 
name apps.war to be extracted to a directory of the same name (minus the 
".war"), you are mistaken.  You will need to shut down Tomcat and unpack 
this yourself first.  If you didn't configure anything in server.xml, then 
it would be unpacked like you expect.  It is all in Tomcat's 
documentation.  Don't feel alone on this one, though.  A lot of people have 
had this confusion and the behavior is somewhat of a contentious 
issue.  However, now that you know it works this way (whether we like it or 
not), you can work around it.

Jake

At 04:13 PM 2/18/2003 +0530, you wrote:


hi all i am using tomcat 4.1.17 windows 95. i tested my application 
keeping it in a directory "apps" on desktop and configuring the server.xml 
file. No when i create the war file of the directory
and place it in webapps when i restart my server the apps.war is not 
getting extracted and teh server crashes. i used


any help any idea any opinion would be great
Regards
Nandish
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





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





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





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




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




RE: WAR FILE NOT WORKING

2003-02-18 Thread Jacob Kjome

Just do...



The just drop the "apps.war" file into CATALINA_HOME/webapps.  Now start 
Tomcat.

The war file will *not* be expanded and the customer doesn't need to expand 
it.  It will run from the .war file.  Now, this assumes you aren't using 
any File IO within the WAR.  If not, then you are golden.  If so, then this 
won't work for you.

What I meant by "minus the .war" is:

WAR file name:   apps.war
directory name:   apps

the directory name is the same name as the WAR file name except without the 
".war" parteg... "minus .war".

Anyway, if you want to deploy your app as a directory structure and not a 
WAR file *and* you want to define a  entry for it, you simply 
*have* to tell your customer to expand the "apps.war" file to a directory 
named "apps".  A WAR file is, pretty much, the same as a .zip or .jar 
file.  Your customer can use any archive utility that works with .zip or 
.jar archives to do the extraction.  This shoud all be done with Tomcat 
stopped first.

If you don't want to have to worry about this, then don't add the  
entry.  It doesn't look like you are really doing anything special in it 
anyway, so why add it?  Tomcat will create a default entry *and* you get 
the benefit of auto-expansion just like you want.

Jake

At 11:01 AM 2/19/2003 +0530, you wrote:
  I think my problem was not clear. I create a war file and put it in 
webapps and also i define a context for the directory which i   except to 
be created by the tomcat by extracting the war file. I  start my tomcat 
4.1.12, it craches saying ..\webapps\apps does not exists or is not 
readable. I want to know
1) is it possible to put the war file with out extracting it and defining 
teh context. Use it like "http:\\:8080\apps\Welcome.jsp"
2)If 1 cannot be done how do i use war file.(i dont want to extract it 
myself and define the context myself) i want to put the war file, define 
context and use it

-Original Message-
From:   Peng Tuck Kwok [SMTP:[EMAIL PROTECTED]]
Sent:   Wednesday, February 19, 2003 10:05 AM
To: Tomcat Users List
Subject:Re: WAR FILE NOT WORKING

If you have already defined a context in server.xml before a war file is
created, then the directory for that context should exist. Otherwise if
you run tomcat from the command line it will just quit. Try this :
remove the reference to the context called apps from your server.xml and
remove (or move somewhere else) the apps directory under webapps. Place
the war file you want in the webapps directory, start (restart if you
are currently running) tomcat. They war file should deploy itself.

You can test the war file unpacking behaviour  by downloading a few
examples on your own.


Nandish A wrote:
> Hi Jake(Hope i can call you this way),
>   Thanks for your help, but (as usually) things work if 
extract myself. If i have to extract it myself then the purpose of the 
war file is not solved(as far as i am concerned). I would like to give 
the war file to my customer and the configuration of server.xml file, and 
i except it should extract and work fine. Jake i did not understand what 
is minus the ".war".
>
> Thanks and regards
> Nandish
>
> Second, if you configure this in server.xml and then expect a .war of the
> name apps.war to be extracted to a directory of the same name (minus the
> ".war"), you are mistaken.  You will need to shut down Tomcat and unpack
> this yourself first.  If you didn't configure anything in server.xml, then
> it would be unpacked like you expect.  It is all in Tomcat's
> documentation.  Don't feel alone on this one, though.  A lot of people 
have
> had this confusion and the behavior is somewhat of a contentious
> issue.  However, now that you know it works this way (whether we like 
it or
> not), you can work around it.
>
> Jake
>
> At 04:13 PM 2/18/2003 +0530, you wrote:
>
>>hi all i am using tomcat 4.1.17 windows 95. i tested my application
>>keeping it in a directory "apps" on desktop and configuring the server.xml
>>file. No when i create the war file of the directory
>>and place it in webapps when i restart my server the apps.war is not
>>getting extracted and teh server crashes. i used
>>
>>reloadable="true" crossContext="true" privileged="true">
>>
>>any help any idea any opinion would be great
>>Regards
>>Nandish
>>-
>>To unsubscribe, e-mail: [EMAIL PROTECTED]
>>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
> 
>
> -
> To unsubscr

RE: WAR FILE NOT WORKING

2003-02-18 Thread Nandish A
  I think my problem was not clear. I create a war file and put it in webapps and 
also i define a context for the directory which i   except to be created by the tomcat 
by extracting the war file. I  start my tomcat 4.1.12, it craches saying 
..\webapps\apps does not exists or is not readable. I want to know 
1) is it possible to put the war file with out extracting it and defining teh context. 
Use it like "http:\\:8080\apps\Welcome.jsp"
2)If 1 cannot be done how do i use war file.(i dont want to extract it myself and 
define the context myself) i want to put the war file, define context and use it

-Original Message-
From:   Peng Tuck Kwok [SMTP:[EMAIL PROTECTED]]
Sent:   Wednesday, February 19, 2003 10:05 AM
To: Tomcat Users List
Subject:        Re: WAR FILE NOT WORKING

If you have already defined a context in server.xml before a war file is 
created, then the directory for that context should exist. Otherwise if 
you run tomcat from the command line it will just quit. Try this :
remove the reference to the context called apps from your server.xml and 
remove (or move somewhere else) the apps directory under webapps. Place 
the war file you want in the webapps directory, start (restart if you 
are currently running) tomcat. They war file should deploy itself.

You can test the war file unpacking behaviour  by downloading a few 
examples on your own.


Nandish A wrote:
> Hi Jake(Hope i can call you this way), 
>   Thanks for your help, but (as usually) things work if extract myself. 
>If i have to extract it myself then the purpose of the war file is not solved(as far 
>as i am concerned). I would like to give the war file to my customer and the 
>configuration of server.xml file, and i except it should extract and work fine. Jake 
>i did not understand what is minus the ".war".
> 
> Thanks and regards
> Nandish
> 
> Second, if you configure this in server.xml and then expect a .war of the 
> name apps.war to be extracted to a directory of the same name (minus the 
> ".war"), you are mistaken.  You will need to shut down Tomcat and unpack 
> this yourself first.  If you didn't configure anything in server.xml, then 
> it would be unpacked like you expect.  It is all in Tomcat's 
> documentation.  Don't feel alone on this one, though.  A lot of people have 
> had this confusion and the behavior is somewhat of a contentious 
> issue.  However, now that you know it works this way (whether we like it or 
> not), you can work around it.
> 
> Jake
> 
> At 04:13 PM 2/18/2003 +0530, you wrote:
> 
>>hi all i am using tomcat 4.1.17 windows 95. i tested my application 
>>keeping it in a directory "apps" on desktop and configuring the server.xml 
>>file. No when i create the war file of the directory
>>and place it in webapps when i restart my server the apps.war is not 
>>getting extracted and teh server crashes. i used
>>>reloadable="true" crossContext="true" privileged="true">
>>
>>any help any idea any opinion would be great
>>Regards
>>Nandish
>>-
>>To unsubscribe, e-mail: [EMAIL PROTECTED]
>>For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]



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


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


Re: WAR FILE NOT WORKING

2003-02-18 Thread Peng Tuck Kwok
If you have already defined a context in server.xml before a war file is 
created, then the directory for that context should exist. Otherwise if 
you run tomcat from the command line it will just quit. Try this :
remove the reference to the context called apps from your server.xml and 
remove (or move somewhere else) the apps directory under webapps. Place 
the war file you want in the webapps directory, start (restart if you 
are currently running) tomcat. They war file should deploy itself.

You can test the war file unpacking behaviour  by downloading a few 
examples on your own.


Nandish A wrote:
Hi Jake(Hope i can call you this way), 
		Thanks for your help, but (as usually) things work if extract myself. If i have to extract it myself then the purpose of the war file is not solved(as far as i am concerned). I would like to give the war file to my customer and the configuration of server.xml file, and i except it should extract and work fine. Jake i did not understand what is minus the ".war".

Thanks and regards
Nandish

Second, if you configure this in server.xml and then expect a .war of the 
name apps.war to be extracted to a directory of the same name (minus the 
".war"), you are mistaken.  You will need to shut down Tomcat and unpack 
this yourself first.  If you didn't configure anything in server.xml, then 
it would be unpacked like you expect.  It is all in Tomcat's 
documentation.  Don't feel alone on this one, though.  A lot of people have 
had this confusion and the behavior is somewhat of a contentious 
issue.  However, now that you know it works this way (whether we like it or 
not), you can work around it.

Jake

At 04:13 PM 2/18/2003 +0530, you wrote:

hi all i am using tomcat 4.1.17 windows 95. i tested my application 
keeping it in a directory "apps" on desktop and configuring the server.xml 
file. No when i create the war file of the directory
and place it in webapps when i restart my server the apps.war is not 
getting extracted and teh server crashes. i used


any help any idea any opinion would be great
Regards
Nandish
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





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




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




RE: WAR FILE NOT WORKING

2003-02-18 Thread Nandish A
Hi Jake(Hope i can call you this way), 
Thanks for your help, but (as usually) things work if extract myself. 
If i have to extract it myself then the purpose of the war file is not solved(as far 
as i am concerned). I would like to give the war file to my customer and the 
configuration of server.xml file, and i except it should extract and work fine. Jake i 
did not understand what is minus the ".war".

Thanks and regards
Nandish

Second, if you configure this in server.xml and then expect a .war of the 
name apps.war to be extracted to a directory of the same name (minus the 
".war"), you are mistaken.  You will need to shut down Tomcat and unpack 
this yourself first.  If you didn't configure anything in server.xml, then 
it would be unpacked like you expect.  It is all in Tomcat's 
documentation.  Don't feel alone on this one, though.  A lot of people have 
had this confusion and the behavior is somewhat of a contentious 
issue.  However, now that you know it works this way (whether we like it or 
not), you can work around it.

Jake

At 04:13 PM 2/18/2003 +0530, you wrote:
>hi all i am using tomcat 4.1.17 windows 95. i tested my application 
>keeping it in a directory "apps" on desktop and configuring the server.xml 
>file. No when i create the war file of the directory
>and place it in webapps when i restart my server the apps.war is not 
>getting extracted and teh server crashes. i used
>reloadable="true" crossContext="true" privileged="true">
>
>any help any idea any opinion would be great
>Regards
>Nandish
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]


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


Re: WAR FILE NOT WORKING

2003-02-18 Thread Jacob Kjome

First, you have an invalid context "path" of "\".  It should be either "" 
for the ROOT context or something like "/apps".  Note the forward slash 
instead of the backslash and notice that a path of "/" does *not* refer to 
the root app.  It is an undefined path according to Tomcat.  I'm not really 
sure why "" was used for the ROOT context instead of "/".  It just is, so, 
now you know.

Second, if you configure this in server.xml and then expect a .war of the 
name apps.war to be extracted to a directory of the same name (minus the 
".war"), you are mistaken.  You will need to shut down Tomcat and unpack 
this yourself first.  If you didn't configure anything in server.xml, then 
it would be unpacked like you expect.  It is all in Tomcat's 
documentation.  Don't feel alone on this one, though.  A lot of people have 
had this confusion and the behavior is somewhat of a contentious 
issue.  However, now that you know it works this way (whether we like it or 
not), you can work around it.

Jake

At 04:13 PM 2/18/2003 +0530, you wrote:
hi all i am using tomcat 4.1.17 windows 95. i tested my application 
keeping it in a directory "apps" on desktop and configuring the server.xml 
file. No when i create the war file of the directory
and place it in webapps when i restart my server the apps.war is not 
getting extracted and teh server crashes. i used


any help any idea any opinion would be great
Regards
Nandish
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: WAR FILE NOT WORKING

2003-02-18 Thread James Lewis

Sorry, I meant can you post the logfile for tomcat - normally catalina.out -
it will normally contain some clue as to the problem.

james


> -Original Message-
> From: Nandish A [mailto:[EMAIL PROTECTED]]
> Sent: 18 February 2003 11:10
> To: 'Tomcat Users List'
> Subject: RE: WAR FILE NOT WORKING
>
>
>
>
>
> The name of the war file is iCMeta.war
> -Original Message-
> From: James Lewis [SMTP:[EMAIL PROTECTED]]
> Sent: Tuesday, February 18, 2003 4:17 PM
> To:   Tomcat Users List
> Subject:  RE: WAR FILE NOT WORKING
>
> Hi,
>
> Could you post the catalina.out log please (or at least the relevant bits
> from it).
>
> Cheers,
>
> James
>
> > -Original Message-
> > From: Nandish A [mailto:[EMAIL PROTECTED]]
> > Sent: 18 February 2003 10:44
> > To: 'Tomcat Users List'
> > Subject: WAR FILE NOT WORKING
> >
> >
> > hi all i am using tomcat 4.1.17 windows 95. i tested my
> > application keeping it in a directory "apps" on desktop and
> > configuring the server.xml file. No when i create the war file of
> > the directory
> > and place it in webapps when i restart my server the apps.war is
> > not getting extracted and teh server crashes. i used
> >  > reloadable="true" crossContext="true" privileged="true">
> >
> > any help any idea any opinion would be great
> > Regards
> > Nandish
> >
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


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




RE: WAR FILE NOT WORKING

2003-02-18 Thread Nandish A

   

The name of the war file is iCMeta.war
-Original Message-
From:   James Lewis [SMTP:[EMAIL PROTECTED]]
Sent:   Tuesday, February 18, 2003 4:17 PM
To: Tomcat Users List
Subject:RE: WAR FILE NOT WORKING

Hi,

Could you post the catalina.out log please (or at least the relevant bits
from it).

Cheers,

James

> -Original Message-
> From: Nandish A [mailto:[EMAIL PROTECTED]]
> Sent: 18 February 2003 10:44
> To: 'Tomcat Users List'
> Subject: WAR FILE NOT WORKING
>
>
> hi all i am using tomcat 4.1.17 windows 95. i tested my
> application keeping it in a directory "apps" on desktop and
> configuring the server.xml file. No when i create the war file of
> the directory
> and place it in webapps when i restart my server the apps.war is
> not getting extracted and teh server crashes. i used
>  reloadable="true" crossContext="true" privileged="true">
>
> any help any idea any opinion would be great
> Regards
> Nandish
>


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


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


RE: WAR FILE NOT WORKING

2003-02-18 Thread James Lewis
Hi,

Could you post the catalina.out log please (or at least the relevant bits
from it).

Cheers,

James

> -Original Message-
> From: Nandish A [mailto:[EMAIL PROTECTED]]
> Sent: 18 February 2003 10:44
> To: 'Tomcat Users List'
> Subject: WAR FILE NOT WORKING
>
>
> hi all i am using tomcat 4.1.17 windows 95. i tested my
> application keeping it in a directory "apps" on desktop and
> configuring the server.xml file. No when i create the war file of
> the directory
> and place it in webapps when i restart my server the apps.war is
> not getting extracted and teh server crashes. i used
>  reloadable="true" crossContext="true" privileged="true">
>
> any help any idea any opinion would be great
> Regards
> Nandish
>


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




WAR FILE NOT WORKING

2003-02-18 Thread Nandish A
hi all i am using tomcat 4.1.17 windows 95. i tested my application keeping it in a 
directory "apps" on desktop and configuring the server.xml file. No when i create the 
war file of the directory
and place it in webapps when i restart my server the apps.war is not getting extracted 
and teh server crashes. i used 
 

any help any idea any opinion would be great
Regards
Nandish

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