Re: Need help: Can't get Tomcat examples on Apache using mod_webapp.so

2002-08-28 Thread George Sexton
Address:127.0.0.1 Socket Count: 1 Server ID: -653512835 -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED] George Sexton MH Software, Inc. Voice: 303 438 9585 URL: http://www.mhsoftware.com -- To unsubscribe, e-mail

RE: JDBC Realm MS SQL 2000

2003-02-25 Thread George Sexton
Here is a working example: Realm name=IISRealm className=org.apache.catalina.realm.JDBCRealm debug=99 driverName=com.microsoft.jdbc.sqlserver.SQLServerDriver connectionURL=jdbc:microsoft:sqlserver://xxx.mhsoftware.com:1433;DatabaseNa me=MyData;ProgramName=My Web Application;SelectMethod=cursor

RE: [OT] Caching problems with IE after download

2003-03-08 Thread George Sexton
Look for redirects that don't have a return immediately after them. -Original Message- From: Prashanth Pushpagiri [mailto:[EMAIL PROTECTED] Sent: Friday, March 07, 2003 10:31 AM To: Tomcat Users List Subject: [OT] Caching problems with IE after download Hi everyone: This is more

RE: Realm with MS SQL Server

2003-03-13 Thread George Sexton
If you run SQL profiler what do you observe? -Original Message- From: Matthieu DELAHAIS [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2003 12:58 AM To: [EMAIL PROTECTED] Subject: Realm with MS SQL Server Hi all, I'm trying to use Realm with MS SQL Server. So I follow the

RE: I need a good driver for SQL Server

2003-03-13 Thread George Sexton
Download the JDBC driver from Microsoft's web site. -Original Message- From: Victor Gonzalez [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2003 2:55 PM To: 'Tomcat Users List'; [EMAIL PROTECTED] Subject: I need a good driver for SQL Server Importance: High Hi all, I need a good

RE: Connection to Remote SQL Server and IIS

2003-03-13 Thread George Sexton
/tomcat/tomcat-3.3-doc/tomcat-iis-howto.html 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: Victor Gonzalez [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2003 12:32 PM

RE: SMTP Logger

2003-03-25 Thread George Sexton
Here is a shell script to examine the logs for exceptions. I run mine every five minutes. #!/bin/sh ### # Tomcat Exception Log script. # # This script checks your tomcat log files for any lines containing # the word exception.

RE: status 404 when migrating from 4.0.4 to 4.1.24

2003-03-26 Thread George Sexton
My experience is that few other servlet engines enable an invoker by default. Many just don't have one. I re-wrote my application to use a web.xml mapping file for all servlets so that I would have better cross-engine compatibility. -Original Message- From: news [mailto:[EMAIL PROTECTED]

RE: connection pooling saga

2003-03-31 Thread George Sexton
And who needs views? They only obscure the true source of the data. And who needs sub-queries? You can always re-write your queries. They may not be as intuitive, but hey, it's blindingly fast eh? -Original Message- From: Filip Hanik [mailto:[EMAIL PROTECTED] Sent: Monday, March 31, 2003

RE: Seperate tomcats - one apache

2003-04-01 Thread George Sexton
I routinely run via the CATALINA_BASE method for multiple instances and have no problems. Using mod_jk, all you have to do is define the connectors to be on different ports, and then configure each servlet engine to run mod_jk on a different port. -Original Message- From: Steve Harris

RE: System cannot find the path specified !

2003-05-27 Thread George Sexton
Assuming CATALINA_HOME has already been set, then 4 should be: 4) C:\ %CATALINA_HOME%\bin\startup.bin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 9:57 AM To: [EMAIL PROTECTED] Subject: System cannot find the path specified ! Hello

RE: Tomcat STILL freezing - time to look at another app server?

2003-05-31 Thread George Sexton
line. I close all my resultsets and statements and connections. I could include all my code but there are thousands of lines and there seems to be no consistent line or lines that are causing the problem. -Original Message- From: George Sexton [mailto:[EMAIL PROTECTED

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: [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: HeadlessException: The chickens come home to roost!

2003-09-08 Thread George Sexton
I use -Djava.awt.headless=true to create graphs on the fly and never get this exception. -Original Message- From: Simon Brooke [mailto:[EMAIL PROTECTED] Sent: Monday, September 08, 2003 1:48 PM To: Tomcat Users List Subject: HeadlessException: The chickens come home to roost!

RE: Can JSP track users in a basic authentication protected realm ?

2003-09-20 Thread George Sexton
Can you explain how Tomcat will be able to tell whether the user has navigated away and returned, versus just taken some period of time before getting the next page? -Original Message- From: David [mailto:[EMAIL PROTECTED] Sent: Saturday, September 20, 2003 9:56 AM To: Tomcat User

RE: HTML quoting

2003-10-03 Thread George Sexton
Here is code that we use. It depends on our own variant of String Buffer, but you get the idea: public String htmlEncode(String cVal) { if (cVal==null || cVal.length()==0) { return ; } MHBuffer buf=new MHBuffer(cVal.length()2); final String[] aOld=

Admin Application

2003-11-05 Thread George Sexton
to configure the manager application for each virtual host? I guess another, perhaps better question is why does the Admin application not have controls to stop, start, and re-load contexts? George Sexton MH Software, Inc. Voice: 303 438 9585 http://www.mhsoftware.com

More Admin Application: Service Reloading Question

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

RequestDispatcher.include() on 5.0.14

2003-11-09 Thread George Sexton
. Is this an area where the spec changed, or is 5.0.14 broken? George Sexton MH Software, Inc. Voice: 303 438 9585 http://www.mhsoftware.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

RE: RequestDispatcher.include() on 5.0.14

2003-11-09 Thread George Sexton
, or is 5.0.14 broken? George Sexton MH Software, Inc. Voice: 303 438 9585 http://www.mhsoftware.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

RE: RequestDispatcher.include() on 5.0.14

2003-11-10 Thread George Sexton
that the application works correctly on 4.1.29 for both ROOT and non-ROOT contexts. Is this an area where the spec changed, or is 5.0.14 broken? George Sexton MH Software, Inc. Voice: 303 438 9585 http://www.mhsoftware.com

RE: RequestDispatcher.include() on 5.0.14

2003-11-10 Thread George Sexton
Maybe I will try some more testing. The one thing I haven't replicated is that the problem machine is running 3 virtual hosts. -Original Message- From: George Sexton [mailto:[EMAIL PROTECTED] Sent: Monday, November 10, 2003 10:23 AM To: 'Tomcat Users List' Subject: RE

RE: RequestDispatcher.include() on 5.0.14

2003-11-10 Thread George Sexton
thing to do here? 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: George Sexton [mailto:[EMAIL PROTECTED] Sent: Monday, November 10, 2003 10:41 AM To: 'Tomcat Users List

RE: Tomcat Settings and Performance

2003-11-14 Thread George Sexton
It's nice to see someone that I agree with on performance optimization. So many people take either a dogmatic, or a scattershot approach to optimization. The most important thing is to measure. This quote sums it up: When you can measure what you are speaking about and express it in numbers you

RE: tomcat 4.1.29 and static content in non Latin (ISO-8895-1) characters

2003-11-18 Thread George Sexton
Have you tried running the page through native2ascii and then using the output of that as your JSP? -Original Message- From: Yavor Trapkov [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 18, 2003 1:16 AM To: [EMAIL PROTECTED] Subject: tomcat 4.1.29 and static content in non Latin

RE: Virtual Host to Redirect

2003-11-18 Thread George Sexton
Why don't you just set the DNS so that all hosts resolve to the same machine, and then set the default virtual host to have the files you want in it? George Sexton MH Software, Inc. Home of Connect Daily Web Calendar Software http://www.mhsoftware.com/connectdaily.htm Voice: 303 438 9585

RE: request.getremoteAddr() returning 127.0.0.1 (localhost)

2003-11-30 Thread George Sexton
What connector are you using? Are you fronting Tomcat with a web server? If so, how is it being done? -Original Message- From: Kilic, Hakan [mailto:[EMAIL PROTECTED] Sent: Friday, November 28, 2003 4:07 PM To: 'Tomcat Users List' Subject: request.getremoteAddr() returning 127.0.0.1

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

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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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-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: 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: 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: 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: 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: 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 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: [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: 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: 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

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: 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

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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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

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

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

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

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

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

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: 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

  1   2   >