Re: Tomcat deployment issue

2004-08-25 Thread David Chang
Great suggestion.  I'll try to create a new context to put the data in.

DC

- Original Message - 
From: "QM" <[EMAIL PROTECTED]>
To: "Tomcat Users List" <[EMAIL PROTECTED]>
Sent: Tuesday, August 24, 2004 7:30 PM
Subject: Re: Tomcat deployment issue


> : I'm new to tomcat and trying to figure out how to deploy a WAR file
without deleting all the contents of the old application.
> : [snip]
> : The reason I want to do this is because my data and program files are
all under the same hierarchy.  I want to replace my programs, but not my
data.  I tried using a symbolic link for my data directory, but tomcat
followed the symbolic link and deleted everything in there when expanding
the new WAR file.
>
> You'll benefit, in the long run, from an application redesign.  Java
> webapps are meant to be somewhat self-contained bundles, which is why
> you have the option of deploying in a neat WAR file.  (I may be
> mistaken,  but I recall the spec says it's optional for a container to
> support the exploded-dir format.)
>
> Questions to consider:
>
> - What if your app grows, and needs to be spread amongst 2+ clustered
>   servers?  Where would the data go then?
>
> - How do you migrate from dev -> testing -> production?
>
> etc
>
> Find another place outside of the webapp to put your data, such as
> another directory (specified as a context param or in a properties
> file).
>
> -QM
>
> -- 
>
> software  -- http://www.brandxdev.net
> tech news -- http://www.RoarNetworX.com
>
>
> -
> 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: Tomcat deployment issue

2004-08-25 Thread Wade Chandler
David Chang wrote:
Hi,
I'm new to tomcat and trying to figure out how to deploy a WAR file without deleting 
all the contents of the old application.  That is, I want to overwrite the files with 
my new archive but not delete any other files that were already there.
The reason I want to do this is because my data and program files are all under the 
same hierarchy.  I want to replace my programs, but not my data.  I tried using a 
symbolic link for my data directory, but tomcat followed the symbolic link and deleted 
everything in there when expanding the new WAR file.
Any help would be appreciated.
DC
Sure,  but what it sounds like you want to do is just name the context 
differently.  When you deploy the war file if you currently have 
/mywebapp1 then name it /mywebapp2.  You'll now have to versions of your 
webapp deployed on the server in two seperate directories.  You just 
have to access them differently.

It also sounds like you need to come up with a different scheme for your 
data storage.  Maybe place your data store some where else and simply 
have a config file option that tells your app where the data lies? 
Maybe something like that.  Give your app the brains to create it's data 
dir based on that setting and give that dir permissions for the user you 
are running tomcat as.  If you don't want to put the data out yourself 
you app can the first time it is ran and if it is there simply use it. 
Of course you'll have to have a code module for data upgrades or 
something if you ever need to change your data structure...unless you 
keep that basically backward compat some how.

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


Re: Tomcat deployment issue

2004-08-24 Thread QM
: I'm new to tomcat and trying to figure out how to deploy a WAR file without deleting 
all the contents of the old application.
: [snip]
: The reason I want to do this is because my data and program files are all under the 
same hierarchy.  I want to replace my programs, but not my data.  I tried using a 
symbolic link for my data directory, but tomcat followed the symbolic link and deleted 
everything in there when expanding the new WAR file.

You'll benefit, in the long run, from an application redesign.  Java
webapps are meant to be somewhat self-contained bundles, which is why
you have the option of deploying in a neat WAR file.  (I may be
mistaken,  but I recall the spec says it's optional for a container to
support the exploded-dir format.)

Questions to consider:

- What if your app grows, and needs to be spread amongst 2+ clustered
  servers?  Where would the data go then?

- How do you migrate from dev -> testing -> production?

etc

Find another place outside of the webapp to put your data, such as
another directory (specified as a context param or in a properties
file).

-QM

-- 

software  -- http://www.brandxdev.net
tech news -- http://www.RoarNetworX.com


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



Re: Tomcat deployment issue

2004-08-24 Thread Peng Tuck Kwok
Maybe you want to automate the build process so you don't depend on
your expanded directory to store your data ?
Say in ant just generate the war file along with your data (from your
build directory) then deploy it.Then you never really worry what
tomcat does to your war file or the directory it explodes to.
Simply regenerate the war file along with your data when you make changes, :D 


On Tue, 24 Aug 2004 17:13:05 -0700, David Chang <[EMAIL PROTECTED]> wrote:
> Hi,
> 
> I'm new to tomcat and trying to figure out how to deploy a WAR file without deleting 
> all the contents of the old application.  That is, I want to overwrite the files 
> with my new archive but not delete any other files that were already there.
> 
> The reason I want to do this is because my data and program files are all under the 
> same hierarchy.  I want to replace my programs, but not my data.  I tried using a 
> symbolic link for my data directory, but tomcat followed the symbolic link and 
> deleted everything in there when expanding the new WAR file.
> 
> Any help would be appreciated.
> 
> DC
>

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



Re: Tomcat deployment issue

2004-08-24 Thread David Chang
Hi,

I'm new to tomcat and trying to figure out how to deploy a WAR file without deleting 
all the contents of the old application.  That is, I want to overwrite the files with 
my new archive but not delete any other files that were already there.

The reason I want to do this is because my data and program files are all under the 
same hierarchy.  I want to replace my programs, but not my data.  I tried using a 
symbolic link for my data directory, but tomcat followed the symbolic link and deleted 
everything in there when expanding the new WAR file.

Any help would be appreciated.

DC


Re: tomcat deployment (servlet)

2004-08-20 Thread Tim Funk
See Sun's Java Web Services Developer Pack
http://java.sun.com/webservices/jwsdp/index.jsp
-Tim
[EMAIL PROTECTED] wrote:
hi out there
i am actually new to servlets and tomcat ofcourse.  Basically the problem is 
that i have a servlet that i want to run in Tomcat.  If you could just please 

tell me simple steps on how to run a simple hello world servlet in tomcat ..i 

would really appreciate it.  and also tell me what url i should use to run it
thanks
-bhaarat

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


tomcat deployment (servlet)

2004-08-19 Thread Bhaarat19
hi out there

i am actually new to servlets and tomcat ofcourse.  Basically the problem is 
that i have a servlet that i want to run in Tomcat.  If you could just please 

tell me simple steps on how to run a simple hello world servlet in tomcat ..i 

would really appreciate it.  and also tell me what url i should use to run it

thanks
-bhaarat



RE: Tomcat Deployment with JBuilder

2004-03-23 Thread LILES, DAVID (CONTRACTOR)
You can build your WAR file in JBuilder. Verify your web app structure in JBuilder by 
viewing the properties and make sure you're getting everything you want.

As for Ant, it isn't as difficult as you might think and once you start using it you 
might actually prefer it over the IDE build process.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 23, 2004 8:21 AM
To: Tomcat Users List
Subject: Re: Tomcat Deployment with JBuilder




I'm a newbie so I don't know ant at all is there a way i can do in from the 
automatic generate and build in JBuilder?

thanks,
~Kayley~ 
- Original Message - 
From: "LILES, DAVID (CONTRACTOR)" <[EMAIL PROTECTED]>
To: "Tomcat Users List" <[EMAIL PROTECTED]>
Sent: Tuesday, March 23, 2004 9:01 AM
Subject: RE: Tomcat Deployment with JBuilder


> Have you tried using Ant? That way you can build your web app the way you 
like...
> 
> -Original Message-
> From: Kayley Ma [mailto:[EMAIL PROTECTED]
> Sent: Monday, March 22, 2004 10:51 PM
> To: Tomcat Users List
> Subject: Tomcat Deployment with JBuilder
> 
> 
> Hi,
> 
> Just wondering if there are any tips on using JBuilder to create a
> WebApplication which generates a WAR that can be deployed into Tomcat5 so
> that an application can be deployed.
> 
> I think JBuilder organizes and creates a structure that is different than
> the specified structure for Tomcat5 deployment... when I try to manually
> include class files to the WEB-INF/classes folder, I notice that once I
> rebuild in JBuilder, the classes that I manually add in disappear...
> 
> how can I modify the Jbuilder autoformat for a WebApplication compatible for
> Tomcat Deployment use?
> 
> Thank you,
> Kayley
> 
> 
> 
> -
> 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]
> 


This mail sent through www.mywaterloo.ca

-
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: Tomcat Deployment with JBuilder

2004-03-23 Thread k2ma


I'm a newbie so I don't know ant at all is there a way i can do in from the 
automatic generate and build in JBuilder?

thanks,
~Kayley~ 
- Original Message - 
From: "LILES, DAVID (CONTRACTOR)" <[EMAIL PROTECTED]>
To: "Tomcat Users List" <[EMAIL PROTECTED]>
Sent: Tuesday, March 23, 2004 9:01 AM
Subject: RE: Tomcat Deployment with JBuilder


> Have you tried using Ant? That way you can build your web app the way you 
like...
> 
> -Original Message-
> From: Kayley Ma [mailto:[EMAIL PROTECTED]
> Sent: Monday, March 22, 2004 10:51 PM
> To: Tomcat Users List
> Subject: Tomcat Deployment with JBuilder
> 
> 
> Hi,
> 
> Just wondering if there are any tips on using JBuilder to create a
> WebApplication which generates a WAR that can be deployed into Tomcat5 so
> that an application can be deployed.
> 
> I think JBuilder organizes and creates a structure that is different than
> the specified structure for Tomcat5 deployment... when I try to manually
> include class files to the WEB-INF/classes folder, I notice that once I
> rebuild in JBuilder, the classes that I manually add in disappear...
> 
> how can I modify the Jbuilder autoformat for a WebApplication compatible for
> Tomcat Deployment use?
> 
> Thank you,
> Kayley
> 
> 
> 
> -
> 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]
> 


This mail sent through www.mywaterloo.ca

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



RE: Tomcat Deployment with JBuilder

2004-03-23 Thread LILES, DAVID (CONTRACTOR)
Have you tried using Ant? That way you can build your web app the way you like...

-Original Message-
From: Kayley Ma [mailto:[EMAIL PROTECTED]
Sent: Monday, March 22, 2004 10:51 PM
To: Tomcat Users List
Subject: Tomcat Deployment with JBuilder


Hi,

Just wondering if there are any tips on using JBuilder to create a
WebApplication which generates a WAR that can be deployed into Tomcat5 so
that an application can be deployed.

I think JBuilder organizes and creates a structure that is different than
the specified structure for Tomcat5 deployment... when I try to manually
include class files to the WEB-INF/classes folder, I notice that once I
rebuild in JBuilder, the classes that I manually add in disappear...

how can I modify the Jbuilder autoformat for a WebApplication compatible for
Tomcat Deployment use?

Thank you,
Kayley



-
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]



Tomcat Deployment with JBuilder

2004-03-22 Thread Kayley Ma
Hi,

Just wondering if there are any tips on using JBuilder to create a
WebApplication which generates a WAR that can be deployed into Tomcat5 so
that an application can be deployed.

I think JBuilder organizes and creates a structure that is different than
the specified structure for Tomcat5 deployment... when I try to manually
include class files to the WEB-INF/classes folder, I notice that once I
rebuild in JBuilder, the classes that I manually add in disappear...

how can I modify the Jbuilder autoformat for a WebApplication compatible for
Tomcat Deployment use?

Thank you,
Kayley



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



Re: Tomcat Deployment Question

2004-03-22 Thread k2ma


As u said, I changed my URL according to your advice but unfortunately, now
there is another exception: java.io.EOFException... does this mean that my
servlet file can be found now?

Also, i now manually put my servlet class in:

C:\WebBlowWebApp1\defaultroot\WEB-INF\classes\webblowwebapp1\BlowDesignServl
et

but i wonder if the servlet class should fall DIRECTLY into the classes
folder rather than be in the webblowwebapp1 sub folder.

when i rebuild to generate the WAR in JBuilder, it recognizes my manual
changes to the structure, right?

>It's fine.  Why are you using the 2.2 DTD?

I donno what 2.2DTD is.. I just copied that off somewhere.. what should i be
using instead?

Thank you so VERY much!
~Kayley~



This mail sent through www.mywaterloo.ca

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



Re: Tomcat Deployment Question

2004-03-22 Thread k2ma


Hi Shapira,

thanks so much for your help! right now, i've edited my web.xml file but my
applet still can't make the connection to the servlet.

3 addition questions:

1. I would need to open an URL connection in my applet to the servlet...
what URL would I give it?  ie how do i make the connection from my applet to
the servlet in my applet code.  right now i have:
URL servletURL = new URL(this.getDocumentBase(),
"WEB-INF/classes/webblowwebapp1/BlowDesignServlet");

but i'm getting the error: java.io.FileNotFoundException:
http://127.0.0.1:8080/WebBlow1/WEB-INF/classes/webblowwebapp1/BlowDesignServlet

2. u mentioned that i should put my servlet class files in the
WEB-INF/classes... i built my WebApplication in JBuilder so it actually
doesn't have this structure but rather
C:\WebBlowWebApp1\classes\webblowwebapp1\servlet.class - is this ok or
should i manually change the structure?  (but then i notice that once my WAR
file generated by JBuilder is put into tomcat/webapp, my class file is in
WebBlow1(name of my application to be
deployed)/WEB-INF/classes/webblowwebapp1(name of webApplication i built in
jbuilder)/servletname.   is this correct?

3. does this web.xml file look correct?
---


http://java.sun.com/j2ee/dtds/web-app_2_2.dtd";>





blowdesignservlet

webblowwebapp1.BlowDesignServlet





blowdesignservlet

/blowdesignservlet







my servlet.java is located C:\WebBlowWebApp1\src\webblowwebapp1.

thank you so very very much - i'm very new at this and i really appreciate
the help!

cheers,
~Kayley~
- Original Message - 
From: "Shapira, Yoav" <[EMAIL PROTECTED]>
To: "Tomcat Users List" <[EMAIL PROTECTED]>
Sent: Monday, March 22, 2004 9:24 AM
Subject: RE: Tomcat Deployment question


>
> Hi,
> The server doesn't need your .java files, only the compiled class files.
> You can put them in the WEB-INF/classes (as-is, .class files) or
> WEB-INF/lib (packaged in a jar file) directory of your webapp.  You need
> to define and map your servlet in your WEB-INF/web.xml file.
>
> Yoav Shapira
> Millennium Research Informatics
>
>
> >-Original Message-
> >From: Kayley Ma [mailto:[EMAIL PROTECTED]
> >Sent: Sunday, March 21, 2004 6:33 PM
> >To: [EMAIL PROTECTED]
> >Subject: Tomcat Deployment question
> >
> >Hi all,
> >
> >For a deployed WebApp with a applet and a servlet (I already generated
> a
> >WAR
> >in JBuilder), where should i put my servlet so that Tomcat knows where
> to
> >find it?
> >
> >Current this is how my system is set up.  Using JBuilder, I created a
> >WebApplication where I direct  the defaultroot folder to the location
> of my
> >applet files. Then within my WebApplication, I created a servlet that
> the
> >applet should communicate with. Then a WAR is generated when I build in
> >JBuilder.  I then deploy this WAR file into Tomcat5 using the
> >TomcatManager.
> >However, when I select the HTML file, I can see that my applet is
> running
> >but it can't communicate with the servlet and I get a java error that
> saids
> >filenotfound.
> >
> >So what is it that I'm doing wrong? Where should I put my servlet.java
> and
> >servlet class so that Tomcat can find it?
> >
> >Thank you!
> >
> >Kay
> >
> >
> >
> >-
> >To unsubscribe, e-mail: [EMAIL PROTECTED]
> >For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>
> This e-mail, including any attachments, is a confidential business
communication, and may contain information that is confidential, proprietary
and/or privileged.  This e-mail is intended only for the individual(s) to
whom it is addressed, and may not be saved, copied, printed, disclosed or
used by anyone else.  If you are not the(an) intended recipient, please
immediately delete this e-mail from your computer system and notify the
sender.  Thank you.
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>



This mail sent through www.mywaterloo.ca

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



RE: Tomcat Deployment question

2004-03-22 Thread Shapira, Yoav

Hi,
The server doesn't need your .java files, only the compiled class files.
You can put them in the WEB-INF/classes (as-is, .class files) or
WEB-INF/lib (packaged in a jar file) directory of your webapp.  You need
to define and map your servlet in your WEB-INF/web.xml file.

Yoav Shapira
Millennium Research Informatics


>-Original Message-
>From: Kayley Ma [mailto:[EMAIL PROTECTED]
>Sent: Sunday, March 21, 2004 6:33 PM
>To: [EMAIL PROTECTED]
>Subject: Tomcat Deployment question
>
>Hi all,
>
>For a deployed WebApp with a applet and a servlet (I already generated
a
>WAR
>in JBuilder), where should i put my servlet so that Tomcat knows where
to
>find it?
>
>Current this is how my system is set up.  Using JBuilder, I created a
>WebApplication where I direct  the defaultroot folder to the location
of my
>applet files. Then within my WebApplication, I created a servlet that
the
>applet should communicate with. Then a WAR is generated when I build in
>JBuilder.  I then deploy this WAR file into Tomcat5 using the
>TomcatManager.
>However, when I select the HTML file, I can see that my applet is
running
>but it can't communicate with the servlet and I get a java error that
saids
>filenotfound.
>
>So what is it that I'm doing wrong? Where should I put my servlet.java
and
>servlet class so that Tomcat can find it?
>
>Thank you!
>
>Kay
>
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]




This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged.  This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender.  Thank you.


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



Tomcat Deployment question

2004-03-21 Thread Kayley Ma
Hi all,

For a deployed WebApp with a applet and a servlet (I already generated a WAR
in JBuilder), where should i put my servlet so that Tomcat knows where to
find it?

Current this is how my system is set up.  Using JBuilder, I created a
WebApplication where I direct  the defaultroot folder to the location of my
applet files. Then within my WebApplication, I created a servlet that the
applet should communicate with. Then a WAR is generated when I build in
JBuilder.  I then deploy this WAR file into Tomcat5 using the TomcatManager.
However, when I select the HTML file, I can see that my applet is running
but it can't communicate with the servlet and I get a java error that saids
filenotfound.

So what is it that I'm doing wrong? Where should I put my servlet.java and
servlet class so that Tomcat can find it?

Thank you!

Kay



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



RE: [ANNOUNCE] Maven Tomcat Deployment Plugin

2003-08-18 Thread Shapira, Yoav

Howdy,
Cool -- thanks ;)  I'm a growing fan of Maven and been meaning
to write something like this myself...

Yoav Shapira
Millennium ChemInformatics


>-Original Message-
>From: Nathan Coast [mailto:[EMAIL PROTECTED]
>Sent: Monday, August 18, 2003 8:46 AM
>To: tomcat user; Maven Users
>Subject: [ANNOUNCE] Maven Tomcat Deployment Plugin
>
>Hi,
>
>I'm pleased to announce a new Maven plugin to deploy web applications
>within Tomcat.
>
>http://www.codeczar.com/products/tomcat
>
>This plugin deploys web-applications built with maven into Tomcat using
>the catalina-ant tasks which come with tomcat distributions.
>
>Cheers
>Nathan
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]




This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged.  This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender.  Thank you.


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



Re: Tomcat deployment under Unix

2003-07-24 Thread Tang Guangyu
Add unpackWARs="true" to Host parameter in server.xml. () Restart Tomcat, it will work.

BTW, using jar tool to check your WAR file format, (jar tf myapp.war) Are
you transfer war file to unix host with binary mode?

- Original Message -
From: "Blanchet Samuel" <[EMAIL PROTECTED]>
To: "'Tomcat Users List'" <[EMAIL PROTECTED]>
Sent: Wednesday, July 23, 2003 9:03 PM
Subject: Tomcat deployment under Unix


> Hi all,
>
> I've just install Tomcat 4.1.24 under unix but when I launch it, my WAR
> files (in webapps directory) are not deployed.
>
> Could you help me ?
>
>  Sam
>
>



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



Re: Tomcat deployment problem: Exception processing TLD--SOLVED

2003-07-24 Thread Aurele Venet
I am putting this in case some one refers to it in the future...

I found the error by scanning old archives, basically the web.xml file 
in the module that was deployed contained references to tag-libs even 
though they were not used.  This is because the developer of that 
perticular moduled used a we.xml example file that he picked in a 
tutorial which has a lot of extra tag declarations.



Aurele Venet wrote:

Hola,

we've just upgrade our tomcat server from 4.0.3 to 4.1.24 and after a 
few teething problems which I managed to fix, I am left with one app 
that refused to start up.  This webapp worked fine in the previous 
installation.  Here is the log error message I get, can any one be so 
kind as to suggest some fix?

--log of error message--

2003-07-23 09:50:35 ContextConfig[/report] Exception processing TLD at 
resource path /WEB-INF/jsp/example-taglib.tld
javax.servlet.ServletException: Exception processing TLD at resource 
path /WEB-INF/jsp/example-taglib.tld
   at 
org.apache.catalina.startup.ContextConfig.tldScanTld(ContextConfig.java:1010) 

   at 
org.apache.catalina.startup.ContextConfig.tldScan(ContextConfig.java:870)

---

I am a bit perplexed because there is no such dir as /WEB-INF/jsp/ in 
the app, and furthermore, this does not appear to be using any tag 
libraries.

many thanks for any help

Vrata





--
V
. . . . . . . . . 
tel:+34.918.131.331



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


RE: Tomcat deployment under Unix

2003-07-23 Thread Shapira, Yoav

Howdy,

>I've just install Tomcat 4.1.24 under unix but when I launch it, my WAR
>files (in webapps directory) are not deployed.
>
>Could you help me ?

Seeing as how you've already helped me with a bit of a laugh this
morning, I feel obliged to return the favor ;) ;)

What errors are in your log files?  What are the contents of your WAR
file?

Yoav Shapira





This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged.  This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender.  Thank you.


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



Tomcat deployment under Unix

2003-07-23 Thread Blanchet Samuel
Hi all, 
 
I've just install Tomcat 4.1.24 under unix but when I launch it, my WAR
files (in webapps directory) are not deployed.
 
Could you help me ?

 Sam



Tomcat deployment problem: Exception processing TLD

2003-07-23 Thread Aurele Venet
Hola,

we've just upgrade our tomcat server from 4.0.3 to 4.1.24 and after a 
few teething problems which I managed to fix, I am left with one app 
that refused to start up.  This webapp worked fine in the previous 
installation.  Here is the log error message I get, can any one be so 
kind as to suggest some fix?

--log of error message--

2003-07-23 09:50:35 ContextConfig[/report] Exception processing TLD at 
resource path /WEB-INF/jsp/example-taglib.tld
javax.servlet.ServletException: Exception processing TLD at resource 
path /WEB-INF/jsp/example-taglib.tld
   at 
org.apache.catalina.startup.ContextConfig.tldScanTld(ContextConfig.java:1010)
   at 
org.apache.catalina.startup.ContextConfig.tldScan(ContextConfig.java:870)

---

I am a bit perplexed because there is no such dir as /WEB-INF/jsp/ in 
the app, and furthermore, this does not appear to be using any tag 
libraries.

many thanks for any help

Vrata



--
V
. . . . . . . . . 
tel:+34.918.131.331



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


Re: Tomcat Deployment Question

2003-03-27 Thread Patrick Martin
Your question is impossible to answer without filling in details like:

What does your application do?
What type of machine will you run on?  Hardware and software specs.
Chances are that it'll scale way past what you need.  I've set up 5-10 
Citibank
card portfolios on a single tomcat server.  To give you an idea, an average
portfolio represents 1/2-4 million customers of which 5-10% will 
typically use
the internet.  Of course this was on a Sparc 4500 with several GB of 
memory and
6 microprocessors.

You should be able to serve 5 or so transactions per second on a decent 
intel
box running linux with plenty of memory.  Ironically, my experience has
shown that Linux is faster than SUN with respect to the speed at which
Java executes.

Good luck.

- Pat

Mark Phillips wrote:

I am trying to size new Java servlet/jsp/ejb application, and I am not sure 
how to determine how many users a "typical" a tomcat server can serve. I 
know this is a lot like asking "how high is up?". However, I was hoping 
someone could give me some rules of thumb, guidelines, or references to 
other resources.

Thanks!

Mark Phillips
[EMAIL PROTECTED]
480 945-0798
480 945-9197 fax
No trees were destroyed in the sending of this contaminant free message,
however, a significant number of electrons may have been inconvenienced.


-
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]


Tomcat Deployment Question

2003-03-27 Thread Mark Phillips
I am trying to size new Java servlet/jsp/ejb application, and I am not sure 
how to determine how many users a "typical" a tomcat server can serve. I 
know this is a lot like asking "how high is up?". However, I was hoping 
someone could give me some rules of thumb, guidelines, or references to 
other resources.

Thanks!

Mark Phillips
[EMAIL PROTECTED]
480 945-0798
480 945-9197 fax

No trees were destroyed in the sending of this contaminant free message,
however, a significant number of electrons may have been inconvenienced.



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



RE: tomcat deployment

2002-04-30 Thread Whitcomb, Roger

When I have done this, I shutdown Tomcat, deleted the directory and restarted Tomcat 
again.  This worked fine.  But, I believe there is a way with the "Manager" app that 
you can do it, and I believe there is a setting in the server.xml that will enable 
automatic updates (at the expense of extra checking on every access to see if the file 
is new).  So, I would search the Tomcat docs . . . .

Roger Whitcomb
Computer Associates
Senior Software Engineer
Development
Phone: +1 408 965 8653
FAX: +1 408 965 8805
[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> 


-Original Message-
From: Nathan Coast [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 29, 2002 11:50 PM
To: Tomcat Users List
Subject: Re: tomcat deployment


Thanks,

> 
> It seems you are looking for a difficult way.
> I think the easiest way would be having some ant targets that put your war files in 
>TOMCAT_HOME/webapps. Don't forget to have unpackWARs to be true in the Host element 
>(in server.xml).
> 

does this work for updates to the war file?  If I update the war file 10 times, 
will re-copying the file to the webapps directory re-deploy the webapp?

Nathan


--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>

--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>




Re: tomcat deployment

2002-04-30 Thread Craig R. McClanahan



On Tue, 30 Apr 2002, Oki DZ wrote:

> Date: Tue, 30 Apr 2002 14:31:13 +0700
> From: Oki DZ <[EMAIL PROTECTED]>
> Reply-To: Tomcat Users List <[EMAIL PROTECTED]>
> To: Tomcat Users List <[EMAIL PROTECTED]>
> Subject: Re: tomcat deployment
>
> On 04/30 13:50 Nathan Coast wrote:
> > does this work for updates to the war file?  If I update the war file 10 times,
> > will re-copying the file to the webapps directory re-deploy the webapp?
>
> You need to delete the directory of your webapp; it wouldn't be that
> hard. In addition to copying the war file, the ant target should delete
> the directory particular to the war file.
>
> I think it would be nicer if you could deploy the webapp directly using
> ant; so instead of by creating a war file and let Tomcat to deploy it,
> you could just copy the modified servlets into the context directory.
> Then use the "reload" feature of the particular context (defined in
> server.xml); Tomcat would know the newer servlets and load them
> accordingly.
>

See the custom Ant tasks that are supported in the nightly builds, and
will be released in Tomcat 4.1, for precisely this feature.  The custom
tasks interact with the Manager webapp, and can do basically everything
you can do with the Manager webapp directly.

> Oki

Craig


--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>




Re: tomcat deployment

2002-04-30 Thread Oki DZ

On 04/30 13:50 Nathan Coast wrote:
> does this work for updates to the war file?  If I update the war file 10 times, 
> will re-copying the file to the webapps directory re-deploy the webapp?

You need to delete the directory of your webapp; it wouldn't be that hard. In addition 
to copying the war file, the ant target should delete the directory particular to the 
war file.

I think it would be nicer if you could deploy the webapp directly using ant; so 
instead of by creating a war file and let Tomcat to deploy it, you could just copy the 
modified servlets into the context directory. Then use the "reload" feature of the 
particular context (defined in server.xml); Tomcat would know the newer servlets and 
load them accordingly.

Oki

--
To unsubscribe:   
For additional commands: 
Troubles with the list: 




Re: tomcat deployment

2002-04-29 Thread Nathan Coast

Thanks,

> 
> It seems you are looking for a difficult way.
> I think the easiest way would be having some ant targets that put your war files in 
>TOMCAT_HOME/webapps. Don't forget to have unpackWARs to be true in the Host element 
>(in server.xml).
> 

does this work for updates to the war file?  If I update the war file 10 times, 
will re-copying the file to the webapps directory re-deploy the webapp?

Nathan


--
To unsubscribe:   
For additional commands: 
Troubles with the list: 




Re: tomcat deployment

2002-04-29 Thread Oki DZ

On 04/29 21:09 Nathan Coast wrote:
> I'm looking for the correct way to deploy / redeploy webapps into the tomcat web 
> container from ant.  I've followed a few threads in tomcat and ant user lists 
> but am just getting confused.
...
> as far as I can see there are a number of options:
> 1) write a task that communicates with the manager app via http get commands.
> 2) write a task that communicates with catalina api calls.
> 3) copy someone elses work - always my preferred option :)

It seems you are looking for a difficult way.
I think the easiest way would be having some ant targets that put your war files in 
TOMCAT_HOME/webapps. Don't forget to have unpackWARs to be true in the Host element 
(in server.xml).

I hope I got your questions right.
Oki

--
To unsubscribe:   
For additional commands: 
Troubles with the list: 




tomcat deployment

2002-04-29 Thread Nathan Coast

hi,

I'm looking for the correct way to deploy / redeploy webapps into the tomcat web 
container from ant.  I've followed a few threads in tomcat and ant user lists 
but am just getting confused.

http://www.mail-archive.com/tomcat-user%40jakarta.apache.org/msg51926.html

http://www.mail-archive.com/ant-user%40jakarta.apache.org/msg13402.html

I'm keen not to do work that is going to be obsolete in the near future so I'd 
be greatful if someone could point me in the right direction.

as far as I can see there are a number of options:
1) write a task that communicates with the manager app via http get commands.
2) write a task that communicates with catalina api calls.
3) copy someone elses work - always my preferred option :)

thanks
Nathan


--
To unsubscribe:   
For additional commands: 
Troubles with the list: 




RE: Tomcat deployment

2001-02-25 Thread Amir Nuri

When Using two tomcat with two server.xml files on the same machine I have 2
problems:
1. I can't stop one tomcat, I think it because I have two Ajp12 Connection
Handler for each server.xml file with different ports, but only one
tomcat.conf file, on my tomcat.conf file I have the following
configuration:
ApJServDefaultProtocol ajpv12
ApJServDefaultPort 8007
Should I have also two tomcat.conf files ???

2. I can't have two sessions on the same machine to two different ports,
each port is forone tomcat




-Original Message-
From: Amir Nuri [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 22, 2001 9:22 PM
To: Tomcat-User
Subject: FW: Tomcat deployment


In order to run two tomcat servers
Do I use two server.xml files ??
and Where do i tell tomcat what server.xml to use ??

-Original Message-
From: Nael Mohammad [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 22, 2001 7:53 PM
To: '[EMAIL PROTECTED]'
Subject: RE: Tomcat deployment


Yes, just modify the port number they will be using. For example, tomcat be
default is 8080, so the second server would be port # 8081

-Original Message-
From: Amir Nuri [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 22, 2001 9:19 AM
To: Tomcat-User
Subject: Tomcat deployment


Hi
Can I run two tomcat servers on the some machine ??




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

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



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



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




Autoreply: RE: Tomcat deployment

2001-02-22 Thread bwheeler

This is not a valid address at SNL Securities (http://www.snl.com).  Please remove 
him/her from your mailing list or address book.


Your message reads:

Received: from snlexch.snl.com (unverified [10.0.1.9]) by mail.snl.com
 (Rockliffe SMTPRA 4.5.4) with ESMTP id <[EMAIL PROTECTED]> for 
<[EMAIL PROTECTED]>;
 Thu, 22 Feb 2001 15:08:29 -0500
Received: by SNLEXCH with Internet Mail Service (5.5.2653.19)
id ; Thu, 22 Feb 2001 15:06:10 -0500
Received: from mail.snl.com (SNLDMZBDC [10.0.0.7]) by snlexch.snl.com with SMTP 
(Microsoft Exchange Internet Mail Service Version 5.5.2653.13)
id F3WAVKTZ; Thu, 22 Feb 2001 15:06:04 -0500
Received: from apache.org (unverified [64.208.42.41]) by mail.snl.com
 (Rockliffe SMTPRA 4.5.4) with SMTP id <[EMAIL PROTECTED]> for <[EMAIL PROTECTED]>;
 Thu, 22 Feb 2001 15:08:24 -0500
Received: (qmail 75738 invoked by uid 500); 22 Feb 2001 20:07:33 -
Received: (qmail 75723 invoked from network); 22 Feb 2001 20:07:32 -
Received: from mail.valueoptions.com (HELO mail1.valueoptions) (208.141.66.8)
  by h31.sny.collab.net with SMTP; 22 Feb 2001 20:07:32 -
Received: from exchange.valueoptions.com (unverified) by mail1.valueoptions
 (Content Technologies SMTPRS 4.1.5) with ESMTP id 
<[EMAIL PROTECTED]> for <[EMAIL PROTECTED]>;
 Thu, 22 Feb 2001 15:07:33 -0500
Received: by vo-dca-ex03.phc.com with Internet Mail Service (5.5.2653.19)
id ; Thu, 22 Feb 2001 15:07:32 -0500
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
Reply-To: [EMAIL PROTECTED]
list-help: <mailto:[EMAIL PROTECTED]>
list-unsubscribe: <mailto:[EMAIL PROTECTED]>
list-post: <mailto:[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
From: "Hensley, Zachary" <[EMAIL PROTECTED]>
To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
Subject: RE: Tomcat deployment
Date: Thu, 22 Feb 2001 15:07:31 -0500
X-Mailer: Internet Mail Service (5.5.2653.19)
X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N

Try looking into what it says about starting tomcat on a different port at
the commend line.  If you want tomcat to point to different directory
structures I think that you are probably going to have to use separate
config files.  Are you running tomcat stand alone or are you running it as
plug in to another web server? if so this is a little bit different.

-Original Message-
From: Amir Nuri [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 22, 2001 2:22 PM
To: Tomcat-User
Subject: FW: Tomcat deployment


In order to run two tomcat servers
Do I use two server.xml files ??
and Where do i tell tomcat what server.xml to use ??

-Original Message-
From: Nael Mohammad [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 22, 2001 7:53 PM
To: '[EMAIL PROTECTED]'
Subject: RE: Tomcat deployment


Yes, just modify the port number they will be using. For example, tomcat be
default is 8080, so the second server would be port # 8081

-Original Message-
From: Amir Nuri [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 22, 2001 9:19 AM
To: Tomcat-User
Subject: Tomcat deployment


Hi
Can I run two tomcat servers on the some machine ??




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

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



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


**

This email and any files transmitted with it are confidential
 and intended solely for the use of the individual or entity to
 whom they are addressed.  If you have received this email
 in error, please notify the sender by email and delete and
 destroy this message and its attachments.

**

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


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




RE: Tomcat deployment

2001-02-22 Thread Hensley, Zachary

Try looking into what it says about starting tomcat on a different port at
the commend line.  If you want tomcat to point to different directory
structures I think that you are probably going to have to use separate
config files.  Are you running tomcat stand alone or are you running it as
plug in to another web server? if so this is a little bit different.

-Original Message-
From: Amir Nuri [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 22, 2001 2:22 PM
To: Tomcat-User
Subject: FW: Tomcat deployment


In order to run two tomcat servers
Do I use two server.xml files ??
and Where do i tell tomcat what server.xml to use ??

-Original Message-
From: Nael Mohammad [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 22, 2001 7:53 PM
To: '[EMAIL PROTECTED]'
Subject: RE: Tomcat deployment


Yes, just modify the port number they will be using. For example, tomcat be
default is 8080, so the second server would be port # 8081

-Original Message-
From: Amir Nuri [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 22, 2001 9:19 AM
To: Tomcat-User
Subject: Tomcat deployment


Hi
Can I run two tomcat servers on the some machine ??




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

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



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


**

This email and any files transmitted with it are confidential
 and intended solely for the use of the individual or entity to
 whom they are addressed.  If you have received this email
 in error, please notify the sender by email and delete and
 destroy this message and its attachments.

**

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




Autoreply: Tomcat deployment

2001-02-22 Thread bwheeler

This is not a valid address at SNL Securities (http://www.snl.com).  Please remove 
him/her from your mailing list or address book.


Your message reads:

Received: from snlexch.snl.com (unverified [10.0.1.9]) by mail.snl.com
 (Rockliffe SMTPRA 4.5.4) with ESMTP id <[EMAIL PROTECTED]> for 
<[EMAIL PROTECTED]>;
 Thu, 22 Feb 2001 14:58:18 -0500
Received: by SNLEXCH with Internet Mail Service (5.5.2653.19)
id ; Thu, 22 Feb 2001 14:55:59 -0500
Received: from mail.snl.com (SNLDMZBDC [10.0.0.7]) by snlexch.snl.com with SMTP 
(Microsoft Exchange Internet Mail Service Version 5.5.2653.13)
id F3WAVK37; Thu, 22 Feb 2001 14:55:57 -0500
Received: from apache.org (unverified [64.208.42.41]) by mail.snl.com
 (Rockliffe SMTPRA 4.5.4) with SMTP id <[EMAIL PROTECTED]> for <[EMAIL PROTECTED]>;
 Thu, 22 Feb 2001 14:58:16 -0500
Received: (qmail 32194 invoked by uid 500); 22 Feb 2001 17:13:59 -
Received: (qmail 32174 invoked from network); 22 Feb 2001 17:13:56 -
Received: from lmail.actcom.co.il ([EMAIL PROTECTED])
  by h31.sny.collab.net with SMTP; 22 Feb 2001 17:13:56 -
Received: from amirpc ([192.117.113.162])
by lmail.actcom.co.il (8.9.3/8.9.1) with SMTP id TAA02095
for <[EMAIL PROTECTED]>; Thu, 22 Feb 2001 19:14:22 +0200
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
Reply-To: [EMAIL PROTECTED]
list-help: <mailto:[EMAIL PROTECTED]>
list-unsubscribe: <mailto:[EMAIL PROTECTED]>
list-post: <mailto:[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
From: "Amir Nuri" <[EMAIL PROTECTED]>
To: "Tomcat-User" <[EMAIL PROTECTED]>
Subject: Tomcat deployment
Date: Thu, 22 Feb 2001 19:19:13 +0200
Message-ID: <[EMAIL PROTECTED]>
MIME-Version: 1.0
Content-Type: text/plain;
charset="windows-1255"
Content-Transfer-Encoding: 7bit
X-Priority: 3 (Normal)
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0)
Importance: Normal
X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700
X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N

Hi
Can I run two tomcat servers on the some machine ??




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


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




Autoreply: RE: Tomcat deployment

2001-02-22 Thread bwheeler

This is not a valid address at SNL Securities (http://www.snl.com).  Please remove 
him/her from your mailing list or address book.


Your message reads:

Received: from snlexch.snl.com (unverified [10.0.1.9]) by mail.snl.com
 (Rockliffe SMTPRA 4.5.4) with ESMTP id <[EMAIL PROTECTED]> for 
<[EMAIL PROTECTED]>;
 Thu, 22 Feb 2001 14:54:31 -0500
Received: by SNLEXCH with Internet Mail Service (5.5.2653.19)
id ; Thu, 22 Feb 2001 14:52:11 -0500
Received: from mail.snl.com (SNLDMZBDC [10.0.0.7]) by snlexch.snl.com with SMTP 
(Microsoft Exchange Internet Mail Service Version 5.5.2653.13)
id F3WAVKMA; Thu, 22 Feb 2001 14:52:08 -0500
Received: from apache.org (unverified [64.208.42.41]) by mail.snl.com
 (Rockliffe SMTPRA 4.5.4) with SMTP id <[EMAIL PROTECTED]> for <[EMAIL PROTECTED]>;
 Thu, 22 Feb 2001 14:54:28 -0500
Received: (qmail 35599 invoked by uid 500); 22 Feb 2001 17:18:57 -
Received: (qmail 35581 invoked from network); 22 Feb 2001 17:18:52 -
Received: from mx.advalvas.be (HELO mail.sps.be) (195.207.34.106)
  by h31.sny.collab.net with SMTP; 22 Feb 2001 17:18:52 -
Received: from [212.100.178.234] by mail.net7.be (NTMail 5.06.0016/QP1734.18.52ecd8f8) 
with ESMTP id xzbecaaa for [EMAIL PROTECTED]; Thu, 22 Feb 2001 18:25:37 
+0100
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
Reply-To: [EMAIL PROTECTED]
list-help: <mailto:[EMAIL PROTECTED]>
list-unsubscribe: <mailto:[EMAIL PROTECTED]>
list-post: <mailto:[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
From: "Etienne Baert \(SPS Europe\)" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: RE: Tomcat deployment
Date: Thu, 22 Feb 2001 18:19:16 +0100
Message-ID: <[EMAIL PROTECTED]>
MIME-Version: 1.0
Content-Type: text/plain;
charset="windows-1255"
Content-Transfer-Encoding: 7bit
X-Priority: 3 (Normal)
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0)
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400
Importance: Normal
In-Reply-To: <[EMAIL PROTECTED]>
X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N

Yes you can,
if you are interested on having two (or more) tomcat instances running
on a Win2K machine, I can help you further (but on tomorrow as it 
becomes late here). I haven't experienced it on other OS.

Etienne

-Original Message-
From: Amir Nuri [mailto:[EMAIL PROTECTED]]
Sent: jeudi 22 f?vrier 2001 18:19
To: Tomcat-User
Subject: Tomcat deployment


Hi
Can I run two tomcat servers on the some machine ??




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


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


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




Autoreply: RE: Tomcat deployment

2001-02-22 Thread bwheeler

This is not a valid address at SNL Securities (http://www.snl.com).  Please remove 
him/her from your mailing list or address book.


Your message reads:

Received: from snlexch.snl.com (unverified [10.0.1.9]) by mail.snl.com
 (Rockliffe SMTPRA 4.5.4) with ESMTP id <[EMAIL PROTECTED]> for 
<[EMAIL PROTECTED]>;
 Thu, 22 Feb 2001 14:51:35 -0500
Received: by SNLEXCH with Internet Mail Service (5.5.2653.19)
id ; Thu, 22 Feb 2001 14:49:15 -0500
Received: from mail.snl.com (SNLDMZBDC [10.0.0.7]) by snlexch.snl.com with SMTP 
(Microsoft Exchange Internet Mail Service Version 5.5.2653.13)
id F3WAVKK4; Thu, 22 Feb 2001 14:49:13 -0500
Received: from apache.org (unverified [64.208.42.41]) by mail.snl.com
 (Rockliffe SMTPRA 4.5.4) with SMTP id <[EMAIL PROTECTED]> for <[EMAIL PROTECTED]>;
 Thu, 22 Feb 2001 14:51:32 -0500
Received: (qmail 38130 invoked by uid 500); 22 Feb 2001 17:20:01 -
Received: (qmail 38038 invoked from network); 22 Feb 2001 17:19:56 -
Received: from mail.valueoptions.com (HELO mail1.valueoptions) (208.141.66.8)
  by h31.sny.collab.net with SMTP; 22 Feb 2001 17:19:56 -
Received: from vo-dca-ex02.valueoptions.com (unverified) by mail1.valueoptions
 (Content Technologies SMTPRS 4.1.5) with ESMTP id 
<[EMAIL PROTECTED]> for <[EMAIL PROTECTED]>;
 Thu, 22 Feb 2001 12:19:56 -0500
Received: by vo-dca-ex02.phc.com with Internet Mail Service (5.5.2650.21)
id ; Thu, 22 Feb 2001 12:19:56 -0500
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
Reply-To: [EMAIL PROTECTED]
list-help: <mailto:[EMAIL PROTECTED]>
list-unsubscribe: <mailto:[EMAIL PROTECTED]>
list-post: <mailto:[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
From: "Hensley, Zachary" <[EMAIL PROTECTED]>
To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
Subject: RE: Tomcat deployment
Date: Thu, 22 Feb 2001 12:19:55 -0500
X-Mailer: Internet Mail Service (5.5.2650.21)
X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N

As long as they are not running on the same port.

-Original Message-
From: Amir Nuri [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 22, 2001 12:19 PM
To: Tomcat-User
Subject: Tomcat deployment


Hi
Can I run two tomcat servers on the some machine ??




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


**

This email and any files transmitted with it are confidential
 and intended solely for the use of the individual or entity to
 whom they are addressed.  If you have received this email
 in error, please notify the sender by email and delete and
 destroy this message and its attachments.

**

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


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




RE: Tomcat deployment

2001-02-22 Thread Randy Layman


Yes.  You start Tomcat with the -f .  You must
also use this when stopping Tomcat.

Randy


-Original Message-
From: Amir Nuri [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 22, 2001 2:22 PM
To: Tomcat-User
Subject: FW: Tomcat deployment


In order to run two tomcat servers
Do I use two server.xml files ??
and Where do i tell tomcat what server.xml to use ??

-Original Message-
From: Nael Mohammad [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 22, 2001 7:53 PM
To: '[EMAIL PROTECTED]'
Subject: RE: Tomcat deployment


Yes, just modify the port number they will be using. For example, tomcat be
default is 8080, so the second server would be port # 8081

-Original Message-
From: Amir Nuri [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 22, 2001 9:19 AM
To: Tomcat-User
Subject: Tomcat deployment


Hi
Can I run two tomcat servers on the some machine ??




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

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



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

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




FW: Tomcat deployment

2001-02-22 Thread Amir Nuri

In order to run two tomcat servers
Do I use two server.xml files ??
and Where do i tell tomcat what server.xml to use ??

-Original Message-
From: Nael Mohammad [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 22, 2001 7:53 PM
To: '[EMAIL PROTECTED]'
Subject: RE: Tomcat deployment


Yes, just modify the port number they will be using. For example, tomcat be
default is 8080, so the second server would be port # 8081

-Original Message-
From: Amir Nuri [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 22, 2001 9:19 AM
To: Tomcat-User
Subject: Tomcat deployment


Hi
Can I run two tomcat servers on the some machine ??




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

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



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




RE: Tomcat deployment

2001-02-22 Thread Nael Mohammad

Yes, just modify the port number they will be using. For example, tomcat be
default is 8080, so the second server would be port # 8081

-Original Message-
From: Amir Nuri [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 22, 2001 9:19 AM
To: Tomcat-User
Subject: Tomcat deployment


Hi
Can I run two tomcat servers on the some machine ??




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

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




RE: Tomcat deployment

2001-02-22 Thread Hensley, Zachary

As long as they are not running on the same port.

-Original Message-
From: Amir Nuri [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 22, 2001 12:19 PM
To: Tomcat-User
Subject: Tomcat deployment


Hi
Can I run two tomcat servers on the some machine ??




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


**

This email and any files transmitted with it are confidential
 and intended solely for the use of the individual or entity to
 whom they are addressed.  If you have received this email
 in error, please notify the sender by email and delete and
 destroy this message and its attachments.

**

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




RE: Tomcat deployment

2001-02-22 Thread Etienne Baert \(SPS Europe\)

Yes you can,
if you are interested on having two (or more) tomcat instances running
on a Win2K machine, I can help you further (but on tomorrow as it 
becomes late here). I haven't experienced it on other OS.

Etienne

-Original Message-
From: Amir Nuri [mailto:[EMAIL PROTECTED]]
Sent: jeudi 22 f?vrier 2001 18:19
To: Tomcat-User
Subject: Tomcat deployment


Hi
Can I run two tomcat servers on the some machine ??




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


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




Tomcat deployment

2001-02-22 Thread Amir Nuri

Hi
Can I run two tomcat servers on the some machine ??




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




tomcat deployment

2000-11-08 Thread Cyril apan

How does we configure Tomcat 3.1 as an IIS out-process that can handle more
than 5 simultaneous clients connections ? I set up a stress test on it and,
apart from the 5 first threads, Tomcat returns an internal server error.