manager webapp question

2005-10-11 Thread Marcus Franke
Hello, I have a tomcat server which serves some webapps for different purposes. I now would like to have another instance of the the manager webapp just for one of the webapps on this server, that another person can use the manager webapp to administer this one special webapp and not all

Re: manager webapp question

2005-10-11 Thread Marcus Franke
On Tue, Oct 11, 2005 at 04:00:24PM +0200, Marcus Franke wrote: Hello, I have a tomcat server which serves some webapps for different purposes. I now would like to have another instance of the the manager webapp just for one of the webapps on this server, that another person can use

Re: manager webapp question

2005-10-11 Thread Marcus Franke
and the normal webapp in that one vhost will I see more than one webapp? Hmm, just tried the config on my local test server and only in the first host I can reach the /manager/html pages, in the second host I created there was no manager, just the one webapp I configured inside the host context

Re: manager webapp question

2005-10-11 Thread Marcus Franke
that question by myself. If I use vhosts in tomcat and I have just the manager and the normal webapp in that one vhost will I see more than one webapp? Hmm, just tried the config on my local test server and only in the first host I can reach the /manager/html pages, in the second host I created

Re: Deploying a webapp under two different URIs

2005-10-05 Thread Paul Singleton
Carsten Guenther wrote: I want to deploy the same webapp under two different URIs. I created two context descriptors like this: Context path=/a docBase=/home/user/myapp debug=0 privileged=false Logger className=org.apache.catalina.logger.FileLogger prefix=a. suffix=.txt timestamp

Re: Getting tomcat instance information into webapp

2005-10-03 Thread Kyle
thereby allowing a different connector port for each instance. As for the webapp, you can still re-use the same code via the docBase and appBase variables by specifiying absolute paths. (read RUNNING.TXT with your install) Does that work? Alternatively, IF you can use the scenario where the users

Re: Getting tomcat instance information into webapp

2005-10-03 Thread David Kerber
multiple installations of tomcat on my disk? Start each 'instance' of tomcat with separate CATALINA_BASE env. vars. This enables a different server.xml for each instance thereby allowing a different connector port for each instance. As for the webapp, you can still re-use the same code via

Getting tomcat instance information into webapp

2005-10-02 Thread David Kerber
This question is part tomcat and part java; I'm running on a Windows 2000 server. I have a situation where I am going to need to run multiple instances of tomcat on a single machine, listening on different ports, but running the same application and hitting a different instance of an

Re: Getting tomcat instance information into webapp

2005-10-02 Thread Kyle
I may be misunderstanding the question, but it seems to me that this shouldn't really be an issue. You have multiple instances of tamcat running. This means you will have multiple server.xml's (meaning multiple Engines in which you can set up your multiple realms and direct each different

Re: Getting tomcat instance information into webapp

2005-10-02 Thread David Kerber
Kyle wrote: I may be misunderstanding the question, but it seems to me that this shouldn't really be an issue. It's more likely that I don't know enought about tomcat to ask an intelligent question! You have multiple instances of tamcat running. This means you will have multiple

Re: Getting tomcat instance information into webapp

2005-10-02 Thread Kyle
Ah! Yes. See! I did mention I wasn't an expert. :) Yes, multiple instances, in my outlaid scenario equates to multiple installs. Whereas, multiple running instances doesn't necessarily. Sorry. Let me have a think about that for an hour or 4. How do you tell tomcat which port to listen

Multiple Threads for one webapp

2005-09-30 Thread Mahesh S Kudva
Hi All I have setup virtual hosts for 3 apps with virtual hosts config as follows. These virtual hosts are first handled by Apache and mod_jk. My apps have scheduler and automated mailing services. Host name=vhost.domain.com debug=0 appBase=”deploy” unpackWARs=true

Re: Multiple Threads for one webapp

2005-09-30 Thread Tim Funk
. In this case - the app was restarted 6 times - leaving you 7 threads all looking to the smae external loctation for sending emails. Solution: Use a ServletContextListerner to detect webapp shutdown so the thread may be stopped. -Tim Mahesh S Kudva wrote: Hi All I have setup virtual hosts for 3

Re: Multiple Threads for one webapp

2005-09-30 Thread Mahesh S Kudva
- From: Tim Funk [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Date: Fri, 30 Sep 2005 09:56:09 -0400 Subject: Re: Multiple Threads for one webapp It seems you have a thread started in the background during the life of the application. This thread goes to some

Re: Multiple Threads for one webapp

2005-09-30 Thread Tim Funk
Sep 2005 09:56:09 -0400 Subject: Re: Multiple Threads for one webapp It seems you have a thread started in the background during the life of the application. This thread goes to some external place of storage and to look for emails to send. It seems this thread is not stopped when a context

Re: Multiple Threads for one webapp

2005-09-30 Thread Mahesh S Kudva
Message- From: Tim Funk [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Date: Fri, 30 Sep 2005 11:55:18 -0400 Subject: Re: Multiple Threads for one webapp This still seems to be a programming issue (possibly a config issue). Without source and config files - I don't

Re: Multiple Threads for one webapp

2005-09-30 Thread Tim Funk
Sep 2005 11:55:18 -0400 Subject: Re: Multiple Threads for one webapp This still seems to be a programming issue (possibly a config issue). Without source and config files - I don't see how the mailing list can help resolve

Re: Webapp deploy on windows

2005-09-29 Thread Mark Thomas
Joakim Ahlén wrote: I'm not trying to blame anyone for not fixing this issue, (well, maybe i'm laying some blame on those who thinks this is _not_ a tomcat issue..) however, i am really interested in having this bug fixed, and i am prepared to put some effort and time into it myself. To do

Re: Webapp deploy on windows

2005-09-29 Thread Joakim Ahlén
Thanks for your reply, I looked into bug 10026 and found out that there has been some issues with dtds stored inside jar-files, which is exactly our case. This is the first time i've actually came across some type of cause for this problem, so i'll look into this further before i start

Re: saving files in webapp folder from deletion?

2005-09-28 Thread Thomas Corte
environments which are Windows-based. Apart from that, I dislike platform-specific solutions. Apart from that, wouldn't the symlinks be deleted when the webapp is undeployed by tomcat? And I couldn't put them into the war file to reappear after re-deployment, could I

Re: saving files in webapp folder from deletion?

2005-09-28 Thread Anto Paul
that, wouldn't the symlinks be deleted when the webapp is undeployed by tomcat? And I couldn't put them into the war file to reappear after re-deployment, could I? -- ___ | | | knipp | Knipp Medien und

Re: saving files in webapp folder from deletion?

2005-09-28 Thread Thomas Corte
Hello, Anto Paul wrote: Read this thread lately. May be antiResourceLocking is what you are lokking for. I'm afraid not, since it is only useful to prevent files from being locked (to make sure they can be deleted on undeploy). Actually, I'm somewhat looking for the exact opposite, namely a

Re: saving files in webapp folder from deletion?

2005-09-28 Thread [EMAIL PROTECTED]
: Date : Wed, 28 Sep 2005 14:56:55 +0200 Subject : Re: saving files in webapp folder from deletion? Hello, Anto Paul wrote: Read this thread lately. May be antiResourceLocking is what you are lokking for. I'm afraid not, since it is only useful to prevent files from being

Re: saving files in webapp folder from deletion?

2005-09-28 Thread Leon Rosenberg
I think in the time you invested in this thread you could easily have written a servlet which delivers the data from anywhere, so you don't need to save it in the context. :-) regards Leon - To unsubscribe, e-mail: [EMAIL

Re: saving files in webapp folder from deletion?

2005-09-28 Thread Thomas Corte
Hi, Leon Rosenberg wrote: I think in the time you invested in this thread you could easily have written a servlet which delivers the data from anywhere, so you don't need to save it in the context. You are absolutely right, however I don't like to reinvent the wheel and therefore tend to

Re: saving files in webapp folder from deletion?

2005-09-28 Thread Leon Rosenberg
On 9/28/05, Thomas Corte [EMAIL PROTECTED] wrote: Hi, Leon Rosenberg wrote: I think in the time you invested in this thread you could easily have written a servlet which delivers the data from anywhere, so you don't need to save it in the context. You are absolutely right, however I

Re: Manager webapp and virtual hosts

2005-09-28 Thread Dan Baggott
: tomcat listens on localhost with various apps in their contexts. Now I'd like to setup a virtual host for another one. Will it be possible to deploy/reload such application using manager webapp running on localhost? In other words: do I have to install separate manager webapp for each virtual host

Webapp deploy on windows

2005-09-28 Thread Joakim Ahlén
Hi! For quite some time now we've had problems redeploying webapps on windows. The problem is that often, some .jar-files in the WEB-INF directory of a webapp is being in use by tomcat, and can therefore not be removed in order to hot-deploy this webapp without restarting tomcat

saving files in webapp folder from deletion?

2005-09-27 Thread Thomas Corte
. My question is: what would be the best way to deal with this? Of course, I'd love to put the uploaded files into directories *outside* of webapps/X, but there seems to be no way to let Tomcat serve them then as part of webapp X. A possibility I'm currently considering is to backup the files

Re: saving files in webapp folder from deletion?

2005-09-27 Thread Leon Rosenberg
setup X as context/webapp (incl. an empty WEB-INF) and probably a web.xml. this should be sufficent, unless you have something else badly broken :-) lg leon On 9/27/05, Thomas Corte [EMAIL PROTECTED] wrote: Hi there, I have a setup in which certain trusted users of a web application X may

Re: saving files in webapp folder from deletion?

2005-09-27 Thread Thomas Corte
Hi, Leon Rosenberg wrote: setup X as context/webapp (incl. an empty WEB-INF) and probably a web.xml. this should be sufficent, unless you have something else badly broken :-) So you mean I should create a second web app/context Y and put the uploaded files there? If this is the suggestion

Re: saving files in webapp folder from deletion?

2005-09-27 Thread Pham Tran Quoc Viet
the appropriate requested file under x. On 9/27/05, Thomas Corte [EMAIL PROTECTED] wrote: Hi, Leon Rosenberg wrote: setup X as context/webapp (incl. an empty WEB-INF) and probably a web.xml. this should be sufficent, unless you have something else badly broken :-) So you mean I should

Deploying a webapp under two different URIs (re-sent)

2005-09-23 Thread Carsten Guenther
Hi, I want to deploy the same webapp under two different URIs. I created two context descriptors like this: Context path=/a docBase=/home/user/myapp debug=0 privileged=false Logger className=org.apache.catalina.logger.FileLogger prefix=a. suffix=.txt timestamp=true/ /Context

Deploying a webapp under two different URIs

2005-09-22 Thread Carsten Guenther
Hi, I want to deploy the same webapp under two different URIs. I created two context descriptors like this: Context path=/a docBase=/home/user/myapp debug=0 privileged=false Logger className=org.apache.catalina.logger.FileLogger prefix=a. suffix=.txt timestamp=true/ /Context Context

Re: Deploying a webapp under two different URIs

2005-09-22 Thread Ritchie Gillam
to deploy the same webapp under two different URIs. I created two context descriptors like this: Context path=/a docBase=/home/user/myapp debug=0 privileged=false Logger className=org.apache.catalina.logger.FileLogger prefix=a. suffix=.txt timestamp=true/ /Context Context path=/b docBase

Re: Deploying a webapp under two different URIs

2005-09-22 Thread Carsten Guenther
Municipality Email: [EMAIL PROTECTED] Phone: (902) 490-6167 Fax: (902) 490-6583 [EMAIL PROTECTED] 09/22/05 3:14 pm Hi, I want to deploy the same webapp under two different URIs. I created two context descriptors like this: Context path=/a docBase=/home/user/myapp debug=0 privileged

Re: help with embedded tomcat's webapp classloader

2005-09-19 Thread Donald Ball
Donald Ball wrote: everything works okay but my webapp fails on initialization, with a NoClassDefFoundError on net.sf.hibernate.HibernateException. this is somewhat surprising given that hibernate.jar lives in the webapp's WEB-INF/lib directory. is there some additional configuration i need

RE: Order of WebApp Loading

2005-09-16 Thread Allistair Crossley
. Allistair -Original Message- From: Robert Harper [mailto:[EMAIL PROTECTED] Sent: 15 September 2005 19:08 To: 'Tomcat Users List' Subject: RE: Order of WebApp Loading The case is still that most servlet containers, Tomcat included, are multithreaded and order of processing should

Re: Order of WebApp Loading

2005-09-16 Thread Peter Menzel
I see, if i can't count on the order of loading, I tried something other: I set crossContext=true for both webapps and while in contextInitialized() of the webapp which schould run only after the first webapp finished loading I use context.getContext(/db-app) to look if the first app ist

RE: Order of WebApp Loading

2005-09-16 Thread Allistair Crossley
run your dependent web app in it's own tomcat? -Original Message- From: Peter Menzel [mailto:[EMAIL PROTECTED] Sent: 16 September 2005 15:55 To: Tomcat Users List Subject: Re: Order of WebApp Loading I see, if i can't count on the order of loading, I tried something other: I

help with embedded tomcat's webapp classloader

2005-09-16 Thread Donald Ball
hey guys. i'm trying out embedding tomcat 5.0 in an swt app that creates complex configuration data for a webapp. basically, i'd like the users to be able to do a test deploy of the webapp on their own box using hsqldb and an embedded tomcat. my code looks more or less like so: import

Re: Issue with the admin webapp

2005-09-16 Thread Sastry Malladi
Thanks. I've verified that this is fixed in 5.5.11-alpha. Just wanted to know if the same fix will be made available under 5.0.x (5.0.30 ?) as well ? I'd imagine the fix is just to the admin webapp itself, and assuming that it is backward compatible with 5.0.x, then we should be able to use

Order of WebApp Loading

2005-09-15 Thread Peter Menzel
Hi there, I have a question concerning Tomcats webapp loading: What is the order in which tomcats loads its webapps ? I have two webapps configured by /conf/Catalina/localhost/XXX.xml and I need one webapp to be loaded before the other, because it starts the database. How does Tomcat choose

RE: Order of WebApp Loading

2005-09-15 Thread George Sexton
the database. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Peter Menzel [mailto:[EMAIL PROTECTED] Sent: Thursday, September 15, 2005 10:53 AM To: Tomcat Users List Subject: Order of WebApp Loading Hi there, I have a question

Re: Order of WebApp Loading

2005-09-15 Thread Jilles van Gurp
If you define the contexts in the server.xml, they are started in the order that you define them, I think. Regards, Jilles Peter Menzel wrote: Hi there, I have a question concerning Tomcats webapp loading: What is the order in which tomcats loads its webapps ? I have two webapps configured

RE: Order of WebApp Loading

2005-09-15 Thread Robert Harper
will probably end up being more scaleable as well. Robert S. Harper Information Access Technology, Inc. -Original Message- From: Jilles van Gurp [mailto:[EMAIL PROTECTED] Sent: Thursday, September 15, 2005 11:52 AM To: Tomcat Users List Subject: Re: Order of WebApp Loading If you define

large content directory out of the webapp

2005-09-14 Thread Eickvonder Bjoern
Hello, my webapplication consists of a rather small set of classes, jsps and so on but has got a rather large content directory (some GB). My problem is now if I want to update only the application itself but not the content by uploading a new war-file I nevertheless have to upload the content

Re: large content directory out of the webapp

2005-09-14 Thread Paul Singleton
Eickvonder Bjoern wrote: Hello, my webapplication consists of a rather small set of classes, jsps and so on but has got a rather large content directory (some GB). My problem is now if I want to update only the application itself but not the content by uploading a new war-file I nevertheless

Re: Issue with the admin webapp

2005-09-14 Thread Mark Thomas
Sastry Malladi wrote: I filed a bug for this (http://issues.apache.org/bugzilla/show_bug.cgi?id=35835) and it seems this is fixed in 5.5.10. But I don't see a 5.5.10 download and wanted clarification on whether 5.5.11-alpha contains the fix as well. I'm going to check it out anyways when I get

Re: Issue with the admin webapp

2005-09-13 Thread Sastry Malladi
Toby Vidler wrote: Hi All, I am also experiencing issues with this and am wondering if what is happening is intended behaviour or not. Have replicated this using Tomcat 5.5.7 and 5.5.9 on Windows. When I use the Tomcat Admin webapp the server.xml is overwritten without any of our customised

Re: Issue with the admin webapp

2005-09-12 Thread Toby Vidler
Hi All, I am also experiencing issues with this and am wondering if what is happening is intended behaviour or not. Have replicated this using Tomcat 5.5.7 and 5.5.9 on Windows. When I use the Tomcat Admin webapp the server.xml is overwritten without any of our customised preexisting

Memory leak in simple spring webapp

2005-09-02 Thread [EMAIL PROTECTED]
I'm deploying and then undeploying a very simple spring-based test app to my tomcat container. However, my WebappClassLoader never gets garbage collected, because tomcat objects (loaded by the StandardClassLoader) have hard references to the classes of my app. I've figured out / fixed a couple of

can't set up log4j in my webapp

2005-08-30 Thread Ittay Dror
Hi, I've added log4j.properties in webapps/ROOT/WEB-INF/classes, but the thing is that when log4j initializes it looks for log4j.xml which it finds in some jar that is under webapps/ROOT/WEB-INF/lib (jxp). I can set the log4j.configuration system property when launching Tomcat, but this

installing admin webapp

2005-08-30 Thread Peter Kennard
Is there a link - howto etc on how to install and configure the admin webapp. I have looked at Faqs for v 5.5.9, googled for it, etc. There is no howto-install .. RUNNING etc in the webapp .zip file. Is this list the right place to ask such a question? PK

Re: installing admin webapp

2005-08-30 Thread Wendy Smoak
From: Peter Kennard [EMAIL PROTECTED] Is there a link - howto etc on how to install and configure the admin webapp. I have looked at Faqs for v 5.5.9, googled for it, etc. There is no howto-install .. RUNNING etc in the webapp .zip file. The 'admin' zip file is structured to overlay

RE: installing admin webapp

2005-08-30 Thread Caldarale, Charles R
From: Peter Kennard [mailto:[EMAIL PROTECTED] Subject: installing admin webapp Is there a link - howto etc on how to install and configure the admin webapp. Installation borders on the trivial: download, unzip. The only configuration necessary is creating the admin role and associated

Re: installing admin webapp

2005-08-30 Thread Peter Kennard
Kennard [EMAIL PROTECTED] Is there a link - howto etc on how to install and configure the admin webapp. I have looked at Faqs for v 5.5.9, googled for it, etc. There is no howto-install .. RUNNING etc in the webapp .zip file. The 'admin' zip file is structured to overlay the Tomcat install

RE: installing admin webapp

2005-08-30 Thread Peter Kennard
Kennard [mailto:[EMAIL PROTECTED] Subject: installing admin webapp Is there a link - howto etc on how to install and configure the admin webapp. Installation borders on the trivial: download, unzip. The only configuration necessary is creating the admin role and associated userid/password

Re: installing admin webapp

2005-08-30 Thread Peter Kennard
BTW the other potential for my failure may be that somewhere in the chain between Tomcat and the browser the error message page was cached. The link to the admin webapp may itself may not have the headers set to prevent the error message from caching ??? I'm only trying to help other's first

Re: installing admin webapp

2005-08-30 Thread Wendy Smoak
From: Peter Kennard [EMAIL PROTECTED] I would write up such a thing if I knew how to get it in there ;^ Since it sounds like you want it to be a text file included in the admin app zip file, you might try writing it up and opening an enhancement ticket against Tomcat 5.5. Attach your

Re: installing admin webapp

2005-08-30 Thread Peter Kennard
Will do - where is the procedure for opening an enhancement ticket outlined? Thanks. At 05:37 PM 8/30/2005, you wrote: From: Peter Kennard [EMAIL PROTECTED] I would write up such a thing if I knew how to get it in there ;^ Since it sounds like you want it to be a text file included in the

RE: installing admin webapp

2005-08-30 Thread Caldarale, Charles R
From: Peter Kennard [mailto:[EMAIL PROTECTED] Subject: Re: installing admin webapp Will do - where is the procedure for opening an enhancement ticket outlined? Tomcat development uses Bugzilla for both bug reports and enhancement requests (although the latter isn't obvious - you have

Re: Manager webapp and virtual hosts

2005-08-27 Thread Mahesh S Kudva
ServerAlias www.webapp.robosoft.co.in ServerAdmin [EMAIL PROTECTED] DocumentRoot /Volumes/Extra/jboss/server/default/deploy/webapp.war JkMount /* loadbalancer DirectoryIndex index.html index.jsp ErrorLog logs/webapp-error_log CustomLog logs/webapp-access_log common /VirtualHost

Manager webapp and virtual hosts

2005-08-25 Thread Mikolaj Rydzewski
Hello, My configuration is very simple: tomcat listens on localhost with various apps in their contexts. Now I'd like to setup a virtual host for another one. Will it be possible to deploy/reload such application using manager webapp running on localhost? In other words: do I have to install

Re: Manager webapp and virtual hosts

2005-08-25 Thread David Delbecq
webapp running on localhost? In other words: do I have to install separate manager webapp for each virtual host? For 1st part, did it here (2 sets of webapp depending on hostname used), must have the manager webapp deployed in each host (actually a soft link on unix having webapps-for-somespecial

RE: Manager webapp and virtual hosts

2005-08-25 Thread GB Developer
List Subject: Re: Manager webapp and virtual hosts Le Jeudi 25 Août 2005 13:55, Mikolaj Rydzewski a écrit : Hello, My configuration is very simple: tomcat listens on localhost with various apps in their contexts. Now I'd like to setup a virtual host for another one

Re: Problem VirtualHost WebApp Served on Two URLs

2005-08-22 Thread TroyGeek
No, I don't believe this is the problem. I've removed the ROOT web application and confugured apache forwarding to tomcat using the mod_jk connector to forward the root webapp to 'mysite'. On 8/20/05, Peter Rossbach [EMAIL PROTECTED] wrote: You must rename your directory from mysite

Re: Problem VirtualHost WebApp Served on Two URLs

2005-08-20 Thread Peter Rossbach
=com.ibm.wtp.web.server:mysite/ /Host When I bring up the site in the browser I can access it at: http://www.mysite.com/ and http://www.mysite.com/mysite/ I don't want the site to be available at http://www.mysite.com/mysite/ Do you know why it's serving the webapp at these two locations and not just the first

Problem VirtualHost WebApp Served on Two URLs

2005-08-19 Thread TroyGeek
://www.mysite.com/mysite/ Do you know why it's serving the webapp at these two locations and not just the first? thank you for your time, Troy Campano

Re: webapp loading order...

2005-08-17 Thread Brian Cook
[mailto:[EMAIL PROTECTED] Sent: Tue 8/16/2005 5:30 PM To: Tomcat Users List Subject: Re: webapp loading order... On Tue, Aug 16, 2005 at 03:23:16PM -0700, Joe R. Lindsay wrote: : We have two webapps that communicate via jndi and : we need to have app2 wait for app1 to load before continuing

Re: Webapp suddenly not available

2005-08-16 Thread Brian Cook
WOW that looks like a lot lot of unneeded complication. I do not know if this is absolutely correct for every situation. But it is my experience that if you are just doing JSP pages you do not need the web.xml at all. It is only needed if you need to call a servlet, define a resource like

Re: Webapp suddenly not available

2005-08-16 Thread Vsevolod (Simon) Ilyushchenko
Brian Cook wrote on 08/16/2005 10:36 AM: WOW that looks like a lot lot of unneeded complication. I do not know if this is absolutely correct for every situation. But it is my experience that if you are just doing JSP pages you do not need the web.xml at all. It is only needed if you need

Re: Webapp suddenly not available

2005-08-16 Thread Hassan Schroeder
default ROOT directory temporarily and get log4j working properly. It's really straightforward, but the time to try isn't after your webapp breaks :-) Check out Allistair Crossley's http://www.adcworks.com/blog Good luck! -- Hassan Schroeder - [EMAIL PROTECTED

Re: Webapp suddenly not available

2005-08-16 Thread Brian Cook
I would try removing the context.xml file, if there is one, and replace the web.xml with a default one. Then restart Tomcat. If you still get the 404 error when calling just JSP pages and there are no errors in the catalina.out file then the problem is very likely in the syntax of the URL

webapp loading order...

2005-08-16 Thread Joe R. Lindsay
We have two webapps that communicate via jndi and we need to have app2 wait for app1 to load before continuing. Is there a way to force the order in which the webapps are started? Joe Lindsay email: [EMAIL PROTECTED]

Re: webapp loading order...

2005-08-16 Thread QM
On Tue, Aug 16, 2005 at 03:23:16PM -0700, Joe R. Lindsay wrote: : We have two webapps that communicate via jndi and : we need to have app2 wait for app1 to load before continuing. : Is there a way to force the order in which the webapps : are started? You could run the apps in separate Tomcat

RE: webapp loading order...

2005-08-16 Thread Joe R. Lindsay
Users List Subject: Re: webapp loading order... On Tue, Aug 16, 2005 at 03:23:16PM -0700, Joe R. Lindsay wrote: : We have two webapps that communicate via jndi and : we need to have app2 wait for app1 to load before continuing. : Is there a way to force the order in which the webapps : are started

Webapp suddenly not available

2005-08-15 Thread Vsevolod (Simon) Ilyushchenko
Hi, I'm a relative Tomcat newbie. I have built an application with ant and was using it under Tomcat 5.5.9 for several weeks, and then it suddenly broke. All request to JSP pages now display the 404 error (the requested resource is not available). I was making only very minor changes to the

Re: Webapp suddenly not available

2005-08-15 Thread Sriram N
--- Vsevolod (Simon) Ilyushchenko [EMAIL PROTECTED] wrote: [snip] I'll be grateful for any suggestions. Why all the JSPC entries in this web.xml ? Remove them as the Tomcat defaults should be just OK. The controller entry and the .do mapping seem to be OK. Thanks, Simon -- --

Re: Webapp suddenly not available

2005-08-15 Thread Vsevolod (Simon) Ilyushchenko
Sriram, I've taken them out, as well as the controller entry (which was a sample line that I don't need). No good. Thanks, Simon Sriram N wrote on 08/15/2005 12:39 PM: --- Vsevolod (Simon) Ilyushchenko [EMAIL PROTECTED] wrote: [snip] I'll be grateful for any suggestions. Why all the

Re: Webapp suddenly not available

2005-08-15 Thread Sriram N
--- Vsevolod (Simon) Ilyushchenko [EMAIL PROTECTED] wrote: Sriram, I've taken them out, as well as the controller entry (which was a sample line that I don't need). No good. Hmm... what _do_ you require in this file, if not the controller entry ? Does the sample web application work ?

Re: Webapp suddenly not available

2005-08-15 Thread Vsevolod (Simon) Ilyushchenko
Hmm... what _do_ you require in this file, if not the controller entry ? Those JSPs entries. :) Does the sample web application work ? Yes, it does. Try installing Tomcat again, and then running this web app. Maybe you've messed with some config files by mistake. I definitely have not

NumberFormatException After Logging In To Admin Webapp

2005-08-12 Thread David Litterine-Kaufman
, and the admin webapp were all installed from their respective stable Debian packages. When I log into the admin webapp, both the top and left frames show up as HTTP Status 500 and I get the following (abridged) stack trace in the application log: 2005-08-12 17:18:35 StandardWrapperValve[action]: Allocate

RE: NumberFormatException After Logging In To Admin Webapp

2005-08-12 Thread Caldarale, Charles R
From: David Litterine-Kaufman [mailto:[EMAIL PROTECTED] Subject: NumberFormatException After Logging In To Admin Webapp I'm running Tomcat 4.1, sablevm 1.11.3, and struts 1.1 on Debian Sarge. Have you tried this with a Sun 1.4 JDK or 5.0 JRE? - Chuck THIS COMMUNICATION MAY CONTAIN

RE: NumberFormatException After Logging In To Admin Webapp

2005-08-12 Thread David Litterine-Kaufman
, Charles R [mailto:[EMAIL PROTECTED] Sent: Friday, August 12, 2005 5:52 PM To: Tomcat Users List Subject: RE: NumberFormatException After Logging In To Admin Webapp From: David Litterine-Kaufman [mailto:[EMAIL PROTECTED] Subject: NumberFormatException After Logging In To Admin Webapp I'm

Problem with navigating a struts based webapp after logging in

2005-08-04 Thread Sujit Gangadharan
Hi We have a struts based web application running under Tomcat 4.1.12. There is this random issue that happens with certain users. The user logs in using the domain name, say http://www.xyz.com, he gets redirected to https://www.xyz.com. After the user logs in, he gets kicked out back to login

Tomcat 5.5.9 does loads classes from the wrong webapp

2005-07-20 Thread Schwarz
Hi, short: the classloader does load classes from a complete seperate webapp, because classes are the same and differ only by code versions. with this setup in server.conf : Host name=servername.de Alias name=bugzilla.servername.de

Re: Where is default logon.jsp for Tomcat Admin webapp?

2005-07-17 Thread Mark Thomas
CATALINA_BASE\server\webapps\admin\login.jsp ohaya wrote: Hi, When connecting to the Tomcat Admin webapp, a forms-based login page appears. The web.xml for admin has a login-config section that indicates that the login page is /login.jsp. However, I've looked all over my hard drive

Re: Where is default logon.jsp for Tomcat Admin webapp?

2005-07-17 Thread ohaya
checked for hidden files, etc., but login.jsp just isn't there. That is why I'm asking my question... Jim Mark Thomas wrote: CATALINA_BASE\server\webapps\admin\login.jsp ohaya wrote: Hi, When connecting to the Tomcat Admin webapp, a forms-based login page appears. The web.xml

RE: Where is default logon.jsp for Tomcat Admin webapp?

2005-07-17 Thread Caldarale, Charles R
From: ohaya [mailto:[EMAIL PROTECTED] Subject: Re: Where is default logon.jsp for Tomcat Admin webapp? As I indicated in my original msg, on my installation of Tomcat (5.0.27), there is no login.jsp file in that location, or anywhere else on my hard drive. For the admin app, jsps are pre

Re: Where is default logon.jsp for Tomcat Admin webapp?

2005-07-17 Thread ohaya
Caldarale, Charles R wrote: From: ohaya [mailto:[EMAIL PROTECTED] Subject: Re: Where is default logon.jsp for Tomcat Admin webapp? As I indicated in my original msg, on my installation of Tomcat (5.0.27), there is no login.jsp file in that location, or anywhere else on my hard

Where is default logon.jsp for Tomcat Admin webapp?

2005-07-15 Thread ohaya
Hi, When connecting to the Tomcat Admin webapp, a forms-based login page appears. The web.xml for admin has a login-config section that indicates that the login page is /login.jsp. However, I've looked all over my hard drive, and especially in the admin directory, and I can't find any such file

Re: Using Single Sign on to access another webapp.

2005-07-12 Thread Ben Bookey
@jakarta.apache.org To: Tomcat Users List tomcat-user@jakarta.apache.org Subject: Re: Using Single Sign on to access another webapp. Date: Fri, 08 Jul 2005 06:48:44 -0400 One way to do SSO is to utilize a cookie (lets call it SSO, and to be really secure - it should only be transfered over https

Using Single Sign on to access another webapp.

2005-07-08 Thread Ben Bookey
Dear List, We are using Tomcat 4.1.xx. We are NOT using the built in security framework which comes with TC. In the login.jsp page the user/password is validated by an external organisation wide process, which returns simply true or false. If the user is valid, the user is forwarded to the

Re: Make webapp jars downloadable

2005-07-08 Thread Andrea Aime
Peter Crowther wrote: Tomcat explicitly prevents access from a client to any file under WEB-INF; Tomcat also insists on picking up its jars from WEB-INF/lib, and as far as I know it's not possible to change that. My suggestion would be to write a few lines of code that copy the jar files you

Re: Using Single Sign on to access another webapp.

2005-07-08 Thread Christoph Kutzinski
Check this for a way to implement this with Tomcat (you must use 5.5 ore higher, though): http://weblogs.java.net/blog/wholder/archive/2005/02/session_session.html Or this is a solution I found with an external authentication server:

Re: Using Single Sign on to access another webapp.

2005-07-08 Thread Tim Funk
One way to do SSO is to utilize a cookie (lets call it SSO, and to be really secure - it should only be transfered over https). The existence of a cookie says the person might be logged in. The value of the cookie needs to be checked. The value of the cookie shold NOT be the user id. It can

Re: Using Single Sign on to access another webapp.

2005-07-08 Thread Ivan Rodriguez
Take a look at http://tp.its.yale.edu/tiki/tiki-index.php?page=CentralAuthenticationService Tim Funk escribió: One way to do SSO is to utilize a cookie (lets call it SSO, and to be really secure - it should only be transfered over https). The existence of a cookie says the person might be

Make webapp jars downloadable

2005-07-07 Thread Andrea Aime
Hi, I have the following problem: I'm deploying a web app that exposes web services and allows the client to install a web started client. Now, the client and the web application share a lot of jars, so I would like to make the jars in web-inf/lib downloadable, so that the web start can access

RE: Make webapp jars downloadable

2005-07-07 Thread Peter Crowther
From: Andrea Aime [mailto:[EMAIL PROTECTED] Now, the client and the web application share a lot of jars, so I would like to make the jars in web-inf/lib downloadable, so that the web start can access them. At the moment I've put the jars both in web-inf/lib and in the root, but this

  1   2   3   4   5   6   7   8   9   10   >