java.io.tempdir Problems

2004-10-14 Thread Michael McGrady
I hope this is Tomcat related.  If not, please accept my apologies, and 
give me direction.  I have removed from my Tomcat 5 (Struts 1.2 using a 
custom taglib) service the java.io.tempdir setting because when I use 
the following code:

File file = new File(Classpath.WEB_INF +
resource+ File.separator +
content_type+ File.separator +
ttf + File.separator +
 physicalName);
FileInputStream fontStream = new FileInputStream(file);
Font font = Font.createFont(Font.TRUETYPE_FONT,fontStream);
font = font.deriveFont(attributes);
fontStream.close();
I get temp files of around 50 - 150 kilobytes each written to the temp 
directory.  I requested assistance on Tomcat User without an answer. 

Anyway, I assume that there may be a concurrency issue of somekind.  Is 
that right?  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
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
  tempDir
3) If that's not found, 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]
To: Tomcat Developers List [EMAIL PROTECTED]
Sent: Thursday, October 14, 2004 3:16 AM
Subject: java.io.tempdir Problems
 

I hope this is Tomcat related.  If not, please accept my apologies, and
give me direction.  I have removed from my Tomcat 5 (Struts 1.2 using a
custom taglib) service the java.io.tempdir setting because when I use
the following code:
File file = new File(Classpath.WEB_INF +
resource+ File.separator +
content_type+ File.separator +
ttf + File.separator +
 physicalName);
FileInputStream fontStream = new FileInputStream(file);
Font font = Font.createFont(Font.TRUETYPE_FONT,fontStream);
font = font.deriveFont(attributes);
fontStream.close();
I get temp files of around 50 - 150 kilobytes each written to the temp
directory.  I requested assistance on Tomcat User without an answer.
Anyway, I assume that there may be a concurrency issue of somekind.  Is
that right?  Anyone with any assistance out there?
Michael McGrady
Martin,
First, thanks for responding. 

Second, the entirety of the startup code setting my java.io.tempdir 
system property is after this note, but the value of the property is 
%CATALINA_HOME%\temp.  The value of javax.servlet.context.tempdir is 
C:\crackwillow\work\Catalina\localhost\_ .  Following the knowledge I 
gleaned from your question and specifications, I reset things in a 
plugin, and I now have the values at runtime of:

javax.servlet.context.tempdir = C:\crackwillow\work\Catalina\localhost\_
-Djava.io.tempdir = C:/crackwillow/temp
java.io.tempdir = C:/crackwillow/temp
Prior to doing this, my values for both -Djava.io.tempdir and 
java.io.tempdir were null. 

I have kept the value of the java.io.tempdir in my  at 
C:/crackwillow/temp.  When I run the font program as previously 
indicated (see above), I still get the tmp files that do not go away.  
Their names are as follows: +~JF3174.tmp and they run consequtively. 

What do you think is up?
Michael McGrady
@echo off
if %OS% == Windows_NT setlocal
rem 
---
rem NT Service Install/Uninstall script
rem
rem Options
rem installInstall the service using Tomcat5 as service 
name.
remService is installed using default settings.
rem remove Remove the service from the System.
rem
rem name(optional) If the second argument is present it is 
considered
remto be new service 
name  
rem
rem $Id: service.bat,v 1.1 2003/12/27 18:56:58 mdsh Exp $
rem 
---

rem Guess CATALINA_HOME if not defined
set CURRENT_DIR=%cd%
if not %CATALINA_HOME% ==  goto gotHome
set CATALINA_HOME=%cd%
if exist %CATALINA_HOME%\bin\tomcat.exe goto okHome
rem CD to the upper dir
cd ..
set CATALINA_HOME=%cd%
:gotHome
if exist %CATALINA_HOME%\bin\tomcat.exe goto okHome
echo The tomcat.exe was not found...
echo The CATALINA_HOME environment variable is not defined correctly.
echo This environment variable is needed to run this program
goto end
:okHome
set EXECUTABLE=%CATALINA_HOME%\bin\tomcat.exe
rem Set default Service name
set SERVICE_NAME=Tomcat5
if %1 ==  goto displayUsage
if %2 ==  goto setServiceName
set SERVICE_NAME=%2
:setServiceName
if %1 == install goto doInstall
if %1 == remove goto doRemove
echo Unknown parameter %1
:displayUsage
echo
echo Usage: service.bat install/remove [service_name]
goto end
:doRemove
rem Remove the service
%EXECUTABLE% //DS//%SERVICE_NAME%
echo The service '%SERVICE_NAME%' has been removed
goto end
:doInstall
rem Install the service
%EXECUTABLE% //IS//%SERVICE_NAME% --DisplayName Apache Tomcat 
--Description Apache Tomcat Server - http://jakarta.apache.org/tomcat/;
%EXECUTABLE% //US//%SERVICE_NAME% --Install %EXECUTABLE%
%EXECUTABLE% //US//%SERVICE_NAME% --ImagePath 
%JAVA_HOME%\lib\tools.jar;%CATALINA_HOME%\bin\bootstrap.jar
%EXECUTABLE% //US//%SERVICE_NAME% --Java 
%JAVA_HOME%\jre\bin\server\jvm.dll
%EXECUTABLE% //US//%SERVICE_NAME% --StartupClass 
org.apache.catalina.startup.Bootstrap;main;start --ShutdownClass 
org.apache.catalina.startup.Bootstrap;main;stop --Startup auto
rem Set extra parameters
%EXECUTABLE% //US//%SERVICE_NAME% --JavaOptions

Re: java.io.tempdir Problems

2004-10-14 Thread Michael McGrady
Martin,
Perhaps I should add, Martin, that if I set the environment variables 
for java.io.tempdir and -Djava.io.tempdir in the application but not in 
Tomcat startup, I don't have the problem.  I am a bit confused about 
whether to use java.io.tempdir or -Djava.io.tempdir.  Can you explain a 
bit 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
  tempDir
3) If that's not found, 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]
To: Tomcat Developers List [EMAIL PROTECTED]
Sent: Thursday, October 14, 2004 3:16 AM
Subject: java.io.tempdir Problems
 

I hope this is Tomcat related.  If not, please accept my apologies, and
give me direction.  I have removed from my Tomcat 5 (Struts 1.2 using a
custom taglib) service the java.io.tempdir setting because when I use
the following code:
File file = new File(Classpath.WEB_INF +
resource+ File.separator +
content_type+ File.separator +
ttf + File.separator +
 physicalName);
FileInputStream fontStream = new FileInputStream(file);
Font font = Font.createFont(Font.TRUETYPE_FONT,fontStream);
font = font.deriveFont(attributes);
fontStream.close();
I get temp files of around 50 - 150 kilobytes each written to the temp
directory.  I requested assistance on Tomcat User without an answer.
Anyway, I assume that there may be a concurrency issue of somekind.  Is
that right?  Anyone with any assistance out there?
Michael McGrady
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
   

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

 




Re: java.io.tempdir Problems

2004-10-14 Thread Michael McGrady
Hi, Martin,
Did something not come through on this email?  I am not following this.
Martin Gainty wrote:
Good Afternoon Michael
Perusing the Manual for Jspc at
http://64.233.167.104/search?q=cache:pfbfEPvvvHUJ:www.gefionsoftware.com/Lit
eWebServer/lws-jsp/ReferenceManual.pdf+TOMCAT+java.io.tempDir+-Djava.io.temp
Dirhl=en
formal syntax for the JSPC command
jspc [options] -webapp web-app-root-dir
Where option
-d output-dir specifies
The -d output-dir specification is the directory specified by the
java.io.tempdir system property
I see that there are 2 ways to specify java.io.tempdir System Property
Anyone else
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.tempdirsystem property The directory specified by the
java.io.tempdir???
Martin
- Original Message -
From: 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 but not in
Tomcat startup, I don't have the problem.  I am a bit confused about
whether to use java.io.tempdir or -Djava.io.tempdir.  Can you explain a
bit 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
 

 tempDir
3) If that's not found, 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]
To: Tomcat Developers List [EMAIL PROTECTED]
Sent: Thursday, October 14, 2004 3:16 AM
Subject: java.io.tempdir Problems

 

I hope this is Tomcat related.  If not, please accept my apologies, and
give me direction.  I have removed from my Tomcat 5 (Struts 1.2 using a
custom taglib) service the java.io.tempdir setting because when I use
the following code:
   File file = new File(Classpath.WEB_INF +
   resource+ File.separator +
   content_type+ File.separator +
   ttf + File.separator +
physicalName);
   FileInputStream fontStream = new FileInputStream(file);
   Font font = Font.createFont(Font.TRUETYPE_FONT,fontStream);
   font = font.deriveFont(attributes);
   fontStream.close();
I get temp files of around 50 - 150 kilobytes each written to the temp
directory.  I requested assistance on Tomcat User without an answer.
Anyway, I assume that there may be a concurrency issue of somekind.  Is
that right?  Anyone with any assistance out there?
Michael McGrady
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

   

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


 

   

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: java.io.tempdir Problems

2004-10-14 Thread Michael McGrady
I don't know if this is helpful or not, Martin, but if you attempt 
System.getenv(java.io.tempdir) [which is deprecated], you get as part 
of the error message
getenv no longer supported, use properties and -D instead: 
java.io.tempdir.  Is that helpful?  Does the -D there mean as in 
-Djava.io.tempdir?

Michael
Martin Gainty wrote:
Good Afternoon Michael
Perusing the Manual for Jspc at
http://64.233.167.104/search?q=cache:pfbfEPvvvHUJ:www.gefionsoftware.com/Lit
eWebServer/lws-jsp/ReferenceManual.pdf+TOMCAT+java.io.tempDir+-Djava.io.temp
Dirhl=en
formal syntax for the JSPC command
jspc [options] -webapp web-app-root-dir
Where option
-d output-dir specifies
The -d output-dir specification is the directory specified by the
java.io.tempdir system property
I see that there are 2 ways to specify java.io.tempdir System Property
Anyone else
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.tempdirsystem property The directory specified by the
java.io.tempdir???
Martin
- Original Message -
From: 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 but not in
Tomcat startup, I don't have the problem.  I am a bit confused about
whether to use java.io.tempdir or -Djava.io.tempdir.  Can you explain a
bit 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
 

 tempDir
3) If that's not found, 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]
To: Tomcat Developers List [EMAIL PROTECTED]
Sent: Thursday, October 14, 2004 3:16 AM
Subject: java.io.tempdir Problems

 

I hope this is Tomcat related.  If not, please accept my apologies, and
give me direction.  I have removed from my Tomcat 5 (Struts 1.2 using a
custom taglib) service the java.io.tempdir setting because when I use
the following code:
   File file = new File(Classpath.WEB_INF +
   resource+ File.separator +
   content_type+ File.separator +
   ttf + File.separator +
physicalName);
   FileInputStream fontStream = new FileInputStream(file);
   Font font = Font.createFont(Font.TRUETYPE_FONT,fontStream);
   font = font.deriveFont(attributes);
   fontStream.close();
I get temp files of around 50 - 150 kilobytes each written to the temp
directory.  I requested assistance on Tomcat User without an answer.
Anyway, I assume that there may be a concurrency issue of somekind.  Is
that right?  Anyone with any assistance out there?
Michael McGrady
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

   

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


 

   

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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

2004-10-06 Thread Michael McGrady
I have been given a simple war by Marc Guillemot [EMAIL PROTECTED] 
which replicates the problem almost every time on my development laptop, 
which is a Compaq Presario 2500 with Windows XP Home running Tomcat 5.0 
with Struts 1.2.  With Marc's agreement, I can send that along to you or 
he can do 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, if instead of reloading you restart Tomcat
each time to deploy a new version of your app, does this error go away?
I'm asking the above because it might be related to
http://issues.apache.org/bugzilla/show_bug.cgi?id=28949, which has been
elusive.
What Tomcat version are you using?
Yoav Shapira
Millennium Research Informatics
This is very interesting.  My experience is almost the same as the 
bug.  I also use frames.  It is NOT always the same frame with me.  
And, I do not use the ImgTag from Struts but have rolled my own.  I 
think that this is very interesting.  Something in ImgTag and frames 
is the problem, apparently.

Michael McGrady

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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 replace it with jsp:usebean tag  like this :
[EMAIL PROTECTED] import=com.dinesh.* %
jsp:usebean id=myidcard  class=com.dinesh.IdCard scope=page
jsp:setProperty name=myidcard property=rollNo value=123 
jsp:setProperty name=myidcard property=name value=Harikiran 
%=myidcard.getName()%
br
%=myidcard.getRollNo()%
/jsp:usebean
i am getting a jsp.error.badaction messsage here is complete stack trace :
HTTP Status 500 -

type Exception report
message
description The server encountered an internal error () that prevented
it from fulfilling this request.
exception
org.apache.jasper.JasperException: /idcard1.jsp(5,5) jsp.error.badaction
  at 
org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:94)
  at org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:428)
  at org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:126)
  at org.apache.jasper.compiler.Parser.parseAction(Parser.java:671)
  at org.apache.jasper.compiler.Parser.parseElements(Parser.java:803)
  at org.apache.jasper.compiler.Parser.parse(Parser.java:122)
  at org.apache.jasper.compiler.ParserController.parse(ParserController.java:199)
  at org.apache.jasper.compiler.ParserController.parse(ParserController.java:153)
  at org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:227)
  at org.apache.jasper.compiler.Compiler.compile(Compiler.java:369)
  at 
org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:473)
  at 
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:190)
  at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
  at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
  at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
  at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
  at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
  at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
  at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
  at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
  at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
  at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
  at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
  at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
  at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2422)
  at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
  at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
  at 
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
  at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
  at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:163)
  at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
  at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
  at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
  at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
  at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
  at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
  at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
  at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:199)
  at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:833)
  at 
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:711)
  at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:584)
  at 
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:687)
  at java.lang.Thread.run(Thread.java:536)
--
Dinesh Keesara
M.Tech(Software Engg.)
School

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);
%
%=myidcard.getName()%
br
%=myidcard.getRollNo()%
but if i replace it with jsp:usebean tag  like this :
[EMAIL PROTECTED] import=com.dinesh.* %
jsp:usebean id=myidcard  class=com.dinesh.IdCard scope=page
jsp:setProperty name=myidcard property=rollNo value=123 
jsp:setProperty name=myidcard property=name value=Harikiran 
%=myidcard.getName()%
br
%=myidcard.getRollNo()%
/jsp:usebean
i am getting a jsp.error.badaction messsage here is complete stack trace :
HTTP Status 500 -

type Exception report
message
description The server encountered an internal error () that prevented
it from fulfilling this request.
exception
org.apache.jasper.JasperException: /idcard1.jsp(5,5) jsp.error.badaction
  at 
org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:94)
  at org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:428)
  at org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:126)
  at org.apache.jasper.compiler.Parser.parseAction(Parser.java:671)
  at org.apache.jasper.compiler.Parser.parseElements(Parser.java:803)
  at org.apache.jasper.compiler.Parser.parse(Parser.java:122)
  at org.apache.jasper.compiler.ParserController.parse(ParserController.java:199)
  at org.apache.jasper.compiler.ParserController.parse(ParserController.java:153)
  at org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:227)
  at org.apache.jasper.compiler.Compiler.compile(Compiler.java:369)
  at 
org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:473)
  at 
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:190)
  at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
  at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
  at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
  at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
  at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
  at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
  at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
  at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
  at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
  at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
  at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
  at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
  at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2422)
  at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
  at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
  at 
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
  at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
  at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:163)
  at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
  at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
  at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
  at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
  at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
  at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
  at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
  at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:199)
  at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:833)
  at 
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:711)
  at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:584)
  at 
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:687)
  at java.lang.Thread.run(Thread.java

505 Error and Tomcat 5.0

2004-09-17 Thread Michael McGrady
I have tried this question on the user list with no answers.  I hope 
this is not inappropriate.  Thanks for any assistance.

I am using Tomcat 5.0 and Struts 1.1.  I also use a Filter that zips the 
requests and responses.  I am running a chat room on port 80 with a 
frameset html that auto refreshes in one frame and sends in another 
frame.  When a user with IE tries to chat with me from her office, she 
gets 505 messages.  I have recently changed the code on the pages.  I am 
getting requests when she sends one, but they are old requests, with the 
same chat lines she sent before.  Anyone know what is probably going on 
here?  The Filter I use follows:

 public class GZIPFilter implements Filter {
   public void doFilter(ServletRequest req, ServletResponse res,
   FilterChain chain) throws IOException, ServletException {
 if (req instanceof HttpServletRequest) {
   HttpServletRequest request = (HttpServletRequest) req;
   HttpServletResponse response = (HttpServletResponse) res;
   String ae = request.getHeader(accept-encoding);
   if (ae != null  ae.indexOf(gzip) != -1) {
 GZIPResponseWrapper wrappedResponse = new
 GZIPResponseWrapper(response);
 chain.doFilter(req, wrappedResponse);
 wrappedResponse.finishResponse();
 return;
   }
   chain.doFilter(req, res);
 }
   }
   public void init(FilterConfig filterConfig) {
 // noop
   }
   public void destroy() {
 // noop
   }
 }
What do you think?
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 
statement
   } catch (Throwable t) {
 ^
C:\crackwillow\work\Catalina\localhost\_\pallet_jsp.java:30: code too large for try 
statement
   try {
   ^
C:\crackwillow\work\Catalina\localhost\_\pallet_jsp.java:17: code too large
 public void _jspService(HttpServletRequest request, HttpServletResponse response)
 ^
3 errors

org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:130)
org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:293)
org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:340)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:352)
org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:474)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:184)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
com.crackwillow.filter.GZIPFilter.doFilter(GZIPFilter.java:20)
Is there anything to do?  I need this file to be a JSP file in Struts.
Michael
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Code Too Large for Try Statement in Catalina

2004-08-19 Thread Michael McGrady
Thanks, Peter,
I am using Tomcat 5.0.  What do you mean by reorganize my JSP?  Can I 
write the JSP with an include that pulls in the code?  What I have is a 
color pallet which needs to be in one piece and is 338 kb in size. 

Thanks, again,
Michael
Peter Lin wrote:
the only way is to reorganize your jsp.  this is an old issue dating
back quite a bit. are you using tomcat4 or 5?
if you're using tc4, I would recommend upgrading to tc4.1.x or 5.x. 
the original jasper generated code which would easily exceed the
limit. the newer jasper2 which is used with tc4.1.x and 5.x does a
much better 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:\crackwillow\work\Catalina\localhost\_\pallet_jsp.java:12934: code too large for try 
statement
  } catch (Throwable t) {
^
C:\crackwillow\work\Catalina\localhost\_\pallet_jsp.java:30: code too large for try 
statement
  try {
  ^
C:\crackwillow\work\Catalina\localhost\_\pallet_jsp.java:17: code too large
public void _jspService(HttpServletRequest request, HttpServletResponse response)
^
3 errors
  
org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:130)
  org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:293)
  org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:340)
  org.apache.jasper.compiler.Compiler.compile(Compiler.java:352)
  org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:474)
  org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:184)
  org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
  org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
  javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
  com.crackwillow.filter.GZIPFilter.doFilter(GZIPFilter.java:20)
Is there anything to do?  I need this file to be a JSP file in Struts.
Michael
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
   

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Code Too Large for Try Statement in Catalina

2004-08-19 Thread Michael McGrady
Thanks, Tim,
The file actually is quite simple.  It is a simple form with HTML radio 
buttons for choosing colors.  There are a LOT of colors, but the code is 
pretty straightforward.  I need to get the code into a JSP file so that 
I can utilize Struts. 

Michael
Tim Funk wrote:
1) don't use 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: 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 statement
   } catch (Throwable t) {
 ^
C:\crackwillow\work\Catalina\localhost\_\pallet_jsp.java:30: code too 
large for try statement
   try {
   ^
C:\crackwillow\work\Catalina\localhost\_\pallet_jsp.java:17: code too 
large
 public void _jspService(HttpServletRequest request, 
HttpServletResponse response)
 ^
3 errors


org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:130) 


org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:293) 

org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:340)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:352)

org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:474) 


org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:184) 


org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
com.crackwillow.filter.GZIPFilter.doFilter(GZIPFilter.java:20)

Is there anything to do?  I need this file to be a JSP file in Struts.
Michael
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


[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)
java.security.Security.getEngineClassName(Security.java:595)
java.security.Security.getImpl(Security.java:1044)
java.security.KeyPairGenerator.getInstance(KeyPairGenerator.java:146)
org.apache.jsp.TEST_KEYPAIR_jsp._jspService(TEST_KEYPAIR_jsp.java:58)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:204)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
I can run the DH generator from the command line.  So, the DH 
KeyPairGenerator IS available.  I have no trouble with Resin 2.1.x.  What 
is up?  Come on you guys, give me a hand here.  The documentation indicates 
that I should not be having a problem. 

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
security.provider.4=com.sun.crypto.provider.SunJCE
security.provider.5=sun.security.jgss.SunProvider
Why is that?  When I run from the command line, I do get SunJCE.  That is 
the difference.
At 07:26 AM 3/27/2004, you wrote:
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)
java.security.Security.getEngineClassName(Security.java:595)
java.security.Security.getImpl(Security.java:1044)
java.security.KeyPairGenerator.getInstance(KeyPairGenerator.java:146)
org.apache.jsp.TEST_KEYPAIR_jsp._jspService(TEST_KEYPAIR_jsp.java:58)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:204)

org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
I can run the DH generator from the command line.  So, the DH 
KeyPairGenerator IS available.  I have no trouble with Resin 2.1.x.  What 
is up?  Come on you guys, give me a hand here.  The documentation 
indicates that I should not be having a problem.


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 this is 
necessary is a quandry to me.  If I had a clue why this was happening, I 
would try to fix it.  But, this is not my area of expertise and I am stumped.

At 07:26 AM 3/27/2004, you wrote:
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)
java.security.Security.getEngineClassName(Security.java:595)
java.security.Security.getImpl(Security.java:1044)
java.security.KeyPairGenerator.getInstance(KeyPairGenerator.java:146)
org.apache.jsp.TEST_KEYPAIR_jsp._jspService(TEST_KEYPAIR_jsp.java:58)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:204)

org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
I can run the DH generator from the command line.  So, the DH 
KeyPairGenerator IS available.  I have no trouble with Resin 2.1.x.  What 
is up?  Come on you guys, give me a hand here.  The documentation 
indicates that I should not be having a problem.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: java.security.NoSuchAlgorithmException in Tomcat SOLUTION

2004-03-27 Thread Michael McGrady
Thanks, Bill.  I take it, then, I would add it to:

jwsdp-shared\bin\jwsdponsunone.xml(206): 
value='lt;jvm-options-Djava.endorsed.dirs=${S1AS_HOME}/share/lib/endorsedlt;/jvm-options 
lt;jvm-options-Dorg.xml.sax.driver=org.apache.xerces.parsers.SAXParserlt;/jvm-options'

under my circumstances?  And, would this be:
jwsdp-shared\bin\jwsdponsunone.xml(206): 
value='lt;jvm-options-Djava.endorsed.dirs=${S1AS_HOME}/share/lib/endorsedlt;/jvm-options$JAVA_HOME/jre/lib/ext 
lt;jvm-options-Dorg.xml.sax.driver=org.apache.xerces.parsers.SAXParserlt;/jvm-options'

???  Why would extension jars have 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 in Tomcat SOLUTION
 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 this
is
 necessary is a quandry to me.  If I had a clue why this was happening, I
 would try to fix it.  But, this is not my area of expertise and I am
stumped.

You can either add sunjce_provider.jar to $CATALINA_HOME/common/endorsed, or
add $JAVA_HOME/jre/lib/ext to the -Djava.endorsed.dirs in the startup
parameters.

 At 07:26 AM 3/27/2004, you wrote:
 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)
  java.security.Security.getEngineClassName(Security.java:595)
  java.security.Security.getImpl(Security.java:1044)
 
java.security.KeyPairGenerator.getInstance(KeyPairGenerator.java:146)
 
org.apache.jsp.TEST_KEYPAIR_jsp._jspService(TEST_KEYPAIR_jsp.java:58)
 
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
  javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
 

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:
204)
 
 org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
 
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
  javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
 
 I can run the DH generator from the command line.  So, the DH
 KeyPairGenerator IS available.  I have no trouble with Resin 2.1.x.  What
 is up?  Come on you guys, give me a hand here.  The documentation
 indicates that I should not be having a problem.



 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


Content-Type: text/plain; name=disclaimer.txt
Content-Disposition: inline; filename=disclaimer.txt
Content-Transfer-Encoding: 7bit
MIME-Version: 1.0
X-Mailer: MIME-tools 5.411 (Entity 5.404)
This message is intended only for the use of the person(s) listed above as 
the intended recipient(s), and may contain information that is PRIVILEGED 
and CONFIDENTIAL.  If you are not an intended recipient, you may not read, 
copy, or distribute this message or any attachment. If you received this 
communication in error, please notify us immediately by e-mail and then 
delete all copies of this message and any attachments.

In addition you should be aware that ordinary (unencrypted) e-mail sent 
through the Internet is not secure. Do not send confidential or sensitive 
information, such as social security numbers, account numbers, personal 
identification numbers and passwords, to us via ordinary (unencrypted) e-mail.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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
 value='lt;jvm-options-Djava.endorsed.dirs=${S1AS_HOME}/share/lib/endorsedlt;/jvm-options 
lt;jvm-options-Dorg.xml.sax.driver=org.apache.xerces.parsers.SAXParserlt;/jvm-options'
  replacetoken![CDATA[jvm-options-Dorg.xml.sax.parser=org.xml.sax.helpers.XMLReaderAdapter 
/jvm-options]]/replacetoken
/replace
--

Could that be the source of the problem in some sense?

At 01:31 PM 3/27/2004, you wrote:
Djava.endorsed


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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 01:07 AM 3/8/2004, you wrote:
Dear user, the  management  of Apache.org  mailing system wants to 
let  you know that,

Your e-mail  account will be  disabled  because  of improper  using in  next
three days, if you are still wishing to  use it,  please, resign your
account  information.
For  more information see the attached file.

Attached file  protected with the password for  security  reasons. 
Password is 46855.

Kind regards,
The Apache.org  team http://www.apache.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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 PROTECTED]; CustServ1
[EMAIL PROTECTED]
  Sent: Tuesday, February 17, 2004 9:47 AM
  Subject: REMOVE EMAIL
 PLEASE REMOVE MY EMAIL ADDRESS FROM YOUR LIST!!!
  
  
  
 - Original Message -
 From: CustServ1 [EMAIL PROTECTED]
 To: Tomcat Developers List [EMAIL PROTECTED]
 Sent: Monday, February 16, 2004 2:53 PM
 Subject: Re: cvs commit: jakarta-tomcat-connectors/jk/support
jk_apr.m4
  
  
  Dear Customer,
 
  Thank you for writing LTD Commodities.
 
 
  We value your business. If you have any questions in the future,
please
  let us know.
 
  Sincerely,
 
  Bonnie Cawley
  Internet Customer Service Department
  www.ltdcommodities.com
 
  **Did you know that you can now request an account statement or a
copy
  of your prepaid order online? Visit our web site at
  www.ltdcommodities.com and click on account information request,
which
  is located on the left side of our homepage**
 
 
 
  Original Message Follows:
  -
 
  truk2004/02/13 13:38:26
 
Modified:jk/native2 Makefile.in
 jk/native2/server/apache13 Makefile.apxs.in
 jk/support jk_apr.m4
Log:
add apxs meta targets and jk2-install-apxs from Guenter Knauf
For apache13:
 Change apr and apr-util to install into build dirs
 Fixup apxs build and add install target
 
apxs build is the only way to build on OpenBSD right now
due to libtool issues.
 
Tested on FreeBSD and OpenBSD so far.
 
Revision  ChangesPath
1.5   +16 -1
jakarta-tomcat-connectors/jk/native2/Makefile.in
 
Index: Makefile.in
 
===
RCS file:
/home/cvs/jakarta-tomcat-connectors/jk/native2/Makefile.in,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- Makefile.in 10 Nov 2003 11:05:33 - 1.4
+++ Makefile.in 13 Feb 2004 21:38:26 - 1.5
@@ -4,6 +4,12 @@
 
 clean: @APR_CLEAN@ jk2-clean
 
+build-apxs: @APR_BUILD@ jk2-build-apxs
+
+clean-apxs: @APR_CLEAN@ jk2-clean-apxs
+
+install-apxs: jk2-install-apxs
+
 jk2-build:
 list='@WEBSERVERS@';for i in $$list; do   @@ -22,6 +28,15 @@
 fi;done;
 
+jk2-install-apxs:
+ list='@WEBSERVERS@';   + for i in $$list; do   + echo Making
  $$target in $$i;   + if test $$i != .; then   + (cd $$i 
  $(MAKE) -f Makefile.apxs install) || exit 1;   + fi;   + done;
+
 jk2-clean:
 list='@WEBSERVERS@';for i in $$list; do   @@ -41,7 +56,7 @@
 done;
 
 apr-build:
- ( cd @APR_DIR@  make  cd @APR_UTIL_DIR@  make )
+ ( cd @APR_DIR@  make install  cd @APR_UTIL_DIR@  make
install
  )
 
 apr-clean:
 ( cd @APR_DIR@  make clean  cd @APR_UTIL_DIR@  make clean )
 
 
 
1.10  +9 -9
 
jakarta-tomcat-connectors/jk/native2/server/apache13/Makefile.apxs.in
 
Index: Makefile.apxs.in
 
===
RCS file:
 
/home/cvs/jakarta-tomcat-connectors/jk/native2/server/apache13/Makefile.
  apxs.in,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- Makefile.apxs.in 10 Feb 2004 04:39:51 - 1.9
+++ Makefile.apxs.in 13 Feb 2004 21:38:26 - 1.10
@@ -3,28 +3,28 @@
 [EMAIL PROTECTED]@
 [EMAIL PROTECTED]@
 JK_DIR := ../..
[EMAIL PROTECTED]@
[EMAIL PROTECTED]@
 COMMON_C_FILES := $(wildcard ${JK_DIR}/common/*.c )
 [EMAIL PROTECTED]@
[EMAIL PROTECTED]@
 C_FILES=jk_service_apache13.c mod_jk2.c
 [EMAIL PROTECTED]@
[EMAIL PROTECTED]@/apr-config --libs`
-
-JK=../../common/
-JKINC=../../include/
-JK_INCL=-DUSE_APACHE_MD5 -I ${JK} -I ${JKINC} -DHAVE_MMAP
[EMAIL PROTECTED]@/bin/apr-config --link-ld`
[EMAIL PROTECTED]@/bin/apu-config --link-ld`
 
 ifneq ($(strip $(JAVA_HOME)),)
 JAVA_INCL=-I ${JAVA_HOME}/include -I ${JAVA_HOME}/include/${OS}
  @HAVE_JNI@
 JAVA_LIB=-L ${JAVA_HOME}/jre/lib/${ARCH} -L
  ${JAVA_HOME}/lib/${ARCH}/native_threads
 endif
 
+JK_CFLAGS=-I ${JK_DIR}/include -DCHUNK_SIZE=4096 -DUSE_APACHE_MD5
  ${APR_CFLAGS} -DHAVE_MMAP
+
 all: 

[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 same for jk since I know there is added functionality (Ping/Pong
and timeouts) there as well?
Well, one release at a time, users urge us for jk2 release, jk release
could wait some time (Bill ?)
Yeah, well, I suppose that now that I'm an all-great-and-powerful PMC
member, I could RM a JK release.  However, I'd like to get out a TC 3.3.2
before that (so, if anyone else wants to RM JK in the meantime, you've got
my +1 :).  Also, if Larry wants to jump in to RM 3.3.2, I'll step aside,
since he has done such a great job on all of the other 3.3 releases.
The rules for 3.3 releases are still old-school.  I'll try to get a
[PROPOSAL] together by the end of the week.  If that's not rejected, then we
go to a [VOTE] (which will give me time to clarify if I count PMC members or
committers as binding votes).  In the unlikely event that we get enough
people to care about 3.3 enough to vote (seeing the trouble that Remy has
getting people to vote :), then there will be a 3.3.2 release.
As cool as it would  be to have a 3.3.3 release, I'd probably consider the
3.3.2 release to be an EOL release for the 3.x line.  Security releases
would still be provided, but not much more.
+100 for 3.3.2 release, I'm waiting for about ... months :)

If you work on it, I could get jk2 RM job :-)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


[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 return.
_
The information transmitted is intended only for the person or entity to
which it is addressed and may contain confidential and/or privileged
material.  Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by persons or
entities other than the intended recipient is prohibited.   If you received
this in error, please contact the sender and delete the material from any
computer.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]