RE: Database connections aren't being released...

2005-10-07 Thread George Sexton
Really, http://findbugs.sourceforge.net/ It analyzes source code and points out where resources are not freed. Of course the real problem with Findbugs is everyone is too embarrassed to say how well it worked George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585

RE: Database connections aren't being released...

2005-10-06 Thread George Sexton
As many people have pointed out, your app is probably not closing resources. A tool that can help find these is: http://findbugs.sourceforge.net/ George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Richard Road Runner [mailto

RE: Tracking Datasource Connection Usage?

2005-10-06 Thread George Sexton
http://findbugs.sourceforge.net/ Will tell you where in your code you are not freeing resources. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: JWM [mailto:[EMAIL PROTECTED] Sent: Thursday, October 06, 2005 2:09 PM

RE: Flexible way of defining application variables in text format?

2005-09-27 Thread George Sexton
I use a properties file stored in the WEB-INF directory. Modifying the web.xml is too error prone. Using another XML file is a lot harder than a properties file. Just use the servlet context getResourceAsStream(), and pass that to the properties.load() method. George Sexton MH Software, Inc. http

RE: Order of WebApp Loading

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

RE: The process tomcat {pid 1488.0000 } is leaking handles

2005-09-13 Thread George Sexton
in the forum. In almost every instance, it is the application that is leaking resources. Developers should run findbugs: http://findbugs.sourceforge.net/ And PMD http://pmd.sourceforge.net To scan their applications for resource leaks. George Sexton MH Software, Inc. http

RE: Context in separate file doesn't work

2005-09-02 Thread George Sexton
The context name and the file name have to match exactly. Also, root contexts need to have a path of . George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Trond Hersløv [mailto:[EMAIL PROTECTED] Sent: Friday, September 02, 2005

RE: Context in separate file doesn't work

2005-09-02 Thread George Sexton
One other thing, for a ROOT context, the file should be named ROOT.xml George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Trond Hersløv [mailto:[EMAIL PROTECTED] Sent: Friday, September 02, 2005 4:50 AM To: Tomcat Users List

RE: Running Tomcat 5.0.28 in server mode

2005-09-02 Thread George Sexton
What does really slow mean? That's a subjective assessment, not a quantititative value. How many requests per second? George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Zaki, Karim R UTCHQ [mailto:[EMAIL PROTECTED] Sent: Friday

RE: Running Tomcat 5.0.28 in server mode

2005-09-02 Thread George Sexton
P4. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Zaki, Karim R UTCHQ [mailto:[EMAIL PROTECTED] Sent: Friday, September 02, 2005 11:02 AM To: Tomcat Users List Subject: RE: Running Tomcat 5.0.28 in server mode Well, I

RE: Context in separate file doesn't work

2005-09-02 Thread George Sexton
I'd like to claim superior knowledge and intellect, but really I just did this one myself a few weeks ago. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Trond Hersløv [mailto:[EMAIL PROTECTED] Sent: Friday, September 02

RE: Advice for Hosting Many Individual Webapps?

2005-08-16 Thread George Sexton
port 80 to port 7080. Stop the instance running on port 7080. The downside is that any active sessions get bounced and have to re-login. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Seth Ladd [mailto:[EMAIL PROTECTED] Sent

RE: virtual host memory usage

2005-08-15 Thread George Sexton
You are correct. My suggestion was that you in one case had a file in the common/lib directory, while in another you had it in the WEB-INF/lib directory. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Oleg [mailto:[EMAIL

RE: virtual host memory usage

2005-08-13 Thread George Sexton
The obvious first guess is that you have a class that is in the host classloader, and not the common classloader, and that class is consuming large amounts of memory. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Oleg

RE: Tomcat and the HttpServletRequest Object

2005-08-12 Thread George Sexton
I see nothing in the specification that specifies the order of the elements returned in the enumeration. Why do you think this is a bug? George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Jeff Grangier [mailto:[EMAIL PROTECTED

RE: Tomcat and the HttpServletRequest Object

2005-08-12 Thread George Sexton
, and if the specification doesn't describe the behavior, you can't say anything about it. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Jeff Grangier [mailto:[EMAIL PROTECTED] Sent: Friday, August 12, 2005 12:19 PM To: 'Tomcat Users List

RE: tomcat and active directory

2005-08-11 Thread George Sexton
(container) in the tree. 2. Create a low powered user that has read access to the directory tree and configure the realm to bind as that user.. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Michal Kwiatek [mailto:[EMAIL PROTECTED

RE: tomcat and active directory

2005-08-11 Thread George Sexton
software. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Michal Kwiatek [mailto:[EMAIL PROTECTED] Sent: Thursday, August 11, 2005 9:30 AM To: Tomcat Users List Subject: RE: tomcat and active directory I have just seen

RE: Virtual host, routing, problems with localhost

2005-08-09 Thread George Sexton
Do you have a host entry in your server.xml with the name of localhost? George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Scott Purcell [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 09, 2005 8:26 AM To: tomcat-user

RE: Virtual host, routing, problems with localhost

2005-08-09 Thread George Sexton
. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Scott Purcell [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 09, 2005 10:43 AM To: Tomcat Users List Subject: RE: Virtual host, routing, problems with localhost Sorry

RE: Major fopaw

2005-08-05 Thread George Sexton
You mean Faux pas http://en.wikipedia.org/wiki/Faux_pas George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Jef Sullivan [mailto:[EMAIL PROTECTED] Sent: Friday, August 05, 2005 10:10 AM To: 'Tomcat Users List' Subject: Major

RE: HTTP/1.1 GZIP compression and its impact on server

2005-08-01 Thread George Sexton
) times. Needless to say, this can make your calendar noticeably faster to end users. Our testing indicates serviced per minute was reduced by 2.3% when GZIP compression is enabled. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message

RE: Servlet Concurrency Issues

2005-06-07 Thread George Sexton
You're probably using instance properties on the servlet object. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Michael Pasko [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 07, 2005 12:09 PM To: 'tomcat-user

RE: Poor Performance Tomcat5.5.7, Apache2.0.52, Solaris 9

2005-06-04 Thread George Sexton
500, and the utilization is around 5-10% during the day. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: BATCHELOR, SCOTT (CONTRACTOR) [mailto:[EMAIL PROTECTED] Sent: Thursday, June 02, 2005 8:52 AM To: tomcat-user

RE: .pst file type unknown in tomcat

2005-05-30 Thread George Sexton
.pst file mime type is not decalred by default in web.xml So, why don't you declare it? George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Marot Laurent [mailto:[EMAIL PROTECTED] Sent: Monday, May 30, 2005 2:33 PM To: Tomcat

RE: JRE vs. JDK for Tomcat

2005-05-29 Thread George Sexton
If you aren't using JSP, you can change the startup batch file to skip the test for the full JDK. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Iannis Hanen [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 18, 2005 7:59 PM

RE: filesystem independent tomcat [OT]

2005-05-02 Thread George Sexton
for temporary file space. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: sandy kumar [mailto:[EMAIL PROTECTED] Sent: Friday, April 29, 2005 2:56 AM To: Tomcat Users List Subject: filesystem independent tomcat [OT] Hi, I am

RE: non-root on 80

2005-04-04 Thread George Sexton
In Linux, the workaround is to run on port 8080, and then write an IPTables rule to forward port 80 to 8080. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of NetSQL Sent: Monday

RE: Wild Card Hosting

2005-03-24 Thread George Sexton
That doesn't do what I need. I have a very large, existing application that needs to pick up a parameter based on which host name is used. Changing the path structure will be hopelessly complicated. The issue of getting the DNS wild-carding to work is the client's issue. George Sexton MH

RE: Wild Card Hosting

2005-03-24 Thread George Sexton
, I'll just make an alias for the various hosts. It's probably going to top at at around 6-10 anyway. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Robert r. Sanders [mailto:[EMAIL PROTECTED] Sent: Thursday, March 24, 2005 9:26

RE: Problem migrating from 4.1.30 to 5.5.7

2005-03-24 Thread George Sexton
The conf/serviceName/hostname directory George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Hay, Markus [mailto:[EMAIL PROTECTED] Sent: Thursday, March 24, 2005 11:10 AM To: tomcat-user@jakarta.apache.org Subject: Problem

RE: Wild Card Hosting

2005-03-24 Thread George Sexton
Well, yes the machine has a fixed IP address. I don't care about the DNS resolution aspect. I want tomcat to wildcard forward to the right virtual host based on the name. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Drew

RE: Wild Card Hosting

2005-03-24 Thread George Sexton
Oh, I see where you are headed. One way to go would be to have a new service, with a new IP address, and make that the default host. That's out of the question since I host for so many people. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original

Wild Card Hosting

2005-03-23 Thread George Sexton
Does anyone know if Tomcat supports Wild card hosting? Can I specify a pattern say *.domain.com And have all requests get forwarded to a specific host? Making the host the default host is not an option, because there is already another default host that is used. George Sexton MH Software

RE: Wild Card Hosting

2005-03-23 Thread George Sexton
I'll try looking through the alias handling code and see how hard it would be to come up with something to cover it. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: QM [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 23, 2005

Document xmlValidation for Host

2005-03-22 Thread George Sexton
I noticed on the page: http://jakarta.apache.org/tomcat/tomcat-5.5-doc/config/host.html That xmlValidation is not documented on the host page. Also, it tools like xmlNameSpace is another attribute not documented. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585

Documentation Change Recommendation for Logging

2005-03-21 Thread George Sexton
For the page: http://jakarta.apache.org/tomcat/tomcat-5.5-doc/logging.html For the sample log4j.properties file, I would recommend changing: log4j.appender.R.File=${catalina.home}/logs/tomcat.log To log4j.appender.R.File=${catalina.base}/logs/tomcat.log George Sexton MH Software, Inc. http

RE: servlet api question ?

2005-03-21 Thread George Sexton
I have customers running my software on WebSphere WebLogic Orion/Oracle 9iAS Tomcat Resin Jrun With no specific modifications for any specific product. If you want to sell into an enterprise market, the ability to run on various enterprise servers is a winner. George Sexton MH Software, Inc

Admin Application

2005-03-21 Thread George Sexton
) at java.lang.Thread.run(Thread.java:534) George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: POST no longer working

2005-03-17 Thread George Sexton
You might want to refer to this FAQ: http://www.catb.org/~esr/faqs/smart-questions.html The stated goal of the FAQ is: How to ask questions of hackers in a way that makes it most likely that you'll get a useful answer. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438

RE: image upload

2005-03-15 Thread George Sexton
I think most people are moving to the Jakarta Commons File Upload jar. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Shannon Scott [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 15, 2005 10:07 AM To: tomcat-user

RE: Too many open files exception

2005-03-14 Thread George Sexton
Most likely, you are not properly closing resources like files and such, and a change in the Garbage collection is hurting you. My advice would be to run findbugs and fix any issues it points out. http://findbugs.sourceforge.net/ George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice

RE: tomcat freezes when accessing db after several queries

2005-03-14 Thread George Sexton
Look for something like this: Try { statement.execUupdate(some statement); } catch (SQLException se){ } Make sure that the catch has: conn.rollback(); In JDBC, a failed update leaves the underlying record locked until it is rolled back. George Sexton MH Software, Inc. http

RE: Date parsing

2005-03-08 Thread George Sexton
://www.mhsoftware.com/resources/jar/doc/com/MHSoftware/dates/SaneDate.ht ml You can download it from: http://www.mhsoftware.com/bin/MHS.zip George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Charles P. Killmer [mailto:[EMAIL

RE: Date parsing

2005-03-08 Thread George Sexton
to parsing to set up the expectation. In our software, we use the browser's accept-language to retreive a locale. The class as designed doesn't handle times. It's strictly a date class. Im thinking about writing a date/time class, but haven't yet. George Sexton MH Software, Inc. http

RE: Question for Tomcat Developers - How to Plug In Encryption for JDBC passwords

2005-02-28 Thread George Sexton
that credit card data would not be revealed even if the database were compromised. I don't see any shortcomings in it, but I haven't opened it up to public review before. http://www.mhsoftware.com/~gsexton/Crypto.html George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585

RE: Capitalizing names OT

2005-02-18 Thread George Sexton
If you are doing proper names, it's a lot harder than that. Some issues with names are: The Mac names McNeil, McKendry, and the other variants that are Mac. Names that contain an apostrophe O'Hara, O'Neil Then you have Generational qualifiers, III, IV, V George Sexton MH Software, Inc

RE: Tale of two servers

2005-02-11 Thread George Sexton
The most common thing for this kind of issue is DNS resolution. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 On Thu, 10 Feb 2005 01:19:10 -0800 (PST), Dola Woolfe [EMAIL PROTECTED] wrote: The offender is a super duper new dell desktop with 4gb of ram

RE: tomcat problem

2005-02-11 Thread George Sexton
I've seen this if the tags specified by the page are not available. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: ssk 2001 [mailto:[EMAIL PROTECTED] Sent: Friday, February 11, 2005 12:30 AM To: tomcat-user

RE: Running heavily loaded tomcat sites.

2005-02-10 Thread George Sexton
concatenation in StringBuffer.append() methods, and other non-optimal techniques. Stress test using a tool like Jmeter. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- On Wed, 09 Feb 2005 00:18:52 +0100, Wojciech Sobczuk [EMAIL

RE: outOfMemory exception under high load

2005-02-07 Thread George Sexton
I would suggest running findbugs: http://findbugs.sourceforge.net/ It has found issues in application code for other people on the list. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Michael Cornell [mailto:[EMAIL

RE: [OT]web development fee

2005-01-06 Thread George Sexton
far. I'll be the first to admit it could use some more features. Here are things I'm thinking of: Localization Support via Resource Bundles Actual Charge Clearing Support Additional Reports Re-Order Quantities and Notification Messages George Sexton MH Software

RE: Tomcat 5.0.28 running Windows 2003 Server CPU to 100%

2005-01-03 Thread George Sexton
I think it's something in Tomcat personally. I have had a customer report this with our Application, which when run under Tomcat on Unix will run for weeks at a time. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 _ From: David Bilodeau [mailto

RE: OutOfMemory Errors

2004-12-13 Thread George Sexton
You probably have a resource leak in your application. You might want to run FindBugs on it: http://findbugs.sourceforge.net/ George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Asim Alp [mailto:[EMAIL PROTECTED] Sent: Monday

RE: Tomcat JRE vs JDK Issue

2004-11-17 Thread George Sexton
One aside, the script (batch file) has an exit statement on the case where the JDK is not detected. This results in a mysterious window closing which causes a lot of hair pulling. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From

RE: Remote debugging a web app with Eclipse?

2004-11-14 Thread George Sexton
CATALINA_OPTS=-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=7100 -Djava.compiler=NONE -Dfile.encoding=ISO-8859-1 SET JAVA_HOME=C:\J2SDK1.4.2_04 %CATALINA_HOME%\bin\catalina.bat %1 %2 %3 %4 %5 %6 %7 %8 %9 George Sexton MH Software, Inc. http

RE: missing resource bundle shouldn't be

2004-09-06 Thread George Sexton
Different class loader. The JSP's are running in a class-loader with the application, while the common/lib jars are in a different class-loader where the WEB-INF/classes are not part of the search path. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585

ISAPI and SSI w/ IIS

2004-08-02 Thread George Sexton
on how I can do a server side include to a context URL? As a fallback, I can use some code to invoke the URL using a Microsoft.XMLHTTP control, and retrieving the body text. Any ideas are appreciated. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585

RE: WebSphere suuports servlets in /welcome-list does Tomcat?

2004-07-21 Thread George Sexton
I use Tomcat 5 and do this. Do you have a valid servlet mapping that points to the servlet? George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: R A [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 21, 2004 10:07 AM To: [EMAIL

RE: Do servlets as welcome-files work in TC5?

2004-07-15 Thread George Sexton
The problem is the case of your entry in the Welcome file list, veruss the case of your URL pattern. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: K.C. Baltz [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 14, 2004 3:22 PM

RE: [OT] The Way Java Handles Date

2004-04-03 Thread George Sexton
I got tired of it once and wrote this class. http://www.mhsoftware.com/resources/jar/doc/com/MHSoftware/dates/SaneDat e.html The totally brilliant thing about it is like xbase, date addition and subtraction are greatly simplified. George Sexton MH Software, Inc. Home of Connect Daily Web

RE:Digitally Signing Posts

2004-03-16 Thread George Sexton
Would you either A) Not sign posts to the group Or B) Sign the posts with a working certificate? Everytime I hit one of your messages, it locks my mail client up for 30 seconds. Warning: The Certificate Revocation List needed to verify the signing certificate is either unavailable or

RE: Help tomcat problem with memory

2004-02-27 Thread George Sexton
Why don't you find someone who understands memory usage for your operating system and have them explain the output of your commands to you. You have 700+MB being used as file cache. Your system is under no memory pressure. Your app is slow because 1) It's compiling JSPs, and this takes

RE: so many servlets

2004-02-09 Thread George Sexton
While you can use the invoker, other engines don't have an equivalent. If portability is at all important, you need to explicitly name them out. -Original Message- From: geoffj [mailto:[EMAIL PROTECTED] Sent: Monday, February 09, 2004 12:56 AM To: [EMAIL PROTECTED] Subject: so many

RE: Yet another OT question.

2004-02-03 Thread George Sexton
or the other. ok? I'm getting duplicate messages. Don't get me wrong, I appreciate your help. I just don't need the same message twice. -Original Message- From: George Sexton [mailto:[EMAIL PROTECTED] Sent: Monday, February 02, 2004 9:20 PM To: 'Tomcat Users List'; [EMAIL PROTECTED

RE: Yet another OT question.

2004-02-02 Thread George Sexton
Probably a flake in the Oracle driver. Check you are using the latest one. -Original Message- From: David Short [mailto:[EMAIL PROTECTED] Sent: Monday, February 02, 2004 4:18 PM To: 'Tomcat Users List' Subject: Yet another OT question. It seems like a slow day on the list so, thought

RE: Yet another OT question.

2004-02-02 Thread George Sexton
another OT question. I pulled the latest (1.2 for Oracle 8.1.7) off of Oracle's web site today. -Original Message- From: George Sexton [mailto:[EMAIL PROTECTED] Sent: Monday, February 02, 2004 6:33 PM To: 'Tomcat Users List'; [EMAIL PROTECTED] Subject: RE: Yet another OT question

RE: Yet another OT question.

2004-02-02 Thread George Sexton
(nothing was inserted) but that's it. No SQLException. There's got to be a way to catch an error like this. -Original Message- From: George Sexton [mailto:[EMAIL PROTECTED] Sent: Monday, February 02, 2004 8:10 PM To: 'Tomcat Users List'; [EMAIL PROTECTED] Subject: RE: Yet another OT

RE: RTFM

2004-01-14 Thread George Sexton
I generally don't think it is required to resort to things like this to get our attention. -Original Message- From: Jerald Powel [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 14, 2004 3:11 PM To: Tomcat Users List Subject: RTFM Hi, Now I have your attention, will

RE: RTFM

2004-01-14 Thread George Sexton
PROTECTED] Sent: Wednesday, January 14, 2004 5:33 PM To: Tomcat Users List Subject: RE: RTFM in traditional fashion, the subject was related to the contents of body of the email. George Sexton [EMAIL PROTECTED] wrote:I generally don't think it is required to resort to things like this to get our

RE: Invoking JSPs in batch like environment

2004-01-12 Thread George Sexton
If you are using UNIX, then wget is the answer. If you are using Windows, you will have to use Windows Scripting Host to create and instance of IE and retrieve the URL. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 1:42 AM To: [EMAIL

RE: Tomcat Deadlock

2004-01-09 Thread George Sexton
Using SQL Enterprise manager, find out what process is holding a lock, and what it's last statement was. You do know that you have to rollback failed update statements don't you? -Original Message- From: Hooper, Brian [mailto:[EMAIL PROTECTED] Sent: Friday, January 09, 2004 9:19 AM To:

RE: Microsoft SQL Server validation query

2004-01-09 Thread George Sexton
How about one of these: Select @@VERSION Or Select getdate() as CurrentDate -Original Message- From: Derek Mahar [mailto:[EMAIL PROTECTED] Sent: Thursday, January 08, 2004 8:15 AM To: Tomcat Users List Subject: Microsoft SQL Server validation query Does anyone happen to know which

RE: RE: virtual hosting? anyone succeed?

2004-01-06 Thread George Sexton
Using the Admin application, click on the service (Generally, Service (Catalina)). From the service actions dropdown, select the option to create a new host. -Original Message- From: 29djeo [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 06, 2004 8:56 AM To: George Sexton Cc: [EMAIL

RE: Have some questions, also possible contract work up for grabs

2004-01-03 Thread George Sexton
Stay away from hosting. Very few hosting companies have their act together. Buy your own hardware and co-locate it if you must. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, January 02, 2004 4:02 PM To: [EMAIL PROTECTED] Subject: Have some questions,

RE: How is catch{} code handled

2004-01-02 Thread George Sexton
Unfortunately, your logic is flawed. The major flaw is that sendRedirect() does not terminate processing of the servlet. IOW, this is happening: Servlet Invoked Sub-Routine Invoked SQLException Generated Exception Caught Send-Redirect to

RE: How is catch{} code handled

2004-01-02 Thread George Sexton
the caller to handle the exception. In general, the idea behind exceptions is that nobody checks return codes so let's use the compiler to force them to catch an error. George Sexton MH Software, Inc. Home of Connect Daily Web Calendar Software http://www.mhsoftware.com/connectdaily.htm Voice: 303 438 9585

RE: Admintool cannot save changes to servers.xml

2003-12-29 Thread George Sexton
] On Behalf Of [EMAIL PROTECTED] Sent: Monday, December 29, 2003 5:00 AM To: [EMAIL PROTECTED] Subject: Re: Admintool cannot save changes to servers.xml George Sexton wrote: Do the log files contain no information? Hi George, I tried with a clean installation and this time also checked the log

RE: Admintool cannot save changes to servers.xml

2003-12-28 Thread George Sexton
Do the log files contain no information? -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Sunday, December 28, 2003 2:06 AM To: [EMAIL PROTECTED] Subject: Re: Admintool cannot save changes to servers.xml George Sexton wrote: I use the admin

RE: Admintool cannot save changes to servers.xml

2003-12-27 Thread George Sexton
I use the admin app and it works for me. Does the user that Tomcat run under have permissions to the file and directory? -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Saturday, December 27, 2003 2:16 PM To: [EMAIL PROTECTED] Subject:

RE: StringBuffer Factory?

2003-12-27 Thread George Sexton
This is a really bad idea because of the implementation of StringBuffer.toString() and setLength(). http://developer.java.sun.com/developer/bugParade/bugs/4724129.html George Sexton MH Software, Inc. Home of Connect Daily Web Calendar Software http://www.mhsoftware.com/connectdaily.htm Voice

RE: Memory comsuption

2003-12-26 Thread George Sexton
I don't understand why you think you have a problem. You have a machine with 2GB of memory installed. 84MB is free RAM, and the OS is using 330MB of ram for cache buffers. Tomcat is using some 50MB of RAM. The machine is clearly not under any kind of memory stress FWIW, the memory options

RE: Memory comsuption

2003-12-26 Thread George Sexton
the others 50 or 70 java process with 50M of memory comsuption too? Daniel Alvarez ISP-InfoCom - Original Message - From: George Sexton [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Friday, December 26, 2003 3:30 PM Subject: RE: Memory comsuption I don't understand why you

RE: RES: TCP-FIN problem

2003-12-23 Thread George Sexton
Just one little detail with setContentLength(). If you are writing a string out, make really sure that your content length is correct. If it is not, the connection will stay open. A common mistake (at least one I have made) is to think that the character count in a buffer is the number of bytes

RE: postgres configuration

2003-12-22 Thread George Sexton
This is obviously not a Tomcat problem. Please ask your question in a forum for your operating system (probably the best place) or in a PostgreSQL forum. You may also want to refer to this document: http://www.catb.org/~esr/faqs/smart-questions.html -Original Message- From: [EMAIL

RE: virtual hosting? anyone succeed?

2003-12-21 Thread George Sexton
I run about 6-8 virtual hosts on one installation. I created them using the Admin application and had no problems. -Original Message- From: 29djeo [mailto:[EMAIL PROTECTED] Sent: Saturday, December 20, 2003 11:34 AM To: [EMAIL PROTECTED] Subject: virtual hosting? anyone succeed? Has

RE: A weird issue

2003-12-19 Thread George Sexton
Download the MS JDBC driver, and never use ODBJ-JDBC bridge. -Original Message- From: Cui Xiaojing-a13339 [mailto:[EMAIL PROTECTED] Sent: Friday, December 19, 2003 8:36 AM To: Tomcat Users List Subject: A weird issue Hello All, Now my software platform as below: Windows 2000

RE: Database Rollback doesn't work

2003-12-19 Thread George Sexton
I thought transactions were one of those features MySQL decided that real developers didn't need. Are you really certain mySQL Supports transactions in the relatively low version you are using? Also, I hope you don't need to scale. You are essentially locking the table until the mail goes or

RE: URGENT PLEASE HELP ME........................................

2003-12-17 Thread George Sexton
Try reading the documentation. The default invoker is disabled in 4.1.x. Either re-enable it, or create servlet/servlet mapping pairs in the web.xml file. -Original Message- From: Pinguti Sridevi [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 17, 2003 1:22 AM To: anand; javagroup;

RE: web administration tool and tomcat-users.xml

2003-12-15 Thread George Sexton
There is a real, bigger problem. Without looking at the source, my guess is that the parameters are not being parsed correctly and they are being treated as ISO-8859-1 and not UTF-8. This can happen when there is a mismatch between the character encoding sent from the browser, and the encoding

Re: javax.mail.SendFailedException: Sending failed

2003-12-12 Thread George Sexton
. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] George Sexton MH Software, Inc. Voice: 303 438 9585 URL: http://www.mhsoftware.com - To unsubscribe, e-mail: [EMAIL PROTECTED

RE: very basic winNT question

2003-12-11 Thread George Sexton
I think more likely, you need to increase your environment size by specifiying /E: in your command line to run CMD. -Original Message- From: Edson Alves Pereira [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 10, 2003 10:49 AM To: 'Tomcat-User List' Subject: very basic winNT

RE: Installing Manager tool

2003-12-08 Thread George Sexton
Did you set the privileged=true attribute in the context definition? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, December 08, 2003 2:44 AM To: [EMAIL PROTECTED] Subject: Installing Manager tool Hi, I installed Tomcat 4.1 to test the Manager

RE: Database pool problem

2003-12-08 Thread George Sexton
Why not go the extra mile and get a database that supports cutting edge features like views? PostgreSQL -Original Message- From: Edson Alves Pereira [mailto:[EMAIL PROTECTED] Sent: Monday, December 08, 2003 6:06 AM To: 'Tomcat Users List' Subject: RE: Database pool problem Of

RE: Lock on database file not being released...

2003-12-08 Thread George Sexton
is still showing as locked. Yaakov Chaikin Software Engineer BAE SYSTEMS 301-838-6899 (phone) 301-838-6802 (fax) [EMAIL PROTECTED] -Original Message- From: George Sexton [mailto:[EMAIL PROTECTED] Sent: Monday, December 08, 2003 1:11 AM To: 'Tomcat Users List' Subject: RE: Lock

RE: Lock on database file not being released...

2003-12-07 Thread George Sexton
A common problem in beginner JDBC is not performing a ROLLBACK when an update fails. Even when autocommit is set to TRUE, a failed update will leave the records locked in the database. Update statements should always be coded so that if an exception is thrown, a rollback is performed on the

RE: Lock on database file not being released...

2003-12-07 Thread George Sexton
One other question. What is the setting of AutoCommit? Are you setting it to TRUE? -Original Message- From: Chaikin, Yaakov Y (US SSA) [mailto:[EMAIL PROTECTED] Sent: Sunday, December 07, 2003 2:13 PM To: Tomcat Users List Subject: RE: Lock on database file not being released...

RE: Lock on database file not being released...

2003-12-07 Thread George Sexton
OK, I now think I know the issue. Try changing the entries for the ODBC connection. Specifically change: ImplicitCommitSync And UserCommitSync The docs are inconsistent on their usage, and I think the drivers vary depending upon the version of the Jet engine you are using. Anyhow, adjust

RE: Lock on database file not being released...

2003-12-07 Thread George Sexton
for the connection pooling? Please elaborate on what you think I should do. Thanks. Yaakov Chaikin Software Engineer BAE SYSTEMS 301-838-6899 (phone) 301-838-6802 (fax) [EMAIL PROTECTED] -Original Message- From: George Sexton [mailto:[EMAIL PROTECTED] Sent: Sunday, December 07, 2003 11:28

RE: Tomcat-Eclipse question

2003-12-03 Thread George Sexton
-Djava.compiler=NONE SET JAVA_HOME=C:\J2SDK1.4.1_01 %CATALINA_HOME%\bin\catalina.bat %1 %2 %3 %4 %5 %6 %7 %8 %9 George Sexton MH Software, Inc. Home of Connect Daily Web Calendar Software http://www.mhsoftware.com/connectdaily.htm Voice: 303 438 9585 -Original Message- From: Atreya Basu [mailto

  1   2   >