was anyone able to change his/her email address in this list

2007-06-06 Thread Abdelmonaam Kallali

Hi All
Was anyone able to change his/her email address in this list?
I'm having hard time sorting Tomcat users list from my work emails and it is
taking a bit of my work time can anyone help?
Thanks

Abdelmonaam KALLALI
Test Specialist
DragonWave Inc
411 Legget Dr
Phone :613-599 9991 ext 275



-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: was anyone able to change his/her email address in this list

2007-06-06 Thread Abdelmonaam Kallali
I've tried that but didn't work

Abdelmonaam KALLALI
Test Specialist
DragonWave Inc
411 Legget Dr
Phone :613-599 9991 ext 275

-Original Message-
From: Gregor Schneider [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 06, 2007 12:09 PM
To: Tomcat Users List
Subject: Re: was anyone able to change his/her email address in this list

1. unsubscribe with your old email-address
2. subscribe with your new email-address

Gregor
-- 
what's puzzlin' you, is the nature of my game
gpgp-fp: 79A84FA526807026795E4209D3B3FE028B3170B2
gpgp-key available @ http://pgpkeys.pca.dfn.de:11371

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



change the email address for Tomcat Users List

2007-05-24 Thread Abdelmonaam Kallali
Did anybody figure out how to change the email address for Tomcat Users
List?

 





 

 

 



Abdelmonaam KALLALI
Test Specialist 

DragonWave
411 Legget Dr 


 mailto:[EMAIL PROTECTED] [EMAIL PROTECTED] 


tel: 
mobile: 

 
http://www.plaxo.com/click_to_call?src=jj_signatureTo=613-599++ext+275
[EMAIL PROTECTED] 613-599  ext 275 
 
http://www.plaxo.com/click_to_call?src=jj_signatureTo=613-889+0732Email=a
[EMAIL PROTECTED] 613-889 0732 

 



 
https://www.plaxo.com/add_me?u=38657297599v0=4784174k0=538185312src=clie
nt_sig_212_1_banner_joininvite=1 Want to always have my latest info?

 http://www.plaxo.com/signature?src=client_sig_212_1_banner_sig Want a
signature like this?

 



RE: I've been trying to unsubscribe from this list for years.

2007-05-18 Thread Abdelmonaam Kallali
It didn't work neither

Abdelmonaam KALLALI
Test Specialist
DragonWave Inc
411 Legget Dr
Phone :613-599 9991 ext 275
-Original Message-
From: tomcat [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 18, 2007 7:29 AM
To: Tomcat Users List
Subject: Re: I've been trying to unsubscribe from this list for years.

At 11:48 PM 5/17/2007, you wrote:

When you send an email to [EMAIL PROTECTED] add the word
Unsubscribe to the email's subject and body, that worked for me when I
was trying to switch my e-mails.

I think it sends you an additional e-mail to confirm unsubscription,
reply to that one as well.

Then you should receive a final email with something like good bye
in the subject.

-Rashmi

On 5/17/07, Keith Adams [EMAIL PROTECTED] wrote:
No matter how many times I send a blank email to: 
[EMAIL PROTECTED], like the one I sent at 11.19 
Eastern this morning, nothing happens. I use a rule to delete them 
permanently when I'm in Outlook, but when I use my company's web 
outlook, it can only move them to the deleted-items folder, which 
rapidly fills up, making it very hard for me to find things in 
there if I need to.

Please help. Thanks,

Keith

I had a broken mail account that was subscribed to this list and that 
I could not reply from.

I successfully unsubscribed yesterday by sending to:
[EMAIL PROTECTED]

I replied from a different account and it worked!

Cheers! 


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



jsp-applet

2007-03-27 Thread Abdelmonaam Kallali
Hi everyone
I have an applet called by a jsp file but the applet is not initiated the
jsp file contains
rs1=stmt.executeQuery(select status, sum(counter) as counterSum, allDates
from(select * from(select distinct status, count(status) as counter
,dateOpened as allDates from ncrreport where unitSerNum!='no unit' and
dateOpened between curdate()-5 and curdate() group by allDates, status)as
opened union select * from  (select distinct status,
count(status),dateClosed as allDates from ncrreport where unitSerNum!='no
unit' and  dateClosed between curdate()-5 and curdate() group by allDates,
status)as closed )as allNcrs group by allDates, status);
while(rs1.next())
{
status = rs1.getString(status);
if((status.equals(closed) i%2==0)||(status.equals(open) i%2==1))
{
counter[i] = rs1.getString(counterSum);
dateOpened[i] = rs1.getString(allDates);
}
else if(i%2==0)
{
counter[i] = 0;
dateOpened[i] = rs1.getString(allDates);
counter[i+1] = rs1.getString(counterSum);
dateOpened[i+1] = dateOpened[i];
i++;
}
else 
{
counter[i] = 0;
dateOpened[i] = dateOpened[i-1];
counter[i+1] = rs1.getString(counterSum);
dateOpened[i+1] = rs1.getString(allDates);
i++;
}
i++;
}
for (j=0; ji; j++)
{
allDates+=,+dateOpened[j];
allCounters+=,+counter[j];
}

con.close();
   
%
This is an applet template:br
P%=i%/P
P%=allDates%/P
P%=allCounters%/P
!--applet code=Fluctuations3.class  height=750 width=1000
you need a java-enabled browser to see this/applet--
jsp:plugin type=applet code=Fluctuations6.class height=750
width=1000   
   jsp:params 
   
  jsp:param name=increment value=%=i% /jsp:param
  jsp:param name=counter value=%=allDates% /
  jsp:param name=dateOpened value=%=allCounters% /
   /jsp:params
   jsp:fallback   
  pUnable to load applet/p  
   /jsp:fallback  
/jsp:plugin

/body
/html

and a java file

import java.awt.*;
import java.applet.*;
import java.sql.*;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.text.DateFormat;
import java.util.*;
import java.applet.Applet;
 class Fluctuations6 extends javax.swing.JApplet {
int i;
String[] dateOpened ;
String[] counterString;
String allDates;
String allCounters;
int[] counter;

public void init() 
{
i=Integer.parseInt(getParameter(increment));
dateOpened=new String[10];
counterString=new String[10];
counter=new int[10];
for(int j=0;ji/2; j++)
{
dateOpened[j]=;
counterString[j]=;
counter[j]=0;
}


}

public void paint(Graphics g) {
allCounters=getParameter(counter);
counterString=allCounters.split(,);
allDates=getParameter(dateOpened);
dateOpened=allDates.split(,);
for(int j=0;ji/2; j++)

counter[j]=Integer.parseInt(counterString[j]);
Graphics2D g2D =(Graphics2D)g ;
g2D.drawLine( 10, getSize().height - 10, getSize().width -
10, getSize().height - 10);
g2D.drawLine( 10, getSize().height - 10, 10, 10);
g2D.drawString(allDates, 10+5*i, getSize().height - 5 );
for(int j=0; ji/2; j+=2)
{
g2D.drawString(dateOpened[j], 10+10*j, getSize().height - 5
);
g2D.drawLine( 10+10*j, getSize().height-counter[j],
10+10*(j+2), getSize().height-counter[j+2]);
g2D.drawLine( 10+10*(j+1),
getSize().height-counter[j+1], 10+10*(j+3), getSize().height-counter[j+3]);


}
}

}

can anybody tell me why it is not initiated (note that these two files are
in ROOT)

Abdelmonaam KALLALI
Test Specialist
DragonWave Inc
411 Legget Dr
Phone :613-599 9991 ext 275

-Original Message-
From: Rashmi Rubdi [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 26, 2007 2:41 PM
To: Tomcat Users List
Subject: Re: Applet not initiated

Also I don't know if you're using strict XHTML.

The applet tag is not supported in XHTML as mentioned here :
http://www.w3schools.com/tags/tag_applet.asp

they recommend using the HTML object tag
http://www.w3schools.com/tags/tag_object.asp instead of applet tag.

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED

RE: Unable to compile class for JSP

2007-03-20 Thread Abdelmonaam Kallali
Hi 
I'm not that professional
But what I did and it worked is:
Let's say we have jsp file called myJsp.jsp in ROOT and a java program
myProgram.java 
1-Compile myProgram.java in a package named myPackage In WEB-INF/classes.
2-import that package in myJsp.jsp like this %@ page import=myPackage.*%
(put it in the first line of the file)
3-somewhere in myJsp.jsp create an instance of myProgram 
myProgram prog =new myProgram ();
then use it as in java 



Abdelmonaam KALLALI
Test Specialist
DragonWave Inc
411 Legget Dr
Phone :613-599 9991 ext 275
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 20, 2007 12:21 PM
To: users@tomcat.apache.org
Subject: Unable to compile class for JSP

Hi,

This might be a silly question, but it seems to be quite a common
problem (lots or links in google). But none of the offered solutions so
far worked.

So I am asking the people who probably know!

 

I installed tomcat 4.1.29 with JDK 1.4.2

 

Trying the JSP examples coming with it, I get the following message:

 

type Exception report

message 

description The server encountered an internal error () that prevented
it from fulfilling this request.

exception 

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
 
 
 
at
org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHa
ndler.java:130)
at
org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.ja
va:293)
at
org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:353)
at
org.apache.jasper.compiler.Compiler.compile(Compiler.java:370)
at
org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.ja
va:473)
at
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.ja
va: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(Applica
tionFilterChain.java:247)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt
erChain.java:193)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValv
e.java:256)
at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i
nvokeNext(StandardPipeline.java:643)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4
80)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValv
e.java:191)
at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i
nvokeNext(StandardPipeline.java:643)
at
org.apache.catalina.authenticator.AuthenticatorBase.invoke(Authenticator
Base.java:494)
at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i
nvokeNext(StandardPipeline.java:641)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4
80)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at
org.apache.catalina.core.StandardContext.invoke(StandardContext.java:241
7)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java
:180)
at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i
nvokeNext(StandardPipeline.java:643)
at
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherVa
lve.java:171)
at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i
nvokeNext(StandardPipeline.java:641)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java
:172)
at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i
nvokeNext(StandardPipeline.java:641)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4
80)
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.i
nvokeNext(StandardPipeline.java:643)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4
80)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at
org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:193)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:78
1)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processC
onnection(Http11Protocol.java:549)
at
org.apache.tomcat.util.net.TcpWorkerThread.runIt