Re: Re: Error at tomcat start up

2005-05-22 Thread tushar S Kulkarni
Thanks for your email! no my web.xml doesnt have 331 lines. I had added entire web.xml in previous email. I have created a dir called jsfApp under webapps and have set this context. so will any other application cause problem? Thanks  On Sun, 22 May 2005 Shinji Miyamoto wrote : Hi, The

Re: Accessing images through FrontController Servlet

2005-05-22 Thread Dakota Jack
You are right that a call for an image, or css for that matter, is another call to the server. And, this call is really not anything special, except that it returns a stream. If you want to get a response from a URL, then you have to follow the rules in doing this. If you instead want to get a

Re: [Tomcat] Web Traffic Analisys Tool

2005-05-22 Thread Omar Adobati
thank you for your replay, but I'm looking for anything written in java/jsp 'cose I need to use it with Tomcat, or with any other java/jsp container. Do you know anything about it? On 5/22/05, Michael Echerer [EMAIL PROTECTED] wrote: Omar Adobati wrote: Good Morning all, I'm looking for a

Reload on Tomcat 5.5

2005-05-22 Thread Robert Parsons
Hi, I first stared using tomcat with version 5.0. I recently have tried installing version 5.5 and have noticed only 1 major difference... reload doesnt seem to work! I dont get any errors, infact i get the correct entries in the log etc but nothing actually reloads. I have tried to reload

Re: Reload on Tomcat 5.5

2005-05-22 Thread Parsons Technical Services
I don't run 5.5, but it sounds like you may be running into an issue that has plagued several others on the list. 5.5 has a hard time letting go of the cache/workfiles. I notice that you said the program updates fine, what are you doing that a reload should update? An undeploy will normally

Re: Reload on Tomcat 5.5

2005-05-22 Thread Robert Parsons
Hi, Thanks for the quick reply. I have the latest stable version i think (5.5.9). I have tried this on older version too in the past and just given up and gone back to 5.0. I just decided this time to see if it was a bug or me missing somthing. Basically i'm just trying to get classes to

Re: Reload on Tomcat 5.5

2005-05-22 Thread Remy Maucherat
On 5/22/05, Robert Parsons [EMAIL PROTECTED] wrote: Hi, Thanks for the quick reply. I have the latest stable version i think (5.5.9). I have tried this on older version too in the past and just given up and gone back to 5.0. I just decided this time to see if it was a bug or me missing

RE: Error at tomcat start up

2005-05-22 Thread Dale, Matt
The error may be in your main tomcat web.xml rather than your webapps as it appears to be at line 331 and your webapp web.xml does not have that many lines. Ta Matt -Original Message- From: tushar S Kulkarni [mailto:[EMAIL PROTECTED] Sent: 21 May 2005 19:10 To:

RE: Clustering Tomcat

2005-05-22 Thread Dale, Matt
It looks like your machine is unable to send a multicast message. It will be an operating system configuration. Ta Matt -Original Message- From: Ben [mailto:[EMAIL PROTECTED] Sent: 21 May 2005 02:11 To: Tomcat Subject: Clustering Tomcat Hi I'm trying to configure clustering of 2

Re: Reload on Tomcat 5.5

2005-05-22 Thread Robert Parsons
Remy Maucherat wrote: On 5/22/05, Robert Parsons [EMAIL PROTECTED] wrote: Hi, Thanks for the quick reply. I have the latest stable version i think (5.5.9). I have tried this on older version too in the past and just given up and gone back to 5.0. I just decided this time to see if it was a

Re: Deploy War Message

2005-05-22 Thread Lutz Zetzsche
Hi Nuno, Am Freitag, 20. Mai 2005 16:17 schrieb Nuno Martins: While deploying a war in tomcat 4.1.31, this message appears in logs every 15 seconds *HostConfig[localhost]: Deploying discovered web applications* How can I disable this warning? Is it a warning or just an info? I could

Re: RE: Error at tomcat start up

2005-05-22 Thread tushar S Kulkarni
 Hi Thanks for your email, problem is sorted out, it was due to another web.xml which was not in order. On Sun, 22 May 2005 Dale,Matt wrote : The error may be in your main tomcat web.xml rather than your webapps as it appears to be at line 331 and your webapp web.xml does not have that

Re: Reload on Tomcat 5.5

2005-05-22 Thread Remy Maucherat
On 5/22/05, Robert Parsons [EMAIL PROTECTED] wrote: I don't imagine stuff, and I am not currently running tomcat under windows. I have used various versions of tomcat 5.0 and 5.5 on many different Operating systems (such as redhat, fedora core, ubuntu linux and windows xp) and many versions of

Re: Reload on Tomcat 5.5

2005-05-22 Thread Robert Parsons
Remy Maucherat wrote: On 5/22/05, Robert Parsons [EMAIL PROTECTED] wrote: I don't imagine stuff, and I am not currently running tomcat under windows. I have used various versions of tomcat 5.0 and 5.5 on many different Operating systems (such as redhat, fedora core, ubuntu linux and windows

Re: Resin-to-Tomcat 5 Migration

2005-05-22 Thread Scott Dudley
Peter, Took a quick look at StatusManagerServlet.java and StatusTransformer.java. Looks like I can collect most of what I need however, I still don't see how/where I can get container and application start date/time. Any ideas? Many thanks. Peter Rossbach wrote: Hey Scott, look

Performing an action on form-based login

2005-05-22 Thread Torsten Römer
This question has been asked (and answered to) earlier, but I am still unsure: I am using container managed security with form-based authentication. I am really happy with how it works. But now I would like to perform an action when a user has authenticated, such as loading user preferences

Re: Resin-to-Tomcat 5 Migration

2005-05-22 Thread Peter Rossbach
Hey Scott, create you own LifecycleListener and catch the Start/Stop Events. For the complete Container you must configure this listener as Server/Listener. At tomcat 5.5 you can place the application listener at conf/context.xml. Regards Peter Scott Dudley schrieb: Peter, Took a quick

Re: Reload on Tomcat 5.5

2005-05-22 Thread Remy Maucherat
On 5/22/05, Robert Parsons [EMAIL PROTECTED] wrote: Hi, Thanks for the reply. Well to be more specific then I will give you an example of what I have tried as a test. I write a basic servlet that simply prints a line of text to the screen. If i compile it and deploy it, all is good. If I

Re: Reload on Tomcat 5.5

2005-05-22 Thread Parsons Technical Services
Robert, Now that Remy has tested it in his perfect world, this gives some direction to work in. It would appear that with a basic setup, which we can only assume since Remy assured you that it works, that there must be a OS issue. I wonder what Remy runs? If you decide to dig deeper, I

Re: Reload on Tomcat 5.5

2005-05-22 Thread Remy Maucherat
On 5/22/05, Parsons Technical Services [EMAIL PROTECTED] wrote: Robert, Now that Remy has tested it in his perfect world, this gives some direction to work in. It would appear that with a basic setup, which we can only assume since Remy assured you that it works, that there must be a OS

Re: Clustering Tomcat

2005-05-22 Thread Ben
It was my firewall. The servers are working now, however I get these error messages when I stop and start one of the two Tomcat instances: May 21, 2005 5:09:20 PM org.apache.catalina.cluster.tcp.SimpleTcpCluster send SEVERE: Unable to send message through cluster sender. java.io.IOException:

RE: [Tomcat] Web Traffic Analisys Tool

2005-05-22 Thread Richard Mixon (qwest)
Omar Adobati mailto:[EMAIL PROTECTED] scribbled on Sunday, May 22, 2005 2:45 AM: thank you for your replay, but I'm looking for anything written in java/jsp 'cose I need to use it with Tomcat, or with any other java/jsp container. Do you know anything about it? On 5/22/05, Michael

RE: [Tomcat] Web Traffic Analisys Tool

2005-05-22 Thread Richard Mixon (qwest)
Omar Adobati mailto:[EMAIL PROTECTED] scribbled on Sunday, May 22, 2005 2:45 AM: thank you for your replay, but I'm looking for anything written in java/jsp 'cose I need to use it with Tomcat, or with any other java/jsp container. Do you know anything about it? On 5/22/05, Michael

Re: [Tomcat] Web Traffic Analisys Tool

2005-05-22 Thread Omar Adobati
Richard, I know that there's the traffic itself. What I would like to have is a tool that take a trace of it running on Tomcat. I need anything that I can use without have to compile or configure, anything ready to run... plug'n'play maybe. This is because if I have not a server but I'm on an

RE: What happened to the searchable list archive?

2005-05-22 Thread Steve Kirk
GB developer, Robert and Tomi, thanks very much for pointing me to these search sites. I was not aware of any of them before, despite having developed on TC for several years. Perhaps there are more out there. If anyone involved in producing the Tomcat project documentation is reading this, I

Re: What happened to the searchable list archive?

2005-05-22 Thread Mark Thomas
Steve Kirk wrote: If anyone involved in producing the Tomcat project documentation is reading this, I would suggest maybe linking these sites from the official mailing list pages, as alternatives to the official archive? Which pages are you talking about? If you can give me a URL I can look

RE: What happened to the searchable list archive?

2005-05-22 Thread Steve Kirk
Hi Mark, Eyebrowse was the place that I used to rely on for searching, when I was active on the list up until a few months back. When I returned to the list last week, I found that eyebrowse no longer seemed to be in use, hence I checked out the official TC site to see what might now replace it.

RE: DBCP datasource works on 5.0.28 but fails on 5.5.9

2005-05-22 Thread Steve Kirk
Thanks again Nix, but latest mysql driver is *definitely* in %catalina_home%\common\lib : C:\dir %catalina_home%\common\lib Volume in drive C is BOOT Volume Serial Number is D4DF-165E Directory of c:\jakarta-tomcat-5.5.9\common\lib 19/05/2005 19:25DIR . 19/05/2005 19:25

OutOfMemory on FreeBSD

2005-05-22 Thread Lane
Hello, I'm trying to find how to send jvm parameters (-Xm128m) to the JVM during tomcat startup. I have an application (openreports) that fails with outofmemory exception intermittently. I have seen some references here and there, but nothing that indicates which tomcat (or java, [or

Re: DBCP datasource works on 5.0.28 but fails on 5.5.9

2005-05-22 Thread Lutz Zetzsche
Hi Steve, Am Sonntag, 22. Mai 2005 22:58 schrieb Steve Kirk: Thanks again Nix, but latest mysql driver is *definitely* in %catalina_home%\common\lib : Did you check that the MySQL driver is only there and not additionally in a second directory, i.e. WEB-INF/lib, which could confuse Tomcat?

Re: Reload on Tomcat 5.5

2005-05-22 Thread Stephen Souness
Please post a snippet of your config from server.xml with the relevant Host entry so that we can eliminate that as a possible cause of the problem. -- Stephen - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: DBCP datasource works on 5.0.28 but fails on 5.5.9

2005-05-22 Thread Steve Kirk
Lutz, I started replying to yr post including my full config, had nearly finished, then saw the problem - I had a leading space in the 'url' value within the Resource tag of my context.xml file. Grrr! I must have included it by accident when converting from the nested

Re: problem: Session invalidation in the servlet accessed via foreign context

2005-05-22 Thread Akoulov, Alexandre [IT]
Hi all, I'd greatly appreciate if you could shed a ray of light on the following problem ( see below) -Original Message- From: Akoulov, Alexandre [IT] Sent: Friday, 20 May 2005 11:15 AM To: Tomcat Users List Subject: problem: Session invalidation in the servlet accessed via foreign

Re: OutOfMemory on FreeBSD

2005-05-22 Thread Lane
Hey, I guess I can answer my own question! Don't you just love it when that happens! The makefile for tomcat5 on FreeBSD doesn't give the option to add additional parameters. There is probably a better way to do this than to hard-code more variables, but I'm not sure how to do it. So for

Re: OutOfMemory on FreeBSD

2005-05-22 Thread QM
On Sun, May 22, 2005 at 04:14:30PM -0500, Lane wrote: : I'm trying to find how to send jvm parameters (-Xm128m) to the JVM during : tomcat startup. I have an application (openreports) that fails with : outofmemory exception intermittently. You can set the environment variable JAVA_OPTS, e.g.

RE: problem: Session invalidation in the servlet accessed via foreign context

2005-05-22 Thread Akoulov, Alexandre [IT]
Thanks a lot, Steve, for your reply. No, I am not using SingleSignOn neither hoping to share the same session across contexts. The only thing I was testing is that I could invalidate and then create a new session in different scenarios. I ran the test with the java debugger and could observe

Re: Re: Problems with filters in 5.5.9?

2005-05-22 Thread Brandon Dove
Lutz -- thanks for the help but unfortunately even after copying the jar to the $TOMCAT_HOME/common/lib/ directory I still am having problems. :( Anyone else have any ideas? Cheers, Brandon On Sat, 21 May 2005, Lutz Zetzsche ([EMAIL PROTECTED]) wrote: Hi Brandon, Am Freitag, 20. Mai

Mysterious failures

2005-05-22 Thread Grant Ingersoll
Hi, Have been a long time user of TC, but first time poster. I am running 5.0.28 on OS X with PostgreSQL and Struts and connecting to Apache using mod_jk. I have a webapp deployed that is pretty mature. However, I am having some mysterious crashes of Tomcat that I haven't been able to get my

RE: Re: Problems with filters in 5.5.9?

2005-05-22 Thread Steve Kirk
Can you say more about how you upgraded? Specifically, were you very careful to migrate your config files across? -Original Message- From: Brandon Dove [mailto:[EMAIL PROTECTED] Sent: Monday 23 May 2005 02:14 To: Lutz Zetzsche Subject: Re: Re: Problems with filters in 5.5.9?

RE: problem: Session invalidation in the servlet accessed via foreign context

2005-05-22 Thread Steve Kirk
I'm not sure why you think there is a problem with invalidation. I'm no expert, but I'm not sure that I would expect the code below to work, because by default, servlets must not share sessions between webapps, and you are asking that a client request to one context is passed to another, and

RE: Mysterious failures

2005-05-22 Thread Steve Kirk
What is your actual logging config? Hazy memory, but don't you want debug=99 rather than debug=1 to get more detail? If you really can't get logging to work, you could insert System.out.println(blah) statements at key points around where you think the crash might be caused, in lieu of your log

Re: Reload on Tomcat 5.5

2005-05-22 Thread Parsons Technical Services
Robert, I would like to apologize for allowing myself to get into a flame war on your thread. My original intent was to point out an area that I had noticed had gotten a lot of postings and sounded similar to yours. Most of the posts made reference to the cache or workfiles and thus that is

New to struts

2005-05-22 Thread raja buddha
Hi, I am new to struts, I have installed tomcat on my system. Can any body please let me the steps how to configure and run the struts on my tomcat server. Please exaplane me what are the jar files are need and let me know where to keep thouse jar files. Please explain indetail.

Re: Reload on Tomcat 5.5

2005-05-22 Thread Robert Parsons
Parsons Technical Services wrote: Robert, I would like to apologize for allowing myself to get into a flame war on your thread. My original intent was to point out an area that I had noticed had gotten a lot of postings and sounded similar to yours. Most of the posts made reference to the

RE: problem: Session invalidation in the servlet accessed via foreign context

2005-05-22 Thread Akoulov, Alexandre [IT]
Thanks again, Steve, for your time. I am not trying to share sessions between different apps. I just want to ensure that when we're programmatically accessing web application in the different context it can do its own session management (ie invalidate / create new ones) -Original