Re: Istalling Bugzilla on Tomcat

2006-05-25 Thread Bruno Georges
Less Well if you can use something else that Bugzilla then you can go ahead with Jira. 2 years ago I did switch from Bugzilla to Jira and don't regret it. A bit of topic, why can't you go Jboss when you already use Tomcat? Bruno Georges Glencore International AG Tel. +41 41 709 3204 Fax +41 4

Is custom realm using user/role data in webapp possible?

2006-05-25 Thread Mike Klein
As opposed to having realm read from external source like ldap or jdbc... My webapp JASM uses in-memory user/role database. I realize this isn't "ideal"...but. JASM uses simple form-like authentication hard-wired into jsp. I couldn't use basic/form because user database is stored in serialized da

Re: Istalling Bugzilla on Tomcat

2006-05-25 Thread Wade Chandler
--- LessZoa <[EMAIL PROTECTED]> wrote: > > Thanks... but we cannot go to JBOSS... :( > > We are now looking for a more java solution to > tracking our bugs and > managing our development. I was pointed toward JIRA > by a maillist response. > > I would much prefer to use open source if I could..

Re: [help] blank index.jsp on Tomcat 5.5.9

2006-05-25 Thread Hassan Schroeder
On 5/25/06, Garner Shawn <[EMAIL PROTECTED]> wrote: I have an index.jsp that redirects to a jsf page. <%response.sendRedirect("welcome.jsf");%> However I know the webapp was deployed because if I type in /welcome.jsf the page comes up. Not sure why you'd redirect to that instead of just f

[help] blank index.jsp on Tomcat 5.5.9

2006-05-25 Thread Garner Shawn
I have an index.jsp that redirects to a jsf page. code: <%response.sendRedirect("welcome.jsf");%> I tested it and it works fine on

Re: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread Marc Farrow
The main thing is to keep the main thing the main thing and oh yeah I am happy you got your problem resolved. On 5/25/06, Allen Williams <[EMAIL PROTECTED]> wrote: Well, I'd first like to say (before I make a complete fool of myself) thanks to all who helped me. I have (embarassing moment here

RE: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread Allen Williams
Well, I'd first like to say (before I make a complete fool of myself) thanks to all who helped me. I have (embarassing moment here) finally found the problem. When I was running under the old configuration, I had the test URL bookmarked as /smsinfo/login.jsp. The directory doesn't (or, didn't, u

RE: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread Allen Williams
Nothing at all shows up in them. That's why I asked a few posts ago whether there was some way I could increase the debug level. This is true not only at tomcat startup, but also when I try to access the directory. All I get is the "requested resource is not available" message in my browser. I'

Re: load balancer

2006-05-25 Thread Filip Hanik - Dev Lists
that, or even a load balancing appliance, those tend to be extremely scalable. this one used to be free, you could download an image and create any box to be a LB http://www.loadbalancer.org/products.html Filip David Durham wrote: From the docs [1], it's slightly unclear to me what the l

load balancer

2006-05-25 Thread David Durham
From the docs [1], it's slightly unclear to me what the load-balancer is exactly. I've kind of gleaned from other sources that it's perhaps an apache httpd running modjk? Thanks, Dave 1. http://tomcat.apache.org/tomcat-5.5-doc/cluster-howto.html -

Re: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread Hassan Schroeder
On 5/25/06, Allen Williams <[EMAIL PROTECTED]> wrote: Yeah, I fixed that. That error is no longer in the logs. Let me assure you that absolute appBase and absolute docBase paths work fine together -- I've got systems in production set up that way. In any case, what *does* show up in your log

Re: Native connector startup problem

2006-05-25 Thread Martin Gainty
Looks more like AJP port is bound ..grep thru http*.conf , find the AJPPort specifier (usually 8009) then netstat -a | grep ThatPort (then go after the process id) If that doesnt solve it shutdown Tomcat/ shutdown Apache, and start Apache / start Tomcat If that doesnt solve it you may have to

RE: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread Allen Williams
Yeah, I fixed that. That error is no longer in the logs. > -Original Message- > From: Jay Burgess [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 25, 2006 5:22 PM > To: users@tomcat.apache.org > Subject: RE: More (Unending) "Resource Not Found"/ Directory Problems > > > The reason I comme

Native connector startup problem

2006-05-25 Thread Fenlason, Josh
I'm running into the error when I try to startup Tomcat 5.5.17 with the 1.1.3 native connector on AIX. It starts up fine on the same port when not using the native connector, so there's nothing else using the port. Has anyone else seen this? Anyone have any suggestions on what's wrong? Thanks in

Re: Istalling Bugzilla on Tomcat

2006-05-25 Thread LessZoa
Thanks... but we cannot go to JBOSS... :( We are now looking for a more java solution to tracking our bugs and managing our development. I was pointed toward JIRA by a maillist response. I would much prefer to use open source if I could... Does anyone know what happened to RatBug? I vaguely r

RE: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread Jay Burgess
The reason I commented is that I noticed in one of your previous posts a log error like: "Document base /usr/local/tomcat/webapps/usr/local/tomcat/webapps/smsinfo does not exist or is not a readable directory." Since this message contains the string "/usr/local/tomcat/webapps" twice, I thought

RE: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread LessZoa
You can set up valves to handle log files. You need to create your log directory and such, then add it into your host context in the server.xml. First... for logging, you have to uncomment/add in the Valve in the main host section as such: In my server.xml I have 5 different webapps as th

changing web.xml to allow opening .eml files

2006-05-25 Thread Kaitee Fleck
I'm having a problem with my server opening .eml files. (email files) When trying to open them it just shows code and the email is imbedded in it. Previously I have been able to add mime mappings in the web.xml file to allow other types of files to be opened, but everything I try isn't working.

RE: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread Allen Williams
Thanks. This all started when I went from a Debian package install to a more "vanilla" Linux install. Under the Debian apt package install, it put everything into /usr/share/, and everything worked fine until I tried to install an Ajp13 connector, whereupon it was recommended I do the vanilla ins

RE: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread Jay Burgess
I'm coming into this discussion late, so ignore this if it's offbase, but it looks like you are using absolute paths for both appBase and docBase: http://www.vtgroup.com/ -Original Message- From: Allen Williams [mailto:[EMAIL PROTECTED] Sent: Thursday, May 25, 2006 3:34 PM To: Tomcat Use

RE: tomcat 5 not starting

2006-05-25 Thread Warren Lewis
Take a peek at this bugzilla entry that addresses your problem: http://issues.apache.org/bugzilla/show_bug.cgi?id=28988 cheers - Warren -Original Message- From: ahum [mailto:[EMAIL PROTECTED] Sent: Thursday, May 25, 2006 4:21 PM To: users@tomcat.apache.org Subject: tomcat 5 not starting

Re: Tomcat Memory Leak

2006-05-25 Thread Wade Chandler
--- Rocio Alfonso Pita <[EMAIL PROTECTED]> wrote: > El Jueves 25 Mayo 2006 18:51, Petkov, Rossen > escribi�: > > The request.registerRequests="false" setting goes > in the workers.properties > > file. I already have that an it's not helping with > the memory leak. I plan > > to upgrade Tomcat to

RE: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread Allen Williams
Oooo-kay. I went and (re)read the document you suggested, did change docbase in the Context element to docBase (which I did miss until you pointed it out), and the same thing still hap- pens. Evidently, there's no way to tell tomcat how many times I've read the documentation;-) I know this is bo

RE: Problem setting up an Oracle 8 datasource

2006-05-25 Thread Tim Lucia
I would chase down the ORA-00911 error myself. Here is a working snippet from my web.xml which also connects to Oracle 8i using the 1.2 thin driver: Do you perhaps have funky characters in your username, or password, or some other field which you obfuscated prior to posting? (I can connec

Re: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread Marc Farrow
As Hassan pointed out your docbase tag is wrong. change to docBase (case sensitive) and check the other tags. On 5/25/06, Allen Williams <[EMAIL PROTECTED]> wrote: I am not using a context.xml. Someone suggested I do so, it would be under META-INF, but I don't have a META-INF subdir except un

tomcat 5 not starting

2006-05-25 Thread ahum
I am running apache 2.2.2 and tomcat 5.0 with jdk1.3 i get the following error message when trying to run tomcat 5: [2006-05-25 20:49:24] [info] Service Tomcat5 name Apache Tomcat [2006-05-25 20:49:25] [info] Service Tomcat5 installed [2006-05-25 20:49:25] [info] Procrun finished. [2006-05-25 2

RE: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread Allen Williams
I am not using a context.xml. Someone suggested I do so, it would be under META-INF, but I don't have a META-INF subdir except under one of the example apps. I'm more than happy to do so in the future, which this person pointed out was better form (more modular?), but not sure where it is suppose

Re: Tomcat 5.0.28 Manager Stopped Allowing Login

2006-05-25 Thread nightdots
I think i've narrowed it down to a problem with a tag I'm trying to connect to my LDAP server with the realm tag within server.xml, but I don't have ldap.jar. Sun's download site is down, does anyone know where i can get a mirrored copy of suns ldap.jar and the jndi/ldap booster pack? th

Re: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread Hassan Schroeder
On 5/25/06, Allen Williams <[EMAIL PROTECTED]> wrote: Are the absolute paths like "http://localhost:8080/smsinfo"; or like "/usr/local/tomcat/webapps/smsinfo"? File system paths, your second choice :-) Also, I assume by docBase you mean the docbase attribute in the Context element. Sweet mo

RE: Running Tomcat with different JDKs under SuSE-SE-9.0

2006-05-25 Thread Richard Mixon
SuSE has a very nice mechanism for selecting which of several versions of Java to run. I would recommend you take the 15 minutes to read the README in /etc/java and then follow it. The old way of just unjarring multiple Java versions to different locations and then creating the links and setting

RE: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread Allen Williams
Appreciate the tip, but the cases are all OK. > -Original Message- > From: AJ Jonen [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 25, 2006 3:49 PM > To: Tomcat Users List > Subject: Re: More (Unending) "Resource Not Found"/ Directory Problems > > > Linux is case sensitive do you have the

Re: Tomcat 5.0.28 Manager Stopped Allowing Login

2006-05-25 Thread Martin Grogan
Hi, I had a similar problem recently. There are two Tomcat users files. One is locaed in the $TOMCAT/conf folder and the other is in your user home. Check both files to see what the problem might be there. Cheers, Martin nightdots wrote: I'm having trouble with Tomcat Manager (Tomcat versio

Re: tomcat and java

2006-05-25 Thread Marc Farrow
google "java resource bundles". This should lead you in the correct direction to how to use multiple languages and text/etc for different types of resources/languages/etc On 5/25/06, AJ Jonen <[EMAIL PROTECTED]> wrote: Is it possible to have 2 different java connections in Tomcat. And 1. set t

Re: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread Marc Farrow
paste your context.xml and server.xml. As info. The docbase can be absolute or relative. I would suggest using relative (which would be relative to appBase). On 5/25/06, AJ Jonen <[EMAIL PROTECTED]> wrote: Linux is case sensitive do you have the write case. Allen Williams wrote: >Nope, un

tomcat and java

2006-05-25 Thread AJ Jonen
Is it possible to have 2 different java connections in Tomcat. And 1. set the language settings for each java connection differently 2. based on what web page is calling tomcat. display correct language. Aaron - To start a new t

Re: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread AJ Jonen
Linux is case sensitive do you have the write case. Allen Williams wrote: Nope, unfortunately, didn't work. Still get the "Resource not found" message. What am I missing here? -Original Message- From: Allen Williams [mailto:[EMAIL PROTECTED] Sent: Thursday, May 25, 2006 3:28 PM

RE: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread Allen Williams
I just checked the log files, and found an error because Document base /usr/local/tomcat/webapps/usr/local/tomcat/webapps/smsinfo does not exist or is not a readable directory. Well, this tells me two things: it is looking in the right place (at least for the document base) and it does NOT want a

RE: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread Allen Williams
Nope, unfortunately, didn't work. Still get the "Resource not found" message. What am I missing here? > -Original Message- > From: Allen Williams [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 25, 2006 3:28 PM > To: Tomcat Users List > Subject: RE: More (Unending) "Resource Not Found"/

RE: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread Allen Williams
Ahh! Thanks! I found the appBase attribute in the element. I'm putting absolute paths in everything (of the form "/usr/local/tomcat/...", not of the form "http://localhost:8080/...";) to see if that gets it working. The only context.xml file I've found is in the CATALINA_HOME/conf directory, no

Re: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread Marc Farrow
the appBase is an attribute that is defined in your server.xml. By default it is your TOMCAT_HOME/WEBAPPS folder. On 5/25/06, Allen Williams <[EMAIL PROTECTED]> wrote: I will take your advice and figure out how to use META-INF/context.xml as soon as I get back to where I was (I wondered what t

RE: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread Allen Williams
I will take your advice and figure out how to use META-INF/context.xml as soon as I get back to where I was (I wondered what that META-INF directory was for;-). Are the absolute paths like "http://localhost:8080/smsinfo"; or like "/usr/local/tomcat/webapps/smsinfo"? This has always been a point of

Tomcat 5.0.28 Manager Stopped Allowing Login

2006-05-25 Thread nightdots
I'm having trouble with Tomcat Manager (Tomcat version 5.0.28). My tomcat-users.xml file is well formed and was working, and I was able to access the Tomcat Manager with a certain username. Just now, I tried to place ldap.jar (from the JNDI libraries) into my $TOMCAT/ server/libs directory.

RE: Apache Cookie Buffer Overflow

2006-05-25 Thread Pichen, Douglas
Thanks -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, May 25, 2006 11:27 AM To: Tomcat Users List Subject: Re: Apache Cookie Buffer Overflow you scanner "may not work so well", it thinks that Tomcat is Apache httpd, The warnings you see, and the sug

Problem setting up an Oracle 8 datasource

2006-05-25 Thread Judy Dobry
Hi, I am trying to set up a datasouce for an Oracle 8 database. Unfortunately, I get the following error when I try to get a connection: org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (ORA-00911: invalid character) I have the following setup: JDBC

Tomcat Manager Stopped Accepting my Username/Password

2006-05-25 Thread nightdots
I'm having trouble with Tomcat Manager (Tomcat version 5.0.28). My tomcat-users.xml file is well formed and was working, and I was able to access the Tomcat Manager with a certain username. Just now, I tried to place ldap.jar (from the JNDI libraries) into my $TOMCAT/ server/libs directory.

Re: Tomcat Memory Leak

2006-05-25 Thread Rocio Alfonso Pita
El Jueves 25 Mayo 2006 18:51, Petkov, Rossen escribió: > The request.registerRequests="false" setting goes in the workers.properties > file. I already have that an it's not helping with the memory leak. I plan > to upgrade Tomcat to 5.0.28 and java to 1.4.2_11 Rossen I have a development p

RE: Tomcat Memory Leak

2006-05-25 Thread Petkov, Rossen
The request.registerRequests="false" setting goes in the workers.properties file. I already have that an it's not helping with the memory leak. I plan to upgrade Tomcat to 5.0.28 and java to 1.4.2_11 Rossen -Original Message- From: Rocio Alfonso Pita [mailto:[EMAIL PROTECTED] Sent: Thu

RE: Tomcat Memory Leak

2006-05-25 Thread Petkov, Rossen
Hi Wade, Thanks for you reply. Yes, we use extensively collections like LinkedHashMaps, Vectors, ArrayLists and DTO, all containing String objects. These are created typically in DAOs, then are stored in the request object and end up in a JSP. Here, we DON'T explicitly set these to null. Do you

Re: Apache Cookie Buffer Overflow

2006-05-25 Thread devlists
you scanner "may not work so well", it thinks that Tomcat is Apache httpd, The warnings you see, and the suggested fix, are related to httpd.apache.org, not tomcat.apache.org two different prouducts > Hello, > > We just installed a JBOSS server in our production Environment... > Apparently JBOSS

Apache Cookie Buffer Overflow

2006-05-25 Thread Pichen, Douglas
Hello, We just installed a JBOSS server in our production Environment... Apparently JBOSS came bundled with Apache Tomcat/5.5.9 Our current environment is: Windows 2003 SP1 JBOSS 4.0.2 JVM Version: 1.4.2_11-b06 Apache Tomcat/5.5.9 Our security scanner has picked up 2 security vulnerabilities on

Re: More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread Hassan Schroeder
On 5/25/06, Allen Williams <[EMAIL PROTECTED]> wrote: I added this to the server.xml file: What's wrong here, and can someone help me with this immediate problem? 1) putting context configuration in server.xml is discouraged; you'd be well off to get used to using META

More (Unending) "Resource Not Found"/ Directory Problems

2006-05-25 Thread Allen Williams
To the list (my new best friends;-): I finally got my (very simple) app up and working under the Debian package mechanism, but was having problems with the ajp13 connector. On someone's advice, I reinstalled using a manual installation (i. e., I used the Linux binary, but unpacked and installed b

Re: Istalling Bugzilla on Tomcat

2006-05-25 Thread Wade Chandler
--- Bruno Georges <[EMAIL PROTECTED]> wrote: > Hi Lessie > > Bugzilla is not a Java based Web App, it is build > Perl/CGI, therefore you > need a web server which can parse these requests, > map and execute them. > Recently JBoss announced JBoss Web which allows you > to do exactly that > along

users@tomcat.apache.org

2006-05-25 Thread Wade Chandler
--- vrinda ullas <[EMAIL PROTECTED]> wrote: > hi rajjev, > i am using communication api version 2. > i am trying to control a relay through serial port.I > first built ajava > application to do the same. It works fine.But on > trying to convet the > same into a web based application i don,t get an

SSL: different client authentication for different web services

2006-05-25 Thread Víctor Torres \(UPF\)
Hi, I have different AXIS services running and I would like some of them to be available only with ssl client authentication and some others only with server authentication. I have succeded to configure Tomcat to work with ssl with client authentication in port 8443 and in 8444 without client

RE: how to persist a session

2006-05-25 Thread Vikas Jain
Please go through this link http://tomcat.apache.org/tomcat-5.0-doc/config/manager.html inside this at last there is Restart Persistence Whenver Catalina is shut down normally and restarted, or when an application reload is triggered, the standard Manager implementation will attempt to serial

Re: how to persist a session

2006-05-25 Thread charly
Instead of javascript you could also use an (small, invisible) iframe loading an otherwise empty html page with http meta refresh in it.. Regards Karl-Heinz - Original Message - From: "David Smith" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Thursday, May 25, 2006 3:09 PM Sub

Re: how to persist a session

2006-05-25 Thread Michael Echerer
Vikas Jain wrote: > Hi, > > I am using java server faces. My web server is Tomcat5.0. > > I want to persist my session that is the session should continue until user > logs out. I don't want to do this task through > 0 > > > > in web.xml. > > > > Any help will be highly appreciated... A

Re: Istalling Bugzilla on Tomcat

2006-05-25 Thread Bruno Georges
Hi Lessie Bugzilla is not a Java based Web App, it is build Perl/CGI, therefore you need a web server which can parse these requests, map and execute them. Recently JBoss announced JBoss Web which allows you to do exactly that along with running Tomcat. You can also run PHP and .Net. Have a look

Re: how to persist a session

2006-05-25 Thread David Smith
That's true and I've restled with the javascript or no javascript question myself a few times. I think with all the AJAX and web 2.0 stuff out there, it's getting so those cases are fewer and fewer. --David Peter Crowther wrote: >>From: David Smith [mailto:[EMAIL PROTECTED] >>Option 3: Use a b

RE: how to persist a session

2006-05-25 Thread Vikas Jain
Hi Lung Chan, Many Many thanks for reply. I also think that through cookies it will done but how it is? Do you have any idea of using cookies to save a session? Regads Vikas Jain -Original Message- From: Lung Chan [mailto:[EMAIL PROTECTED] Sent: Thursday, May 25, 2006 6:22 PM To: Tomcat

Re: how to persist a session

2006-05-25 Thread Mikolaj Rydzewski
Vikas Jain wrote: I am using java server faces. My web server is Tomcat5.0. I want to persist my session that is the session should continue until user logs out. Use HttpSessionActivationListener http://www.docjar.com/docs/api/javax/servlet/http/HttpSessionActivationListener.html -- Mikolaj

RE: how to persist a session

2006-05-25 Thread Peter Crowther
> From: David Smith [mailto:[EMAIL PROTECTED] > Option 3: Use a bit of javascript to refresh a small, invisible gif > image on a timed basis. Very good point. I'm too used to advising on accessible design, where the browsers may not run Javascript :-). - Peter -

RE: how to persist a session

2006-05-25 Thread Peter Crowther
> From: Lung Chan [mailto:[EMAIL PROTECTED] > I'm pretty new in web design, but why can't you use cookies to > do what you want? If you do, you have two approaches: - Store all the session data in the cookie, and pass that back and forth on each request and response. This eliminates the need to

Re: how to persist a session

2006-05-25 Thread David Smith
Because tomcat's sessions will timeout if left unattended long enough regardless of expiration date/time on a cookie. --David Lung Chan wrote: > I'm pretty new in web design, but why can't you use cookies to > do what you want? > > Will that work?? > > > On 5/25/06, Peter Crowther <[EMAIL PROTEC

Re: how to persist a session

2006-05-25 Thread David Smith
Option 3: Use a bit of javascript to refresh a small, invisible gif image on a timed basis. The session timeout can be short and the session will stay around as long as the browser windows is open or until the user clicks a logout link. --David Peter Crowther wrote: >>From: Vikas Jain [mailto:[

Re: how to persist a session

2006-05-25 Thread Lung Chan
I'm pretty new in web design, but why can't you use cookies to do what you want? Will that work?? On 5/25/06, Peter Crowther <[EMAIL PROTECTED]> wrote: > From: Vikas Jain [mailto:[EMAIL PROTECTED] > I want to persist my session that is the session should > continue until user > logs out. I do

RE: how to persist a session

2006-05-25 Thread Peter Crowther
> From: Vikas Jain [mailto:[EMAIL PROTECTED] > I want to persist my session that is the session should > continue until user > logs out. I don't want to do this task through > 0 > > > > in web.xml. You have no way of telling when a user closes a browser onto your application. Given that, an

how to persist a session

2006-05-25 Thread Vikas Jain
Hi, I am using java server faces. My web server is Tomcat5.0. I want to persist my session that is the session should continue until user logs out. I don't want to do this task through 0 in web.xml. Any help will be highly appreciated... With Thanks And Regards Vikas Jain --

problem in GC tuning

2006-05-25 Thread Prashant kumar
Hi All, I m working on an sip application server and want to increase its performance. at max load the CPU of my server machine is around 45-50% free. The issue I am facing is that for a short period of time (for around 7-10 sec), free CPU goes below 25%. My server has a constraint that it must h

Re: Tomcat on a Memory Stick

2006-05-25 Thread Leon Rosenberg
On 5/25/06, David Smith <[EMAIL PROTECTED]> wrote: I'm not sure I see how this should be different than running it from a hard drive or any other file system location. Have you tried to do it? Are you having problems? I think the startup performance could be a problem. Also your jsps should b

Re: Tomcat on a Memory Stick

2006-05-25 Thread David Smith
I'm not sure I see how this should be different than running it from a hard drive or any other file system location. Have you tried to do it? Are you having problems? --David Markus-Alexander Metz wrote: > Hi ... I wanna run my tomcat server on a memory stick but I have no > idea how to get it

Re: Tomcat Memory Leak

2006-05-25 Thread Antonio Petrelli
Petkov, Rossen ha scritto: Hello, I am having a problem with Tomcat 5.0.19 on windows with JDK 1.4.2_03.The memory that java.exe is using keeps growing till the point that tomcat Runs out of memory. Try this: http://wiki.apache.org/tomcat/OutOfMemory Ciao Antonio --

users@tomcat.apache.org

2006-05-25 Thread Rajeev N. Jha
I am also using java comm API version 2 and i can display all the port names and types through a servlet. so no magic here. Maybe you should use a simple program like this to test your environment first ? Plus one more point , i have copied comm api files (dll , properties file and comm jar fi

Re: Tomcat Memory Leak

2006-05-25 Thread Rocio Alfonso Pita
El Jueves 25 Mayo 2006 07:44, Bill Barker escribió: > If you are using the AJP/1.3 Connector, then 5.0.19 has a very very very > very well known memory leak. You need to set > request.registerRequests="false" in this case. Either that, or upgrade :). hello, I have a similar problem, and

Re: FW: modJK errors

2006-05-25 Thread Rainer Jung
Errno 131 means "Connection reset by peer" for Solaris. Any IP influencing components between Apache und Tomcat? Firewalls? Is Tomcat stil listening on 151.116.4.77:8009 (check via netstat -an) You could try to sniff network traffic on both sides (Apache and Tomcat) and check, whether connect

Re: FW: modJK with and without load balancer

2006-05-25 Thread Rainer Jung
Eliminating the lb will give a slight performance improvement, using the lb will give you a subtle management improvement (being able to stop the worker in jkstatus). Different is also the way errors are handled (lb takes workers offline after errors for a minute, direct workers will be tried

Tomcat on a Memory Stick

2006-05-25 Thread Markus-Alexander Metz
Hi ... I wanna run my tomcat server on a memory stick but I have no idea how to get it running. does anyone got this and can help me ??? ... thanks a lot Markus - To start a new topic, e-mail: users@tomcat.apache.org To unsubscr

users@tomcat.apache.org

2006-05-25 Thread vrinda ullas
hi rajjev, i am using communication api version 2. i am trying to control a relay through serial port.I first built ajava application to do the same. It works fine.But on trying to convet the same into a web based application i don,t get any results. --

JMX remote with JMXMP

2006-05-25 Thread Andreas Schildbach
Hello everyone, I'd like to remotely access my MBeans by using the JMXMP protocol. JMXMP is an alternative to the default RMI protocol and aims to be much more firewall friendly. I already have downloaded the JMX remote reference implementation and thus have got hold of jmxremote_optional.ja

users@tomcat.apache.org

2006-05-25 Thread Rajeev N. Jha
what version of java COMM are you using ? Plus it would help to know why you are accessing a serial port through tomcat server ? vrinda ullas wrote: -- Forwarded message -- From: vrinda ullas <[EMAIL PROTECTED]> Date: Thu, 25 May 2006 08:52:58 +0530 Subject: commapi using TOM