java.io.tempdir Problems

2004-10-14 Thread Michael McGrady
? Anyone with any assistance out there? Michael McGrady - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: java.io.tempdir Problems

2004-10-14 Thread Michael McGrady
, default to the system-wide temp directory specified by the system property java.io.tempdir A)what is the value of javax.servlet.context.tempdir from the ServletContext? B)what is the value of the init-parameter tempDir? Martin- - Original Message - From: Michael McGrady [EMAIL PROTECTED

Re: java.io.tempdir Problems

2004-10-14 Thread Michael McGrady
about that? Michael McGrady Martin Gainty wrote: Michael createTempFile employs 3 steps algorithm to locate/create tempDir 1) Attempt to retrieve the value of javax.servlet.context.tempdir from the ServletContext 2) If that's not found, attempt to retrieve the value of the init-parameter

Re: java.io.tempdir Problems

2004-10-14 Thread Michael McGrady
: Michael McGrady [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Sent: Thursday, October 14, 2004 11:46 AM Subject: Re: java.io.tempdir Problems Martin, Perhaps I should add, Martin, that if I set the environment variables for java.io.tempdir and -Djava.io.tempdir in the application

Re: java.io.tempdir Problems

2004-10-14 Thread Michael McGrady
property The directory specified by the java.io.tempdirsystem property The directory specified by the java.io.tempdirsystem property The directory specified by the java.io.tempdir??? Martin - Original Message - From: Michael McGrady [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL

Re: Class Not Found on Occasion but Class Exists and is Usually Found

2004-10-06 Thread Michael McGrady
so, whichever makes sense. Michael McGrady Shapira, Yoav wrote: Hi, Does your CNFE (by the way, is it actually a CNFE or a NoClassDefFoundError -- I think it's the latter, looking at the stack trace, and the distinction is significant) occur when you've reloaded your app? In other words

Re: Simple But Irritating problem accesing beans from jsp

2004-09-24 Thread Michael McGrady
useBean instead of userbean? Michael McGrady Dinesh Keesara wrote: the following code is working perfectly: [EMAIL PROTECTED] import=com.dinesh.* % % IdCard myidcard=new IdCard();% % myidcard.setName(HariKiran); myidcard.setRollNo(123); % %=myidcard.getName()% br %=myidcard.getRollNo()% but if i

Re: Simple But Irritating problem accesing beans from jsp

2004-09-24 Thread Michael McGrady
Sorry, I mean: useBean instead of usebean? (My eyesight is not great. Nerd, you know!) Michael McGrady Dinesh Keesara wrote: the following code is working perfectly: [EMAIL PROTECTED] import=com.dinesh.* % % IdCard myidcard=new IdCard();% % myidcard.setName(HariKiran); myidcard.setRollNo(123

505 Error and Tomcat 5.0

2004-09-17 Thread Michael McGrady
? Michael McGrady - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [ANN] Apache Jakarta Tomcat 5.0.28 Released

2004-08-29 Thread Michael McGrady
+1 What a deal Tomcat is. It is amazing! Vic wrote: (I know I speak for many) THANK YOU very much. .V - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Code Too Large for Try Statement in Catalina

2004-08-19 Thread Michael McGrady
I have the following error: org.apache.jasper.JasperException: Unable to compile class for JSP An error occurred at line: -1 in the jsp file: null Generated servlet error: [javac] Compiling 1 source file C:\crackwillow\work\Catalina\localhost\_\pallet_jsp.java:12934: code too large for try

Re: Code Too Large for Try Statement in Catalina

2004-08-19 Thread Michael McGrady
job. peter On Thu, 19 Aug 2004 12:28:32 -0700, Michael McGrady [EMAIL PROTECTED] wrote: I have the following error: org.apache.jasper.JasperException: Unable to compile class for JSP An error occurred at line: -1 in the jsp file: null Generated servlet error: [javac] Compiling 1 source file C

Re: Code Too Large for Try Statement in Catalina

2004-08-19 Thread Michael McGrady
compile time includes 2) split your page into multiple files which can use jsp_includes. Any file which needs to be this big is probably extrememly painful to debug. 3) followup to tomcat-user, not tomcat-dev -Tim Michael McGrady wrote: I have the following error: org.apache.jasper.JasperException

[OT] javax.COMM

2004-07-19 Thread Michael McGrady
Anyone have any info on open source projects with javax.COMM? Thanks. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[[[[OOOOOOOOTTTTTTTTT} Re: Hin Kan Lee/Prymnewey is out of the office.

2004-07-14 Thread Michael McGrady
Does anyone know if Hin Kan Lee is in today or when he/she will be back? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

java.security.NoSuchAlgorithmException in Tomcat

2004-03-27 Thread Michael McGrady
I am using j2se 1.4.2_04. When I attempt to run java.security.KeyPairGenerator.getInstance(DH) in Tomcat, I get a stack trace as follows: java.security.NoSuchAlgorithmException: DH KeyPairGenerator not available java.security.Security.getEngineClassName(Security.java:584)

Re: java.security.NoSuchAlgorithmException in Tomcat

2004-03-27 Thread Michael McGrady
When I run Security.getProviders() I do not get SunJCE, even though I have the following in the java.security file: security.provider.1=sun.security.provider.Sun security.provider.2=com.sun.net.ssl.internal.ssl.Provider security.provider.3=com.sun.rsajca.Provider

Re: java.security.NoSuchAlgorithmException in Tomcat SOLUTION

2004-03-27 Thread Michael McGrady
For some reason Tomcat is not seeing the com.sun.crypto.provider package in jre/lib/ext. The work around is to put the SunJCE provider (sunjce_provider.jar) into commons/lib of Tomcat and to then add the provider manually with Security.addProvider(new com.sun.crypto.provider.SunJCE()). Why

Re: java.security.NoSuchAlgorithmException in Tomcat SOLUTION

2004-03-27 Thread Michael McGrady
to be manually configured in Tomcat? Thanks. At 12:23 PM 3/27/2004, Bill Barker wrote: - Original Message - From: Michael McGrady [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Sent: Saturday, March 27, 2004 8:46 AM Subject: Re: java.security.NoSuchAlgorithmException

Re: java.security.NoSuchAlgorithmException in Tomcat SOLUTION

2004-03-27 Thread Michael McGrady
Hmm, I just noticed that the following is commented out in jwsdp: !-- echo message=Setting xerces SAXParser as org.xml.sax.driver / echo message=And setting java.endorsed.dirs to use xerces and xalan / replace file=${S1AS_HOME}/domains/domain1/server1/config/server.xml

Re: [OT] Tomcat as top level ASF Project

2004-03-18 Thread Michael McGrady
Lord, the Bible has had nothing but marketing since the beginning, ever since Constantine killed the Christians that disagreed with the robber's synod. Even today the Bible is the most cobbled book on the market, just to meet marketing demands.

Re: Email account utilization warning.

2004-03-08 Thread Michael McGrady
What is this about? I am sure of one thing, I did not improperly use anything. I don't know what you mean about resign[ing my]account information either. Since there was no attached file, I assume my security picked up an attempt to pass on a virus. Anyone else seeing these? Michael At

Re: unknown: TROJAN HORSE?

2004-02-26 Thread Michael McGrady
I never look at these emails I get because I fear they are spoofs. Are they? This was an email that said it came from the list via [EMAIL PROTECTED] and had an attached file called friend.zip. Is this a trojan horse? At 07:02 AM 2/26/2004, you wrote: thats wrong

Re: REMOVE EMAIL

2004-02-17 Thread Michael McGrady
Look at the bottom of the emails, Trevino, and you will see how to do that. At 07:49 AM 2/17/2004, you wrote: PLEASE REMOVE EMAIL FROM LIST!! [EMAIL PROTECTED] thank you! - Original Message - From: Cynthia Trevino [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL

[OT] TEST Re: jk2 2.0.4 release plan

2004-02-04 Thread Michael McGrady
Test At 01:56 AM 2/4/2004, you wrote: Bill Barker a écrit : Henri Gomez [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Mike Anderson a écrit : I'll be happy to deliver zips instead of NLMS. for NetWare. Henri (and others) since we are tagging and releasing jk2 can/should we do the

[OT] Re: Edward Furlong/IE/TLS/PwC is out of the office.

2004-02-03 Thread Michael McGrady
Man, I hope this is a Canadian date. If this is American, we are going to get these for the next seven months. LOL. At 10:30 PM 2/3/2004, [EMAIL PROTECTED] wrote: I will be out of the office starting 02/02/2004 and will not return until 09/02/2004. I will respond to your message when I