Re: Is there a native JDBC driver for MS Access?

2002-04-06 Thread Matt Egyhazy
i agree, access is a very poor choice of db for ANY production system. matt - Original Message - From: Craig R. McClanahan [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Saturday, April 06, 2002 8:08 PM Subject: Re: Is there a native JDBC driver for MS Access? On

Re: mod_jk seems to corrupt JPEGs

2002-03-23 Thread Matt Egyhazy
what do you mean by corrupted? also, if you are changing the size of the img, using size controls in the img tag, it might make your image blurry and ugly. matt - Original Message - From: Reynir Hübner [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Saturday, March 23,

Re: Off Topic: Free J2EE IDE: Which one?

2002-03-19 Thread Matt Egyhazy
i havent done ejb in forte community edition, however, it comes with tc 3.3 and you can debug servlets internally. i have not tried remote debugging. matt - Original Message - From: Bing Zhang [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 19, 2002 11:34 AM Subject: Off

Re: Newbie: Servlet under Windows does not run

2002-03-17 Thread Matt Egyhazy
what is the package name in the .java file of your censusquery class? matt - Original Message - From: Jim Cobban [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: John W Austin [EMAIL PROTECTED] Sent: Sunday, March 17, 2002 3:20 PM Subject: Newbie: Servlet under Windows does not run I am

Re: init parameter and web.xml cant get it to work?

2002-03-14 Thread Matt Egyhazy
try message = getInitParameter(message); matt - Original Message - From: Leon Vermaak [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, March 14, 2002 5:00 PM Subject: init parameter and web.xml cant get it to work? I have Tomcat 4.0 running as a service on

Re: Writing beans

2002-03-06 Thread Matt Egyhazy
this mailing list isnt one where we do your homework or code for your job, at least, i dont. anyway, what you have pasted is a misuse of jsp. i suggest buying a j2ee book, the wrox ones are good. from your description, i dont think you really want to use a bean to do this... matt -

Re: Exception report:Errors

2002-02-21 Thread Matt Egyhazy
hello, you need to import the sql classes you are using. this is a user error, there is no problem with tomcat. matt fusterjj wrote: org.apache.jasper.JasperException: Unable to compile class for JSPNote: sun.tools.javac.Main has been deprecated. An error occured between lines: 18 and

Re: mod_jk: Auto reloading workers.properties file.

2002-02-14 Thread Matt Egyhazy
how does this affect performance? i think that is the major concern with all 'reloading' features. matt - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, February 14, 2002 3:56 PM Subject: mod_jk: Auto reloading workers.properties file. Hi all, I've

Re: Error reading init-params

2002-02-10 Thread Matt Egyhazy
i just use String thisString = getInitParameter(nameofparameter); matt - Original Message - From: Dominik Jednoralski [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, February 10, 2002 11:49 AM Subject: Error reading init-params Hey Guys, I have a problem with getting my

Re: Manage of memory and Garbage collector.

2002-02-08 Thread Matt Egyhazy
you can set what they are with an environment variable. which one depends on the version of tomcat you are running. this is in the docs. matt - Original Message - From: Emilio Miranda [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, February 08, 2002 5:38 PM

restarting tomcat by calling runtime.exec on a .bat file (tc 3.2.4)

2002-02-02 Thread Matt Egyhazy
hi, im trying to exec a .bat file that moves files around and restarts tomcat from a servlet. it seems as though the .bat file is being run up to the point where it calls net stop tomcat net start tomcat any ideas? am i doing something wrong or is there an easier way to restart tomcat?

Re: htdocs or servlet

2002-02-02 Thread Matt Egyhazy
take a look at mod_jk, the directory directive for apache, and the context directive in tc. ive always used the j2ee standard .war packaging for server side java applications. matt - Original Message - From: Rob [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Saturday,

help with 'enabling/disabling' a webapp (apache1.3.22/tc 3.2.4)

2002-02-01 Thread Matt Egyhazy
hi, i am currently working on an administrative application that will be able to enable/disable certain webapps from within the same tomcat instance. the platform is windows (bleh). basically when the webapp is disabled, i want to display a static outage page. obviously, when i enable it, i

Re: URL to servlet mapping with mod_jk

2002-01-31 Thread Matt Egyhazy
look at documentation on the servlet and servlet-mapping elements in the web.xml. matt - Original Message - From: Cressatti, Dominique [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, January 31, 2002 4:34 AM Subject: URL to servlet mapping with mod_jk quick

Re: basic servlet move doesn't work

2002-01-21 Thread Matt Egyhazy
did you change the package declaration within the servlet code? it should be package dir; matt - Original Message - From: Cressatti, Dominique [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, January 21, 2002 10:53 AM Subject: basic servlet move doesn't work Hi,

Re: When to switch from tomcat to commercial, if ever...

2002-01-14 Thread Matt Egyhazy
estimate future load and do load testing based on that. if tomcat doesnt look like it can handle it, test some other jsp/servlet servers. dont change what you have if it works. matt - Original Message - From: Brandon Cruz [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED]

Re: URGENT HELP REQUIRED WITH JSP AND BEAN FILES ON

2002-01-13 Thread Matt Egyhazy
did you try to import the class? matt - Original Message - From: Chetna Bhatt [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, January 13, 2002 11:42 AM Subject: URGENT HELP REQUIRED WITH JSP AND BEAN FILES ON Hi, I'm using tomcat4 on windows NT platform. The classpath is set as

Re: URGENT HELP REQUIRED WITH JSP AND BEAN FILES ON

2002-01-13 Thread Matt Egyhazy
use the full package name when importing the class. if you arent importing the class, use the full name when instantiating an object. matt - Original Message - From: Chetna Bhatt [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Sunday, January 13, 2002 1:46 PM Subject:

Re: Sessions across contexts, is it possible?

2002-01-11 Thread Matt Egyhazy
im not 100% sure but i dont think you can do that. at least not on 3.2.4. for questions such as this, it would be helpful if you put the version of tomcat you are using. matt - Original Message - From: Brandon Cruz [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday,

Re: Sessions across contexts, is it possible?

2002-01-11 Thread Matt Egyhazy
heh, duh, i replied to your second message, didnt see the first one, sorry. - Original Message - From: Matt Egyhazy [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, January 11, 2002 6:28 PM Subject: Re: Sessions across contexts, is it possible? im not 100% sure

Re: Vectors? Why does this not work?

2002-01-10 Thread Matt Egyhazy
it looks like your code is working just fine to me, its doing exactly what you wrote it to do. i suggest reading an introductory java book, the wrox java2 book is ok. and this is not the mailing list for these types of questions. matt - Original Message - From: Rick Roberts [EMAIL

Re: web developpment

2001-12-17 Thread Matt Egyhazy
forte cvs junit jmeter (not really benchmark, just stress testing) - Original Message - From: Laurent Michenaud [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, December 17, 2001 3:46 AM Subject: web developpment I would like to know what tools you are using with Tomcat... I

Re: Application Design: initialization

2001-12-15 Thread Matt Egyhazy
you can have servlets that load on application start up. they must have an init() method and the following attribute in your web.xml: load-on-startup1/load-on-startup matt - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, December 15, 2001 1:05 PM

Re: tomcat + netware

2001-12-11 Thread Matt Egyhazy
i dont have the answer to your question. but because netware has recently become an unsupported os for oracle products, it has caused a complete restructuring for a company that i consult for. it seems as though netware is an ok os for running web services and databases. unfortunately, very

Re: Possible To Share A Session Across Ports 8080 and 8443?

2001-12-09 Thread Matt Egyhazy
i think sessions are webapp specific. matt - Original Message - From: David White [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, December 09, 2001 4:22 PM Subject: Possible To Share A Session Across Ports 8080 and 8443? Due to problems with my cable modem, please respond via

Re: Installing the MM MySQL driver

2001-12-08 Thread Matt Egyhazy
lib directory of your web application or one of the auto loaded directories within the tomcat install...im not sure which is which with tomcat4 though. hth matt - Original Message - From: Saqib Shaikh [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, December 09, 2001 1:50 AM

Re: Known Memory clean-up issues?

2001-12-01 Thread Matt Egyhazy
have you tuned the jvm settings? i had out of memory errors with 3.2.3 version of tomcat after periods of heavy load until i tuned the jvm. matt - Original Message - From: Randy Layman [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, November 29, 2001 3:25 PM

Re: benchmarking Tomcat4?

2001-11-29 Thread Matt Egyhazy
http://jakarta.apache.org/jmeter/index.html matt - Original Message - From: J. Eric Smith [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 27, 2001 5:06 PM Subject: benchmarking Tomcat4? Has anyone tried benchmarking Tomcat4 versus some of the commercial engines like

Re: Quick Servlet Question

2001-11-29 Thread Matt Egyhazy
ive found the ResourceBundle class to be easier to use than an istream approach for getting properties. matt - Original Message - From: Bo Xu [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, November 29, 2001 5:28 PM Subject: Re: Quick Servlet Question -

tuning the jvm for tomcat

2001-11-29 Thread Matt Egyhazy
hi, in the tomcat user's guide, it talks about tuning the jvm (giving it more memory). according to the guide, you have to edit the tomcat startup script to tune the jvm by sending startup arguements to the java process. anyone have experience with this? i would like to know the best way to

tomcat and freeBSD

2001-11-28 Thread Matt Egyhazy
is this combination possible and what jdk/os version/tomcat version is recommended? thanks, matt -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

welcome file not loading...

2001-11-19 Thread Matt Egyhazy
hi, i am using tomcat 3.2.3 and apache 1.3.20 on windows 2000 with mod_jk i have setup the welcome file in the web.xml of my web application as follows: welcome-file-list welcome-file index.jsp /welcome-file welcome-file login.html /welcome-file

Re: cryptography - slow starting????

2001-11-13 Thread Matt Egyhazy
make an initialization servlet that gets loaded when your application starts up and make it use whatever methods are needed to start the JCE. matt - Original Message - From: Gerry Duhig [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED]; David Wall [EMAIL PROTECTED] Sent: Tuesday,