RE: manager outofmemory exception

2005-10-11 Thread Enrique Rodriguez
hen i upload new aplitications to the tomcat using the manager. > > > > I Profiled my aplication and i don't have any memory issue. > > Just to check: Did your profiling include looking at PermGen? > > > Is this a manager bug? Why the Total Memory is never higger

Re: manager webapp question

2005-10-11 Thread Marcus Franke
; > > > > > Hmm, I guess I can answer 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

RE: manager outofmemory exception

2005-10-11 Thread Caldarale, Charles R
> From: Enrique Rodriguez [mailto:[EMAIL PROTECTED] > Subject: manager outofmemory exception > > What i don't understand is that I "sometimes" get OutOfMemoryException > when i upload new aplitications to the tomcat using the manager. Search the archives - this

Re: manager outofmemory exception

2005-10-11 Thread Tim Funk
but the manager aplication never show JVM memory higger than 128 This is the JVM memory state for the tomcat with 15 application: Free memory: 73.94 MB Total memory: 128.62 MB Max memory: 510.37 MB What i don't understand is that I "sometimes" get OutOfMemoryException wh

RE: manager outofmemory exception

2005-10-11 Thread Peter Crowther
> From: Enrique Rodriguez [mailto:[EMAIL PROTECTED] > What i don't understand is that I "sometimes" get OutOfMemoryException > when i upload new aplitications to the tomcat using the manager. > > I Profiled my aplication and i don't have any memory issue.

manager outofmemory exception

2005-10-11 Thread Enrique Rodriguez
I know this is a very common issue but i want to be sure about it. I have 5 tomcats on a 8Gb RAM machine. The number of applications installed on tomcats are 5 to 15. All the tomcat run with -Xms128M -Xmx512M but the manager aplication never show JVM memory higger than 128 This is the JVM memory

Re: manager webapp question

2005-10-11 Thread Marcus Franke
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 there was no manager, just th

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

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 the

Re: custom session manager

2005-10-06 Thread Mark
There is one problem with this approach. Load balancing/clustering. If you have a HashMap in one tomcat JVM, how does that information get propogated to other JVM's possibly on other machines? Thank you by the way for all the inputs so far On 10/6/05, Leon Rosenberg <[EMAIL PROTECTED]> wrot

Re: custom session manager

2005-10-06 Thread Leon Rosenberg
On 10/6/05, Tobias Meyer <[EMAIL PROTECTED]> wrote: > The problem is AFAIK, that you cannot access the list of all sessions > through the servlet-api. > That feature was in the servlet-api at some time, but was removed, IIRC due > to security issues. > > If you have a list of all sessions, you can

AW: custom session manager

2005-10-06 Thread Tobias Meyer
sessions for the same user. => Max. one active session per user. > -Ursprüngliche Nachricht- > Von: Leon Rosenberg [mailto:[EMAIL PROTECTED] > Gesendet: Donnerstag, 6. Oktober 2005 16:11 > An: Tomcat Users List > Betreff: Re: custom session manager > > > Sorr

Re: custom session manager

2005-10-06 Thread Leon Rosenberg
:20 > > An: Tomcat Users List > > Betreff: Re: custom session manager > > > > > > On 10/6/05, Tobias Meyer <[EMAIL PROTECTED]> wrote: > > > > > > Or, cou could add a static hashmap to your Servlet (or a > > bean if using JSPs) > >

AW: custom session manager

2005-10-06 Thread Tobias Meyer
> -Ursprüngliche Nachricht- > Von: Leon Rosenberg [mailto:[EMAIL PROTECTED] > Gesendet: Donnerstag, 6. Oktober 2005 11:20 > An: Tomcat Users List > Betreff: Re: custom session manager > > > On 10/6/05, Tobias Meyer <[EMAIL PROTECTED]> wrote: > > >

Re: custom session manager

2005-10-06 Thread Leon Rosenberg
On 10/6/05, Tobias Meyer <[EMAIL PROTECTED]> wrote: > > Or, cou could add a static hashmap to your Servlet (or a bean if using JSPs) > where you simply add the sessions with every request. You would have to put > an attribute implementing javax.servlet.http.HttpSessionActivationListener > in each s

AW: custom session manager

2005-10-06 Thread Tobias Meyer
> -Ursprüngliche Nachricht- > Von: Leon Rosenberg [mailto:[EMAIL PROTECTED] > Gesendet: Donnerstag, 6. Oktober 2005 07:43 > An: Tomcat Users List; Mark > Betreff: Re: custom session manager > > > On 10/6/05, Mark <[EMAIL PROTECTED]> wrote: > > bas

Re: custom session manager

2005-10-05 Thread Leon Rosenberg
On 10/6/05, Mark <[EMAIL PROTECTED]> wrote: > basically, I want to prevent users from logging in and creating a > second session if a valid session for that user already exists. > > For instance. > > 1. Log in to my web app, session is created > 2. browse around in my web app > 3. close browser, do

RE: custom session manager

2005-10-05 Thread Caldarale, Charles R
> From: Mark [mailto:[EMAIL PROTECTED] > Subject: Re: custom session manager > > basically, I want to prevent users from logging in and creating a > second session if a valid session for that user already exists. Why? Some strange security issue? Resource consumption? An a

Re: custom session manager

2005-10-05 Thread Mark
gt; > This is about 90% of what I want. One of the features I want to put > > into my session manager is the ability to only have one open session > > per user. What I would like is to have a createSession method that > > takes in user and host. This way I could be relatively su

Re: Tomcat Manager, Session Statistics

2005-10-05 Thread Rainer Jung
etier > > - Original Message - > From: "Mark Thomas" <[EMAIL PROTECTED]> > To: "Tomcat Users List" > Sent: Wednesday, October 05, 2005 3:22 PM > Subject: Re: Tomcat Manager, Session Statistics > > >> Jean-Pierre Pelletier wrote: >>>

Re: custom session manager

2005-10-05 Thread Leon Rosenberg
tures I want to put > into my session manager is the ability to only have one open session > per user. What I would like is to have a createSession method that > takes in user and host. This way I could be relatively sure that the > user could only have one session at a time. > The way

Re: custom session manager

2005-10-05 Thread Mark
This is about 90% of what I want. One of the features I want to put into my session manager is the ability to only have one open session per user. What I would like is to have a createSession method that takes in user and host. This way I could be relatively sure that the user could only have

Re: Tomcat Manager, Session Statistics

2005-10-05 Thread Jean-Pierre Pelletier
omas" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Wednesday, October 05, 2005 3:22 PM Subject: Re: Tomcat Manager, Session Statistics Jean-Pierre Pelletier wrote: Hi, 1) When I look at sessions statistics for an application, using https://localhost/manager/html/sess

Re: Tomcat Manager, Session Statistics

2005-10-05 Thread Mark Thomas
Jean-Pierre Pelletier wrote: Hi, 1) When I look at sessions statistics for an application, using https://localhost/manager/html/sessions?path=/myApplication Why does Tomcat always list the number of sessions to expired within 10 minutes as equal to the number of active sessions? Looks like a

Tomcat Manager, Session Statistics

2005-10-05 Thread Jean-Pierre Pelletier
Hi, 1) When I look at sessions statistics for an application, using https://localhost/manager/html/sessions?path=/myApplication Why does Tomcat always list the number of sessions to expired within 10 minutes as equal to the number of active sessions? According to the documentation of Tomcat

manager for address-based virtual hosts?

2005-10-05 Thread Paul Singleton
Is there a version of the Manager app which handles all address-based virtual hosts in a Tomcat system? I've tried ManagerX which embraces name-based hosts but not the address-based ones which our SSL-enabled apps require... Paul Singleton -- No virus found in this outgoing message. Ch

Re: custom session manager

2005-09-28 Thread Leon Rosenberg
check this out: http://www.niallp.pwp.blueyonder.co.uk/TomcatBug36541.html The link itself handles a bug, but one of the solutions is to replace the std. manager with custom manager with all info you need to actually do this. I thin kthis fits your question. regards leon On 9/29/05, Mark

custom session manager

2005-09-28 Thread Mark
After using tomcat since the 3.x days, I have been very impressed with the amount of flexibility and configuration options that I have available to me. One part of the tomcat design that I do not believe is very flexible is the ability to set up a custom session manager. So maybe I am missing

Re: Manager webapp and virtual hosts

2005-09-28 Thread Dan Baggott
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:

AW: jconsole & security manager

2005-09-26 Thread Pfingstl Gernot
y $JAVA_HOME & tomcat core jars are found and loaded and all of these jars does have AllPermission?! I'm confused, Gernot -Ursprüngliche Nachricht- Von: Peter Rossbach [mailto:[EMAIL PROTECTED] Gesendet: Sonntag, 18. September 2005 10:55 An: Tomcat Users List Betreff: Re: jcons

Re: Unable to login Tomcat Manager?

2005-09-21 Thread andy gordon
record to user_profile, user_role Table: user_role usernm role_name admin Administrator admin Manager admin admin The error message becomes "Access to the requested resource has been denied" Why? 2005/9/22, æ¢ç‚³å ´ : > However I go into http://localhost:8080/erp > It is ok. &

Re: Unable to login Tomcat Manager?

2005-09-21 Thread 梁炳場
However I go into http://localhost:8080/erp It is ok. I have added record to user_profile, user_role Table: user_role usernm role_name admin Administrator admin Manager admin admin The error message becomes "Access to the requested resource has been denied" Why? 2005/9/22, 梁

Re: Unable to login Tomcat Manager?

2005-09-21 Thread andy gordon
¬±³õ <[EMAIL PROTECTED]> wrote: I have enabled JDBCRealm with MD5 in server.xml Tomcat 5.5. Then I am not able to login "Tomcat Manager". When I click "Tomcat Manager", I input the username and password in tomcat-users.xml, it keeps on prompting me username and password. I

Unable to login Tomcat Manager?

2005-09-21 Thread 梁炳場
I have enabled JDBCRealm with MD5 in server.xml Tomcat 5.5. Then I am not able to login "Tomcat Manager". When I click "Tomcat Manager", I input the username and password in tomcat-users.xml, it keeps on prompting me username and password. I wonder if the old password is not en

Tomcat Manager

2005-09-19 Thread Trung Nguyen
Hello All, I'm trying to setup/configure the tomcat manager, but i got this error below when access to http://localhost/manager/html, the login screen popup though... any ideas? 1995-09-19 17:57:02,878 [TP-Processor24] ERROR org.apache.catalina.realm.JAASRealm - Unexpected

Re: Using a custom Manager class

2005-09-19 Thread James Shaw
On 19/09/05, James Shaw <[EMAIL PROTECTED]> wrote: > I want to persuade tomcat to use a custom manager. > > My $CATALINA_HOME/conf/context.xml looks like this: > > > > WEB-INF/web.xml > > > > > Sorry, false alarm. Just rememb

Using a custom Manager class

2005-09-19 Thread James Shaw
I want to persuade tomcat to use a custom manager. My $CATALINA_HOME/conf/context.xml looks like this: WEB-INF/web.xml I've tried putting the HackyManager in /server/classes but tomcat still uses StandardManager. How do I give tomcat the correct classpath, or which dire

Re: Newbie question. /manager only gives the directory listing

2005-09-18 Thread tomcat
Ah, it worked like a charm! Thanks a bunch, Peter! :) /Jimi Quoting Peter Johnson <[EMAIL PROTECTED]>: Jimi, try /manager/html [EMAIL PROTECTED] wrote: Hi all, I have been using Tomcat for some time now, but I still feel like a newbie in most regards. At least when it co

Re: Newbie question. /manager only gives the directory listing

2005-09-18 Thread Peter Johnson
Jimi, try /manager/html PJ [EMAIL PROTECTED] wrote: Hi all, I have been using Tomcat for some time now, but I still feel like a newbie in most regards. At least when it comes to configuring it. Tomcat has been working great, together with Apache 2, for several months now. But now, I find

Newbie question. /manager only gives the directory listing

2005-09-18 Thread tomcat
Hi all, I have been using Tomcat for some time now, but I still feel like a newbie in most regards. At least when it comes to configuring it. Tomcat has been working great, together with Apache 2, for several months now. But now, I find myself wanting to use the manager webapp for the first time

Re: jconsole & security manager

2005-09-18 Thread Peter Rossbach
. If I run tomcat without security manager everything works well. If I run tomcat with security manager, monitoring the tomcat mbeans works well - but jconsoles memory view doensn't work! Sun's doc says: "If your application runs a security manager, then additional permissions are

neiter admin nor manager works !!? can you help!?

2005-09-16 Thread Yassine ELassad
) - i dont really know what could be causing this anyone of you guys can give me a help with it ?? my second issue is that after calling the manager application http:// myhost/manager i get the

jconsole & security manager

2005-09-16 Thread Pfingstl Gernot
I like to monitor my tomcat 5.5 (running on jdk 1.5.0) with jconsole. If I run tomcat without security manager everything works well. If I run tomcat with security manager, monitoring the tomcat mbeans works well - but jconsoles memory view doensn't work! Sun's doc says: "If your a

Security manager w/ manager app

2005-09-15 Thread Ryan Daly
All: Is it possible to start Tomcat w/ the security manager enabled if I were to use the Tomcat Web Application Manager? -- - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: How to force the Tomcat "manager" app to run in SSL only?

2005-09-08 Thread Augmentin
Thanks Chuck. I have added the following: to manager's web.xml and it worked: HTML Manager /html/* CONFIDENTIAL manager However, I am not sure with this setting before I actually get to the manager page, are the login and password encrypt

RE: How to force the Tomcat "manager" app to run in SSL only?

2005-09-08 Thread Caldarale, Charles R
> From: Augmentin [mailto:[EMAIL PROTECTED] > Subject: Fw: How to force the Tomcat "manager" app to run in SSL only? > > Since manager does not actually exist under /webapps I can't put a > in a web.xml file. You need to look around a little bit more, such a

Fw: How to force the Tomcat "manager" app to run in SSL only?

2005-09-08 Thread Augmentin
Hi All, I have looked into docs about manager.xml, Context, Valves etc but still find no clues. Since manager does not actually exist under /webapps I can't put a in a web.xml file. Thanks for help! Raymond ---

Re: Manager error 'FAIL - Invalid context path null was specified'

2005-09-04 Thread Mark Thomas
Andy wrote: When I request a reload like this - http://testxtb.example.com/manager/reload?xtb I get this response- FAIL - Invalid context path null was specified However according to this page - http://jakarta.apache.org/tomcat/tomcat-5.5-doc/manager-howto.html This is a valid syntax You

Manager error 'FAIL - Invalid context path null was specified'

2005-09-03 Thread Andy
Hi All, I'm trying to configure the manager application with virtual hosts. When I request a reload like this - http://testxtb.example.com/manager/reload?xtb I get this response- FAIL - Invalid context path null was specified However according to this page - http://jakarta.apach

Re: Manager webapp and virtual hosts

2005-08-27 Thread Mahesh S Kudva
= Mahesh S Kudva -Original Message- From: David Delbecq <[EMAIL PROTECTED]> To: "Tomcat Users List" Date: Thu, 25 Aug 2005 14:01:46 +0200 Subject: Re: Manager webapp and virtual hosts > Le Jeudi 25 Août 2005 13:55, Mikolaj Rydzewski a écrit : > > Hello, > >

RE: Manager webapp and virtual hosts

2005-08-25 Thread GB Developer
To: Tomcat Users 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

Re: Manager webapp and virtual hosts

2005-08-25 Thread David Delbecq
ch application using > manager 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

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 in

manager not unpacking war files

2005-08-22 Thread erh
I'm trying to get the Tomcat manager app to unpack war files when I install them. (using "Deploy directory or WAR file located on server") The only setting I found that is supposed to control this is unpackWARs, so I have this in my server.xml: Nothing I tried ca

Clustering and controlling session manager

2005-08-10 Thread Mark Hagger
t.xml file in the webapp with a suitable Manager node, eg: and all would be fine. The trouble is that by doing this the session manager that would normally be created by the Cluster configuration is overridden by this Manager definition. Unless I'm missing something (and I've had

Re: Security Manager

2005-07-31 Thread Lintang JP
maybe you must include web-app_2_3_2.dtd in your WEB-INF directory, and then reload it ? On 7/31/05, Ralf Schneider <[EMAIL PROTECTED]> wrote: > > Am Dienstag, 19. Juli 2005 23:55 schrieb Ralf Schneider: > > Hi, > > > > I have some problems when turning the secu

Re: Security Manager

2005-07-31 Thread Ralf Schneider
Am Dienstag, 19. Juli 2005 23:55 schrieb Ralf Schneider: > Hi, > > I have some problems when turning the security manager of Tomcat 5.5.9 on. > When I load a JSP that has to be compiled after being changed I get a > strange exception: > > ERROR [19.07.2005 23:30:45] (Appli

RE: Manager servlet to manage virtual hosts

2005-07-27 Thread Raghupathy,Gurumoorthy
2005 14:05 To: Tomcat Users List Subject: Re: Manager servlet to manage virtual hosts > Hi there. > > Yeah, this is pretty much what I want, only the problem is: > > www.myserver.com:8080/manager exists, but www.myvh_1.com:8080/ > manager and www.myvh_2.com:8080/manager, e

Re: Manager servlet to manage virtual hosts

2005-07-27 Thread Manik Surtani
Hi there. Yeah, this is pretty much what I want, only the problem is: www.myserver.com:8080/manager exists, but www.myvh_1.com:8080/ manager and www.myvh_2.com:8080/manager, etc. does not exist ... For some reason the manager servlet is not avbl on my virtual hosts and the manager on the

RE: Manager servlet to manage virtual hosts

2005-07-27 Thread Raghupathy,Gurumoorthy
You can do this with ant very nicely http://localhost:8080/manager/stop?path=/Learning"; username="adminUserName" password="adminPassword"/> ${STOPOUTPUT}

Manager servlet to manage virtual hosts

2005-07-27 Thread Manik Surtani
Hi, I'm running TC 5.0.19 and have 8 virtual hosts on the box. Each virtual host has a default ("/") context with it's app deployed. When I access tomcat on it's IP address on port 8080, I get the default tomcat root, with access to the admin and manager servlets

Security Manager

2005-07-19 Thread Ralf Schneider
Hi, I have some problems when turning the security manager of Tomcat 5.5.9 on. When I load a JSP that has to be compiled after being changed I get a strange exception: ERROR [19.07.2005 23:30:45] (ApplicationDispatcher.java:704) - Servlet.service() for servlet jsp threw exception

Re: Tomcat manager using mod_jk?

2005-07-07 Thread Alan Chandler
On Friday 08 July 2005 01:59, Luis Torres wrote: > Hello again, > > Same setup: Solaris 9, Apache 2.043, mod_jk and two tomcats (4.131 & JDK > 1.5.0) > > Any of you guys know if there's a way to access the tomcat manager > application or something similar when using m

Tomcat manager using mod_jk?

2005-07-07 Thread Luis Torres
Hello again, Same setup: Solaris 9, Apache 2.043, mod_jk and two tomcats (4.131 & JDK 1.5.0) Any of you guys know if there's a way to access the tomcat manager application or something similar when using mod_jk?? Right now the only way I have found is to leave tomcat accepting

how many Manager apps need I configure?

2005-06-29 Thread Paul Singleton
I have two virtual hosts under 5.5.9, on separate IP addresses and with different SSL certificates, each with just one web app. The Manager App HOW-TO says: If you have Tomcat configured to support multiple virtual hosts (websites) you would need to configure a Manager for each. so I did

RE: What happened to the admin and manager apps in 5.5?

2005-06-28 Thread Didier McGillis
tomcat-user@jakarta.apache.org Subject: What happened to the admin and manager apps in 5.5? Date: Tue, 28 Jun 2005 15:21:16 -0400 I'm trying to install the admin application of tomcat. When I download the .zip file. I'm confused about what I'm suppose to deploy, where to deploy it an

What happened to the admin and manager apps in 5.5?

2005-06-28 Thread lchalupa
I'm trying to install the admin application of tomcat. When I download the .zip file. I'm confused about what I'm suppose to deploy, where to deploy it and how to do it. Of course there are few clues that may any sense to me. The directory structure in the zip file is very confusing to me. Can

Re: Shell command to stop and start a webapp without using the manager?

2005-06-16 Thread Andre Van Klaveren
He should be able to use the manager but he'll have to run a copy of it in each Host instance for it to work. On 6/16/05, Marius Scurtescu <[EMAIL PROTECTED]> wrote: > Nikola Milutinovic wrote: > > [EMAIL PROTECTED] wrote: > > > >> Hi all, > >> > &g

Re: Shell command to stop and start a webapp without using the manager?

2005-06-16 Thread Marius Scurtescu
Nikola Milutinovic wrote: [EMAIL PROTECTED] wrote: Hi all, I'd like to know if there's a shell command to stop and start separate web applications. With our configuration, we are unable to use the manager. * We are running Tomcat 5.5 and Apache 2 with the JK Connector (mod_jk)

Re: Shell command to stop and start a webapp without using the manager?

2005-06-16 Thread Nikola Milutinovic
[EMAIL PROTECTED] wrote: Hi all, I'd like to know if there's a shell command to stop and start separate web applications. With our configuration, we are unable to use the manager. * We are running Tomcat 5.5 and Apache 2 with the JK Connector (mod_jk) on RedHat Linux. * We ha

Shell command to stop and start a webapp without using the manager?

2005-06-15 Thread wlbettens
Hi all, I'd like to know if there's a shell command to stop and start separate web applications. With our configuration, we are unable to use the manager. * We are running Tomcat 5.5 and Apache 2 with the JK Connector (mod_jk) on RedHat Linux. * We have several virtual hosts. When

how to install the Admin section on the manager screen?

2005-06-13 Thread Brereton, Stephen
TC 5.5 says the admin section is now a separate download - fine. When I try and install it, the admin app is already listed, yet when I click the link, it can't find the pages? * * * * * * * * * * * * This email and any files transmitted with it are confidential and intended solely for the use of

RE: accessing app from Manager - get 'Unable to find a javac comp iler '

2005-06-13 Thread Brereton, Stephen
source instance" (problem here is that I built the server but not the app, and know virtually nothing of JSP!) -Original Message- From: Guillaume Lederrey [mailto:[EMAIL PROTECTED] Sent: 13 June 2005 10:59 To: Tomcat Users List Subject: Re: accessing app from Manager - get &#x

Re: accessing app from Manager - get 'Unable to find a javac compiler '

2005-06-13 Thread Guillaume Lederrey
On 6/13/05, Brereton, Stephen <[EMAIL PROTECTED]> wrote: > "Unable to find a javac compiler; > com.sun.tools.javac.Main is not on the classpath. > Perhaps JAVA_HOME does not point to the JDK" > > C:\Program Files\Java\jre1.5.0_02 is my JAVA_HOME path, which agrees with > the jvm path in the tomcat

accessing app from Manager - get 'Unable to find a javac compiler '

2005-06-13 Thread Brereton, Stephen
I've had bad problems with TC 5.5 - so have had to reinstall 5.0 Now, when I try to load an app via the Manager, I get "Unable to find a javac compiler; com.sun.tools.javac.Main is not on the classpath. Perhaps JAVA_HOME does not point to the JDK" C:\Program Files\Java\jr

Tomcat Manager and number of sessions per app

2005-06-05 Thread Darek
Hello, We have a server running Tomcat 4.1.27, mod_jk2, Apache2 hosting 6 applications. Tomcat Manager shows number of active sessions for each application. At one time one of the applications had over 300 active sessions, but applications user monitor would show only 60 authenticated users. I

Tomcat5+jk2... /manager/html

2005-06-01 Thread Gordon Schmidt
Hallo, after I got my iis6.0-webserver with jk2_connector and my application-server with tomcat 5 working, I have some problems: I can call the tomcat-startside via the IIs-Server on port 80, or I can call the tomcat-Server directly. But if I want to go to the /manager/html, /manager

Tomcat5+jk2... /manager/html

2005-06-01 Thread Gordon Schmidt
Hallo, after I got my iis6.0-webserver with jk2_connector and my application-server with tomcat 5 working, I have some problems: I can call the tomcat-startside via the IIs-Server on port 80, or I can call the tomcat-Server directly. But if I want to go to the /manager/html, /manager

question about localhost/ error count in tomcat "manager" web app

2005-05-27 Thread Annie Wang
hi, i've configured my servlet to be at some location, say for instance: http://:8080/xzy/abc when i access my servlet, it returns back okay and request count for my servlet increments okay on the tomcat "manager" web app. however, i also notice error count for loc

Tomcat manager not working

2005-05-19 Thread phil campaigne
I upgraded Tomcat from 4.1.18 to 5.0.28 and get the Tomcat home page (index.jsp) ok. However, when I click on the link for the manager applicatiion and other applications, they result in 404 errors. 1. should I be configuring something to get the examples and manager applicactions working

How to use Admin and Manager app. when $CATALINA_BASE is redefined ?

2005-05-12 Thread MERCADIER Didier ROSI/SIFAC
Hi, We use Tomcat 4.1.24 and JSDK 1.4.1.07 on Windows 2000. In our project, we have redefined $CATALINA_BASE to point to our webapp directory outside of $CATALINA_HOME. It works perfectly. So now, we want to use administration and manager web applications. But /admin and /manager are searched

security manager & unpackWAR="false"

2005-05-09 Thread Pfingstl Gernot
Switching on security manger I can add permissions to my webapp calsses e.g. with grant codeBase "file:${catalina.base}/webapps/examples/WEB-INF/classes/-" If I choose to use 'unpackWAR="false"', I don't have anything in my ${catalina.base}/webapps directory and my 'docBase' (my example

Re: manager/admin login problem

2005-05-06 Thread howarddy3
tions. -- Original message -- From: "Phil Manheim" <[EMAIL PROTECTED]> > Hi, > > I recently installed Crystal Reports XI on one of my servers. This included > an installation of Tomcat. I am trying to log in to both the administration &

RE: manager/admin login problem

2005-05-06 Thread Phil Manheim
That was the problem. Thanks a lot. I guess I missed that step somehow. Thanks. Phil -Original Message- From: Lutz Zetzsche [mailto:[EMAIL PROTECTED] Sent: Friday, May 06, 2005 4:59 PM To: Tomcat Users List Subject: Re: manager/admin login problem Hi Phil Am Freitag, 6. Mai 2005 22

Re: manager/admin login problem

2005-05-06 Thread Lutz Zetzsche
Hi Phil Am Freitag, 6. Mai 2005 22:54 schrieb Phil Manheim: > I did add those two lines as well. Is that all that is necessary to > add new roles? Do I need to define those roles or their rights > somewhere? No, if you have defined in the server.xml that the tomcat-users.xml will be used for u

RE: manager/admin login problem

2005-05-06 Thread Phil Manheim
: manager/admin login problem Hi Phil, Am Freitag, 6. Mai 2005 21:51 schrieb Phil Manheim: > I recently installed Crystal Reports XI on one of my servers. This > included an installation of Tomcat. I am trying to log in to both > the administration and manager consoles, but cannot get it to

Re: manager/admin login problem

2005-05-06 Thread Lutz Zetzsche
Hi Phil, Am Freitag, 6. Mai 2005 21:51 schrieb Phil Manheim: > I recently installed Crystal Reports XI on one of my servers. This > included an installation of Tomcat. I am trying to log in to both > the administration and manager consoles, but cannot get it to work. > I ha

RE: manager/admin login problem

2005-05-06 Thread Phil Manheim
Message- From: Parsons Technical Services [mailto:[EMAIL PROTECTED] Sent: Friday, May 06, 2005 4:17 PM To: Tomcat Users List Subject: Re: manager/admin login problem Look in the server.xml That is where you will find where the username and password is being looked up at. If the comments are there

Re: manager/admin login problem

2005-05-06 Thread Parsons Technical Services
comments. Doug - Original Message - From: "Phil Manheim" <[EMAIL PROTECTED]> To: Sent: Friday, May 06, 2005 3:51 PM Subject: manager/admin login problem Hi, I recently installed Crystal Reports XI on one of my servers. This included an installation of Tomcat. I am trying t

manager/admin login problem

2005-05-06 Thread Phil Manheim
Hi, I recently installed Crystal Reports XI on one of my servers. This included an installation of Tomcat. I am trying to log in to both the administration and manager consoles, but cannot get it to work. I have added the following record to the tomcat-users.xml file: It will not allow me

RE: Interface to admin & manager web application

2005-04-29 Thread Atanu Neogi
Thanks, but that of course is obvious and I have mentioned the same. I was looking for the definition of the URIs for direct HTTP and/or JMX query calls, i.e., a client interface to the admin and manager web applications. Most of it I could reconstruct by reading the URLs submitted from the

deploy using manager

2005-04-29 Thread Jiang, Peiyun
[use maven tomcat:deploy (using manager)] FAIL - Encountered exception java.io.IOException: java.lang.reflect.InvocationTargetException What does this mean? Peiyun Jiang - To unsubscribe, e-mail: [EMAIL PROTECTED] For

RE: Interface to admin & manager web application

2005-04-29 Thread Raghupathy,Gurumoorthy
Well you can use a httpurlConnection ? In your java code to do the work Regards Guru -Original Message- From: Atanu Neogi [mailto:[EMAIL PROTECTED] Sent: 29 April 2005 00:42 To: Tomcat Users List Subject: Interface to admin & manager web application Hi, I need to write a

Interface to admin & manager web application

2005-04-28 Thread Atanu Neogi
Hi, I need to write a non-browser GUI application to do the same set of actions currently performed by the HTML interface of the Tomcat manager and admin web applications. I looked at whatever documentation is currently avialable for JMX proxy servlet. Before I delve into the Tomcat

Re: deploy using manager

2005-04-28 Thread David Whitehurst
Raghupathy,Gurumoorthy wrote: Delete the work dir and reload -Original Message- From: Jiang, Peiyun [mailto:[EMAIL PROTECTED] Sent: 28 April 2005 17:24 To: 'Tomcat Users List' Subject: deploy using manager From tomcat /manager/ did: (1) remove application (2) uploaded war from PC to

RE: deploy using manager

2005-04-28 Thread Raghupathy,Gurumoorthy
Delete the work dir and reload -Original Message- From: Jiang, Peiyun [mailto:[EMAIL PROTECTED] Sent: 28 April 2005 17:24 To: 'Tomcat Users List' Subject: deploy using manager >From tomcat /manager/ did: (1) remove application (2) uploaded war from PC to server

deploy using manager

2005-04-28 Thread Jiang, Peiyun
>From tomcat /manager/ did: (1) remove application (2) uploaded war from PC to server to install (3) optionally reload/stop/start, sometimes repeatedly Tomcat still running the old version. Any known reasons? Peiyun Jiang -

tomcat manager

2005-04-25 Thread Remo rahman
i have some question related to tomcat manager application in tomcat 5.5.4 1)how to deploy on tomcat startup 2)deploying on running tomcat server 3)deploying using the client deployer package 4)deployment -locally 5)deployment-remotely 4 and 5 are the option available in manager application 6)is

Manager app for embedded tomcat?

2005-04-21 Thread Ted Weatherly
Hi, The "normal" tomcat has a manager app that lets you go to a particular URL (e.g. server:8080/manager/) to restart/reload tomcat. This was very convenient for me b/c it allowed me to automate restarting tomcat...I could just issue a wget to the restart URL everytime I updated j

reloading a host from the IP address manager

2005-04-21 Thread Charles Harvey III
Hello there. I have Tomcat setup with a few different s. Each webapp needs a new URL so it gets its own entry. Not weird. But what gets difficult is that I cannot reload each of these s. http://12.34.56.78/manager/reload?path=/myapp That works if I have: /webapps/myapp/ But not if I have

  1   2   3   4   5   6   7   8   9   10   >