decompile java class

2006-07-26 Thread Tomcat
Hello I am trying to decompile the java class file with javap command but it returns my-class-name.class contains some-other-package so I am unable to decompile it . is any one has experience with javap command ? how can I decompile a class that cotains other package or classes. I am aware

Install tomcat on a linux (suse) V-Server (Strato)

2006-07-26 Thread heinz rübezahl
Hi, i tried to install a tomcat server on a linux (suse) V-Server of strato. But it doesn't work! I had sucess at windows but anyway. I would be really thankful if you could give me some hints / tutorials / ... . Environment: - on the server have been already installed Suse, Apache2, Java

AW: mod-jk loadbalancing: Tomcat is down or refused connection. No response has been sent to the client (yet)

2006-07-26 Thread Michael Huettermann
Hi Rainer, Thanks for the hint. :) Michael -Ursprüngliche Nachricht- Von: Rainer Jung [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 25. Juli 2006 20:39 An: Tomcat Users List Betreff: Re: mod-jk loadbalancing: Tomcat is down or refused connection. No response has been sent to the

Re: decompile java class

2006-07-26 Thread Mohsen Saboorian
Use JAD instead. It is quite simple and fast. http://www.kpdus.com/jad.html On 7/26/06, Tomcat [EMAIL PROTECTED] wrote: Hello I am trying to decompile the java class file with javap command but it returns my-class-name.class contains some-other-package so I am unable to decompile it . is

JSP 2.0 tag files slowing development/deployment

2006-07-26 Thread John Cherouvim
Hello I'm building a mid scale web application for use within an intranet. I'm using a custom web framework to handle flow, user input, validations, persistence with hibernate and views with JSP and JSP 2.0 tag files. I use tomcat 5.0.28 and in particular this feature it has where you can

Re: JSP 2.0 tag files slowing development/deployment

2006-07-26 Thread Edmund Urbani
John Cherouvim wrote: Hello I'm building a mid scale web application for use within an intranet. I'm using a custom web framework to handle flow, user input, validations, persistence with hibernate and views with JSP and JSP 2.0 tag files. I use tomcat 5.0.28 and in particular this feature

RE: JSP 2.0 tag files slowing development/deployment

2006-07-26 Thread Tejas Bavishi
Hi I had once worked on an application with approximately 40 tags. I had an Ant task that compiled these tags and build a jar file. Then the ant task would also deploy it on tomcat and restart the webapp. The webapp restart time was very low and also client http request servicing was very quick.

Re: decompile java class

2006-07-26 Thread Tomcat
Thanks Mohsen for your reply, but I can not download and use jad or other decompilers, please let me know if you know how to decompile the java class that contains another class. Thanks Mohsen Saboorian wrote: Use JAD instead. It is quite simple and fast. http://www.kpdus.com/jad.html On

Re: Cannot protect with Valve Tomcat 5.5.17 Manager Application ( WindowsEnvironment - JRE 5.0)

2006-07-26 Thread Alain . Vandermeersch
Thanks Christopher for your response. Stupid oversight. I corrected the r to R in the classname, but I got then another exception when the context was specified in server.xml Jul 26, 2006 10:11:34 AM org.apache.tomcat.util.digester.Digester endElement SEVERE: End event threw exception

Tomcat5.5 and IIS 6.0 problem

2006-07-26 Thread Uday K Sarvasiddhi
Hi , I'm trying to do an installation of Tomcat 5.5 and IIS 6.0 on a Windows 2003 server box . I am running into problems because I can not get the ISAPI Filter (DLL) to load. The arrow is always red and down (never green and up) and the service log shows that the filter fails to load each

RE: JSP class loader

2006-07-26 Thread Nikita Belov
Chris, As article says, container drops all reference to classloader during web-app undeploy. This allows GC to remove classloader and free PermGen. In our system, JSP deployed inside web-app without web-app redeply. So references to ClassLoader aren't dropped. Aah, I didn't realize that

Re: Install tomcat on a linux (suse) V-Server (Strato)

2006-07-26 Thread David Smith
Output is redirected to catalina.out in the logs directory. Take a look at that for details on what is/isn't happening. --David heinz rübezahl wrote: Hi, i tried to install a tomcat server on a linux (suse) V-Server of strato. But it doesn't work! I had sucess at windows but anyway. I would

Re: Help needed HTTP response header

2006-07-26 Thread Mark Thomas
Surya Bob wrote: Hi David, Thank you David .Actually we are using Tomcat Version: Tomcat 5.5.16 It would be great if you could tell me how to suppress the server name in Connectors. Ur help will be much appreciated http://tomcat.apache.org/tomcat-5.5-doc/config/http.html

Re: Cannot protect with Valve Tomcat 5.5.17 Manager Application ( Windows Environment - JRE 5.0)

2006-07-26 Thread Mark Thomas
[EMAIL PROTECTED] wrote: Valve className=org.apache.catalina.valves.remoteAddrValve allow=127.0.0.1/ You need to read http://tomcat.apache.org/tomcat-5.5-doc/config/valve.html more carefully. A quick look at your config shows: - The className attribute is wrong. It should be

Re: JSP 2.0 tag files slowing development/deployment

2006-07-26 Thread Tim Funk
Yes tomcat 5.5.17 would speed things up since the Eclipse compiler is used and is faster. You should ALWAYS precompile your webapp when placing it into production. It eliminates any compile penalties as well as validates that everything DOES compile before your deploy. Uploading anything to

Tomcat creates a jsessionid cookie when session timeouts

2006-07-26 Thread Luis . Amorim
Hi there. I have the following problem occuring in my web application. I am using struts and I am using the url rewriting method for session maintenance, but when a timeout occurs the tomcat application server sets a cookie named jsessionid (used for session tracking purposes) with a new

Re: Possible to send 503 status over JK?

2006-07-26 Thread Len Popp
I'm not sure why it works that way. I guess the idea is that if Tomcat has generated an error page, Apache shouldn't mess with it. When Tomcat is down the situation is different - the error comes from Apache (mod_jk), not Tomcat, so Apache is reponsible for the status code and error page. -- Len

Re: extending org.apache.catalina.Authenticat

2006-07-26 Thread Christopher Schultz
Ferindo, I'm trying to extend my basic JDBC Realm form authentication within my web app to, in addition to checking for userid and password, also check to make users' passwords aren't too old and force them to update their passwords. I have done this with a filter that gets applied after the

Re: decompile java class

2006-07-26 Thread Christopher Schultz
Umm... Tomcat, I am trying to decompile the java class file with javap command but it returns my-class-name.class contains some-other-package so I am unable to decompile it . Why are you unable to decompile it? Please post the command you used and the resulting output. Don't forget to use

Re: Permission problem

2006-07-26 Thread Garthfield Carter
How are you uploading via FTP ? Li wrote: Hi all, I had a struts webapp remotely running with tomcat (started using startup.sh, not catalina.sh start -security) in Fedora Core 4 machine. When I was trying to upload from my local machine. uploading failed. The dir which stores the uploaded

Re: Possible to send 503 status over JK?

2006-07-26 Thread Martin Gainty
From what I see without some sort of firewall or BigIP interceptor The best solution is a Tomcat valve In this way Tomcat can detect *longer than unexpected* connect errors M- * This email message and any files transmitted with

RE: Possible to send 503 status over JK?

2006-07-26 Thread Rick G
I'll do some looking when I have a chance to see if I can figure out what is different between tomcats 503 and mod_jk's. Off the top of my head, the Tomcat 503 is returning content (the generated error page), where I'm guessing when tomcat is down and mod_jk returns the 503, there most likely is

Re: JSP 2.0 tag files slowing development/deployment

2006-07-26 Thread Tim Funk
http://marc.theaimsgroup.com/?l=tomcat-userm=108999588415291w=2 -Tim John Cherouvim wrote: Thanks everyone for your replies. I precompile my JSPs/tags from within netbeans 5.0. It produces a generated directory inside build. Placing the contents of build\generated\classes\org folder in

RE: Problems with IE6, AJP1.3, Apache httpd and tomcat

2006-07-26 Thread Rick G
Robert, Do you have some sample script/servlet that you can reliably reproduce the issue that I could try? If not, could you let me know a bit more about the operation, frequency of the occurrence? -Rick -Original Message- From: Robert [mailto:[EMAIL PROTECTED] Posted At: Tuesday,

Re: Where is my Tomcat

2006-07-26 Thread Martin Gainty
Now that I see the exceptions from your log I can see you have some old and or corrupted version sitting in the Tomcat work folder so I would.. stop Tomcat net stop Tomcat5/sh shutdown.sh delete ALL of the stuff from the Tomcat work folder del/rm %TOMCAT_HOME%/work/*.* make sure the folder is

Re: Tomcat creates a jsessionid cookie when session timeouts

2006-07-26 Thread Luis . Amorim
By the way, this behaviour only happens in Mozilla/Firefox, it does not happen in Internet Explorer. Regards, Luís Amorim Luis AMORIM/PT/[EMAIL PROTECTED] 26-07-2006 13:10 Please respond to Tomcat Users List To: users@tomcat.apache.org cc: Subject:

Shutdown Problems with Tomcat

2006-07-26 Thread Mark van Wyk
Hi Folks, Apparently this is quite a common problem. It's important for me to solve though. I'd appreciate any advice I can get. Please note that I'm not a Java expert. Just getting Liferay working was a miracle achievement. I'm also not a Linux guru, but manage to get my way around with both,

Bandwidth Profiler?

2006-07-26 Thread Michael Partheil
Hi! I'm looking for a way to locally simulate a slow network connection with Apache Tomcat 5.5.9 running on Mac OS X 10.4.6 and Java 1.4.2. I need this to test how my web application works for users with slow internet connections. Macromedia Flash has a feature like this wich is called

Re: Bandwidth Profiler?

2006-07-26 Thread Garthfield Carter
http://www.cohprog.com/mod_bandwidth.html Michael Partheil wrote: Hi! I'm looking for a way to locally simulate a slow network connection with Apache Tomcat 5.5.9 running on Mac OS X 10.4.6 and Java 1.4.2. I need this to test how my web application works for users with slow internet

configuration: Apache or Tomcat

2006-07-26 Thread Juba
Please, I've already posted this question twice and nobody help me. My problem is that I created on address to my application through the file httpd.conf of Apache pointing to the server where are installed Tomcat and my application. When I access the application by this address, the Tomcat

Re: Bandwidth Profiler?

2006-07-26 Thread David Kerber
A dialup modem usually works well for this! Michael Partheil wrote: Hi! I'm looking for a way to locally simulate a slow network connection with Apache Tomcat 5.5.9 running on Mac OS X 10.4.6 and Java 1.4.2. I need this to test how my web application works for users with slow internet

Re: Where is my Tomcat

2006-07-26 Thread OOzy Pal
On 7/26/06, Martin Gainty [EMAIL PROTECTED] wrote: Now that I see the exceptions from your log I can see you have some old and or corrupted version sitting in the Tomcat work folder so I would.. stop Tomcat net stop Tomcat5/sh shutdown.sh delete ALL of the stuff from the Tomcat work folder

RE: Possible to send 503 status over JK?

2006-07-26 Thread Propes, Barry L
are the HTML error pages created dynamically? Are or they where they can be extracted (presumably out of a jar file) and then edited and the jar recompiled? I don't find the docs anywhere within my Tomcat version (4.1.3). -Original Message- From: Len Popp [mailto:[EMAIL PROTECTED] Sent:

RE: extending org.apache.catalina.Authenticat

2006-07-26 Thread Propes, Barry L
Open WinZip (download it if you don't have it). Drag drop the jar into it, you'll see the files. They don't seem to include much source code...just the compiled classes, so it appears. the authenticators.properties file does include the types of authentication, and which authenticator

Re: Permission problem

2006-07-26 Thread Markus Schönhaber
Li wrote: I had a struts webapp remotely running with tomcat (started using startup.sh, not catalina.sh start -security) in Fedora Core 4 machine. When I was trying to upload from my local machine. uploading failed. The dir which stores the uploaded files is out of tomcat home dir, i gave

Re: Permission problem

2006-07-26 Thread Garthfield Carter
When you install it it asks you to enable it or not. The install has it selected enabled by default so if you just hit next, next etc then yes it is enabled. Markus Schönhaber wrote: Li wrote: I had a struts webapp remotely running with tomcat (started using startup.sh, not catalina.sh

Re: Permission problem

2006-07-26 Thread Garthfield Carter
To disable Selinux at boot: http://fedora.redhat.com/docs/selinux-faq-fc3/index.html#id2825880 Garthfield Carter wrote: When you install it it asks you to enable it or not. The install has it selected enabled by default so if you just hit next, next etc then yes it is enabled. Markus

Re: Possible to send 503 status over JK?

2006-07-26 Thread Len Popp
The default error page is hard-coded in org.apache.catalina.valves.ErrorReportValve.report() -- Len On 7/26/06, Propes, Barry L [EMAIL PROTECTED] wrote: are the HTML error pages created dynamically? Are or they where they can be extracted (presumably out of a jar file) and then edited and the

RE: Possible to send 503 status over JK?

2006-07-26 Thread Propes, Barry L
ok, thanks. -Original Message- From: Len Popp [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 26, 2006 10:48 AM To: Tomcat Users List Subject: Re: Possible to send 503 status over JK? The default error page is hard-coded in org.apache.catalina.valves.ErrorReportValve.report() -- Len

Wtd: Logging configuration for Tomcat 5.5.17 to rotate access logs daily

2006-07-26 Thread Peter Crowther
Asked on behalf of a colleague. I'm sure someone out there has already done this... Colleague has a vanilla download of Tomcat 5.5.17. They want to use it in production, and want to perform daily analysis of accesses. Ideally, therefore, they want daily log file rotation for the access log. I

Re: Logging configuration for Tomcat 5.5.17 to rotate access logs daily

2006-07-26 Thread Martin Gainty
-DataMine the log thru any language/script that supports regular expressions perl/sed of log (text) files -setup a Valve http://tomcat.apache.org/tomcat-5.5-doc/config/valve.html (specifically RequestDumperValve) to capture the access HTH M-

lost jsp session on tomcat

2006-07-26 Thread rache
I'm currently having problems with getting session data in the jsp. The data was set in the session in a servlet. The jsp is just an href link from the current page. When its clicked, it doesn't load up because of an exception thrown when it can't find the session data. This works when the jsp is

Response time banding

2006-07-26 Thread Edward Hibbert
Odd one, this. I'm posting looking for off the wall suggestions. Though not too off the wall, please. We have an application running under Tomcat. If we analyse the response times as measured by the access log, then we see that for the same GET operation there is a distribution of response

RE: Response time banding

2006-07-26 Thread Gordon Smith
Depending on your application server topology, you might see the larger response times as a result of bandwidth limiting or network configuration. The issue could also be due to database access (e.g. table locking issues that are shown during the longer response times). Short term DNS

apache not talking to tomcat w/ mod_jk

2006-07-26 Thread Ian Caswell
I'm an OS guy, so applications are new to me. Any help is appreciated. I'm trying to integrate apache and tomcat w/ mod_jk. Regular html pages show up fine, but jsp pages do not. I don't think apache is talking to tomcat like it should. I'm not sure where the problem lies; netstat -an shows

RE: apache not talking to tomcat w/ mod_jk

2006-07-26 Thread Biernesser, Beth
Do you have the application referenced in your mod_jk.conf file? -Original Message- From: Ian Caswell [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 26, 2006 3:04 PM To: users@tomcat.apache.org Subject: apache not talking to tomcat w/ mod_jk I'm an OS guy, so applications are new to

RE: apache not talking to tomcat w/ mod_jk

2006-07-26 Thread Ian Caswell
mod_jk.conf i have is below, I don't have an app up yet, just running a simple HelloWorld.jsp i snagged from a website. None of the docs i've read say that needs to go into the mod_jk.conf file. Am I reading wrong info? I'm not getting a 404 when i try to load it, I just get a blank page.

Re: Bandwidth Profiler?

2006-07-26 Thread Michael Partheil
Hi again! As far as I know (but I'm new to Apache Tomcat) mod_bandwidth only works if you use the Tomcat Servlet Container together with the real Apache Server, right? Is there a way to achieve similar functionality like mod_bandwidth when using Tomcat without a Connector to Apache?

Re: apache not talking to tomcat w/ mod_jk

2006-07-26 Thread Kim Albee
probably something you've made sure to do, but are you loading mod_jk.so in the httpd.conf? Kim :-) On 7/26/06, Ian Caswell [EMAIL PROTECTED] wrote: I'm an OS guy, so applications are new to me. Any help is appreciated. I'm trying to integrate apache and tomcat w/ mod_jk. Regular html pages

Re: Bandwidth Profiler?

2006-07-26 Thread Garthfield Carter
I'm not aware of any such project on the Tomcat side of things unfortunately. It's not that difficult to install the Tomcat Connector though tbh. I've used mod_bandwidth before and it works extremely well, you'll be impressed. Garthfield Michael Partheil wrote: Hi again! As far as I know

Re: apache not talking to tomcat w/ mod_jk

2006-07-26 Thread Ian Caswell
It's in httpd.conf, and i don't see any errors in the httpd logs about it, but i don't know how to verify it's loaded. Is there a way for apache to show loaded modules? --- Kim Albee [EMAIL PROTECTED] wrote: probably something you've made sure to do, but are you loading mod_jk.so in the

Re: configuration: Apache or Tomcat

2006-07-26 Thread John Kojo Ampia - Addison
My problem is that I created on address to my application through the file httpd.conf of Apache pointing to the server where are installed Tomcat and my application. Can you elaborate on this? what are you using to connect the two servers? mod_jk or mod_proxy? When I access the

Re: configuration: Apache or Tomcat

2006-07-26 Thread John Kojo Ampia - Addison
My problem is that I created on address to my application through the file httpd.conf of Apache pointing to the server where are installed Tomcat and my application. Can you elaborate on this? what are you using to connect the two servers? mod_jk or mod_proxy? When I access the

Re: configuration: Apache or Tomcat

2006-07-26 Thread John Kojo Ampia - Addison
My problem is that I created on address to my application through the file httpd.conf of Apache pointing to the server where are installed Tomcat and my application. Can you elaborate on this? what are you using to connect the two servers? mod_jk or mod_proxy? When I access the

Re: apache not talking to tomcat w/ mod_jk

2006-07-26 Thread John Kojo Ampia - Addison
have you added an Include line to the auto folder of the tomcat conf directory? If so then check your tomcat logs for error messages... If there aren't any introduce some intentional errors and see if server.xml and httpd.conf are being loaded at all. Then check with all the available

Re: Tomcat5.5 and IIS 6.0 problem

2006-07-26 Thread Pulkit Singhal
- JK connector - ISAPI Redirector: isapi_redirect.msihttp://tg-corpserver.cup.hp.com:8080/corpwiki/attach?page=TomcatConnectors%2Fisapi_redirect.msiis an Installer package for IIS 5 and later Web Server that takes care of all the configuration

RE: Response time banding

2006-07-26 Thread Robert Harper
One thing to consider is that the times may not be totally in synch. Some threads pending a write to the log might get interrupted while another thread runs. You may see log entries out of order. I have seen this myself and have added System.out.flush() to my logger. It helps but still does not

Howto configure tomcat on virtual hosts

2006-07-26 Thread Uwe Petrasch
Hello, can anybody explain howto configure tomcat to run two different applications on a W2k3 server with IIS6 as Webserver and two IP's and the same name: 192.168.111.11/app (Dir.Service Auth) - Tomcat/app - e:/app1/ W2K3-IIS6 -

Re: apache not talking to tomcat w/ mod_jk

2006-07-26 Thread Hassan Schroeder
On 7/26/06, Ian Caswell [EMAIL PROTECTED] wrote: , but i don't know how to verify it's loaded. Is there a way for apache to show loaded modules? $APACHE_HOME/bin/apachectl -M -- Hassan Schroeder [EMAIL PROTECTED]

Re: apache not talking to tomcat w/ mod_jk

2006-07-26 Thread Kim Albee
have you looked in the mod_jk.log? is it getting created, and is it saying anything? you can set the debug level to 4 in the workers.properties file and then see what it's saying about connecting to tomcat. Kim :-) On 7/26/06, Ian Caswell [EMAIL PROTECTED] wrote: It's in httpd.conf, and i

Re: Shutdown Problems with Tomcat

2006-07-26 Thread Shankar Unni
Mark van Wyk wrote: tcp4 0 0 localhost.8005 *.*LISTEN tcp46 0 0 *.8009 *.*LISTEN tcp46 0 0 *.http-alt *.*LISTEN Somehow, that feels right, although I don't really

[ANNOUNCE] New article: The AjaxParts Taglib from Java Web Parts: AJAX for Java Developers the Easy (yet powerful) Way!

2006-07-26 Thread Frank W. Zammetti
Hi everyone, I've gotten a number of requests for an article on AjaxParts Taglib, and I finally got around to writing it :) You can check it out here: http://www.omnytex.com/articles If you have never heard of AjaxParts Taglib before, in brief, AjaxParts Taglib, a component of the Java Web

Re: Tomcat Connectors versioning

2006-07-26 Thread Mark Thomas
The sequence of version numbers is: 1.2.1, 1.2.2, ..., 1.2.9, 1.2.10, 1.2.11,... Therefore, 1.2.15 is newer than 1.2.9 Each release is given the next number in the sequence. This might not look correct to a mathematician but then again neither does a number like 1.2.6 ! Mark Propes, Barry L

Re: Tomcat5.5 and IIS 6.0 problem

2006-07-26 Thread Mark Thomas
When starting a new thread (ie sending a message to the list about a new topic) please do not reply to an existing message and change the subject line. To many of the list archiving services and mail clients used by list subscribers this makes your new message appear as part of the old thread.

Re: BOOBIES!

2006-07-26 Thread Marc Richards
Dude. If you don't like boobies so much, stop sending them to everybodys' mailboxes. Have your little war outside of my inbox so I can work. -marc --- Dakota Jack [EMAIL PROTECTED] wrote: With the huge number of issue covered in the past and what I consider to be very good documentation, I

Re: [OT?] is there a way to map an application URL on tomcat like: http://a.com/app1 to http://app1.a.com/

2006-07-26 Thread Mark Thomas
When starting a new thread (ie sending a message to the list about a new topic) please do not reply to an existing message and change the subject line. To many of the list archiving services and mail clients used by list subscribers this makes your new message appear as part of the old thread.

Re: [ANNOUNCE] New article: The AjaxParts Taglib from Java Web Parts: AJAX for Java Developers the Easy (yet powerful) Way!

2006-07-26 Thread Michael Jouravlev
On 7/26/06, Frank W. Zammetti [EMAIL PROTECTED] wrote: Hi everyone, I've gotten a number of requests for an article on AjaxParts Taglib, and I finally got around to writing it :) You can check it out here: http://www.omnytex.com/articles If you have never heard of AjaxParts Taglib before, in

Re: [ANNOUNCE] New article: The AjaxParts Taglib from Java Web Parts: AJAX for Java Developers the Easy (yet powerful) Way!

2006-07-26 Thread Frank W. Zammetti
Thanks Michael, I appreciate you taking the time to look! Excellent question... the answer is that the code that APT writes into the onClick handler for the button will append itself onto whatever is there already, it WILL NOT overwrite your existing code. This wasn't always true, but is as

Re: apache not talking to tomcat w/ mod_jk

2006-07-26 Thread Ian Caswell
I set mod_jk to log level debug, and saw it was telling apache 2No.Host.matches.server.name. Did some googling, and some sites say it's a permissions issue, but my startup script chowns everything to tomcat One page i found said it may be there's no default context in server.xml.

Re: Permission problem

2006-07-26 Thread Li
Hi, I am not uploading via FTP, but using application through webapp, the uploaded file has been successfully stored into remote server's RAM, but unable to write to the server's HD. On 7/26/06, Garthfield Carter [EMAIL PROTECTED] wrote: To disable Selinux at boot:

Changing the context root in Tomcat 5.5.17

2006-07-26 Thread John Wang
I'm using the portal platform liferay v4.0.0 with Tomcat 5.5.17, on XP SP2 and mySQL and JDK1.5. Right now, despite all the configurations that I used for a previous version of liferay and tomcat, I cannot get the context root to be changed. In other words, I want the root address to be changed

Tomcat and MySQL error

2006-07-26 Thread DK
Hello all, I am new to this configuration and working on an exisitng website with MySQL database. There is a change in the domain name / IP address and after the change in IP address I am not able to connect to the database and I get this error when tomcat is started. Caused by:

Re: [OT] decompile java class

2006-07-26 Thread Bob Hall
Tomcat wrote: --- Tomcat [EMAIL PROTECTED] wrote: Thanks Mohsen for your reply, but I can not download and use jad or other decompilers, please let me know if you know how to decompile the java class that contains another class. Thanks $ javap -help $ javap -classpath And a proper name

Re: Tomcat and MySQL error

2006-07-26 Thread Madhur K Tanwani
I'm not sure if you asked the question at the right place. Anyways, I think there would be some configuration file / code snippet which uses the www.old-domain.com:3306 while forming the connection URL, which is passed to the getConnection(url, username, pass) method. Hope it helps, Madhur.

RE: Tomcat creates a jsessionid cookie when session timeouts

2006-07-26 Thread Tejas Bavishi
Hi The session timeout will occur when the user does not perform any activity for a time longer than session timeout value. Since your app uses URL rewriting method of session maintenance, any request from the browser after session timeout, will still be sending the old jsessionid. To solve the