Re: E-Mail to CompuServe Customer Service

2003-08-22 Thread Pablo Mayrgundter

I agree, I've been receiving bogus replies through other addresses that act in 
the same way: I'm supposedly the original sender of the mail, but of course 
the headers show I'm not.

filter  /dev/null

On Friday 22 August 2003 1:49 pm, Eric J. Pinnell wrote:
 Yup.  It looks like an auto-responder getting flooded by sobig.  So the
 virus is hitting compuserver support and the (forged) Reply-To is the list
 address.

 Otherwise we'd get the attachment.

 -e

 On Fri, 22 Aug 2003, Mike Curwen wrote:
  Is this
  http://securityresponse.symantec.com/avcenter/venc/data/[EMAIL PROTECTED]
  tml
 
  ??
 
   -Original Message-
   From: CompuServe Customer Service [mailto:[EMAIL PROTECTED]
   Sent: Friday, August 22, 2003 12:27 PM
   To: Tomcat Users List
   Subject: E-Mail to CompuServe Customer Service
 
  -
  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]

-- 
Pablo Mayrgundter
Director of Applications and Services
www.reeltwo.com


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



Re: Tomcat Userdatabase

2003-08-20 Thread Pablo Mayrgundter

you can set it in tomcat-users.xml, e.g.:

?xml version='1.0' encoding='utf-8'?
tomcat-users
  role rolename=manager/
  role rolename=admin/
  user username=user password=pass roles=admin,manager/
/tomcat-users

On Wednesday 20 August 2003 3:45 pm, Sjoerd van Leent wrote:
 I installed the last binary build on my system, however, I need access
 to the manager web application, but I don't know the username/password.
 Where can I find this, or what is this password in general?

 Sjoerd van Leent



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

-- 
Pablo Mayrgundter
Director of Applications and Services
www.reeltwo.com


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



Re: Tomcat cannot find subclass

2003-08-20 Thread Pablo Mayrgundter
 One of the classes in that package, ServletSelectAnswerFormatter, generates
 an HTML select.  I get the options by invoking a method designed to be
 overridden in a subclass.

 My current project has such a subclass,
 CountryServletSelectAnswerFormatter, which resides in
 WEB-INF/classes/com/stortek/ilm/userresponse for the correct context.

 When the servlet runs, I get a ClassNotFoundException:

 Class not found:
 com.stortek.ilm.userresponse.CountrySelectServletAnswerFormat ter

Is this mistyped?  Above, you have CountrySelectServlet... not found, but 
you say it's actually called CountryServletSelect... (Servlet and Select 
are swapped), so it's right that it not be found.

-- 
Pablo Mayrgundter
Director of Applications and Services
www.reeltwo.com


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



Re: [File Upload] How to Increase the Speed of File transfer ??

2003-08-19 Thread Pablo Mayrgundter

 I want some suggestion about below factors:

 1.Iam sending file to server as block wise of 1024
 bytes and my servlet also writes file in remote
 destination folder as a block wise of 1024 bytes.If I
 increase the block size then is it increase the speed
 ?

Yeah.. test with higher block sizes.

 2. I have used DataOutputStream for writing on
 outputstream and InputStream for reading,if I used
 BufferWriter and BufferReader then is it increase the
 speed ?

Defnitely a good idea.

-- 
Pablo Mayrgundter
Director of Applications and Services
www.reeltwo.com


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



Re: Calendar Tool?

2003-08-19 Thread Pablo Mayrgundter

I've attached the beginnings of a community calendar I've been working on.  
The calendar arithmetic, which is the tricky part, has been taken care of.

The style design needs work.

The rest of the typical featuers, e.g. events, should probably be handled 
separately, with a DB, etc.

On Tuesday 19 August 2003 3:33 pm, Rick Roberts wrote:
 Anyone know of a decent calendar tool / server that would integrate well
 with java/jsp/jdbc/tomcat?

 Thanks,

-- 
Pablo Mayrgundter
Director of Applications and Services
www.reeltwo.com
[EMAIL PROTECTED] import=java.text.*, java.util.* %
jsp:include page=header.html.part /
%
  Date d = new Date();
  SimpleDateFormat df = new SimpleDateFormat();
  GregorianCalendar monthCal = new GregorianCalendar();
  monthCal.setTime(d);
  monthCal.set(monthCal.DAY_OF_MONTH, 1);
  GregorianCalendar utilCal = new GregorianCalendar();
  utilCal.setTime(monthCal.getTime());
  df.applyPattern(MM );
%
  center
h1Community Calendar/h1
h2%= df.format(d) %/h2
table width=75% height=75% cellpadding=5 cellspacing=0 class=calendar
%
  // Set calendars back to the Sunday preceeding the 1st.
  do {
monthCal.roll(monthCal.DAY_OF_WEEK, false);
utilCal.roll(monthCal.DAY_OF_WEEK, false);
  } while(monthCal.get(monthCal.DAY_OF_WEEK) != monthCal.SUNDAY);

  // Write out the calendar.
  df.applyPattern(E);
  for (int week = 0; week  7; week++) {
%
  tr
%
for (int day = 0; day  7; day++) {
  if (week == 0) {
%
 th width=14% height=5%%= df.format(utilCal.getTime()) %/th
%
utilCal.roll(utilCal.DAY_OF_WEEK, true);
  } else {
%
 td height=15.8% align=left valign=top%= 
monthCal.get(monthCal.DAY_OF_MONTH) %/td
%
monthCal.roll(monthCal.DAY_OF_MONTH, true);
  }
}
%
  /tr
%
  }
%
/table
  /center
jsp:include page=footer.html.part /

.calendar th {
  background-color: #ccc;
}

.calendar td {
  padding: 3px;
  border: solid 1px black;
  font-size: 8pt;
}
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

NOTE: Aliases not implemented in 5.0.3 and earlier.

2003-08-18 Thread Pablo Mayrgundter

Hi,

I just spent a bit of time trying to figure out why the Alias command in 
server.xml wasn't causing the proper virtual hosting to work.  Turns out that 
it wasn't implemented until 5.0.4.  Bummer.

Just posting this in case anyone else is browsing the archives for the same 
problem.

From the series 5 ChangeLog at: 

http://jakarta.apache.org/tomcat/tomcat-5.0-doc/changelog.html

5.0.4  Coyote  Add support for mapping host aliases (remm)

-- 
Pablo Mayrgundter
Director of Applications and Services
www.reeltwo.com


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



Re: Error when I starting Jakarta-tomcat

2003-08-18 Thread Pablo Mayrgundter

bad interpreter makes me think your java installation isn't setup correctly. 
Can you run a test Java program?

On Monday 18 August 2003 2:40 pm, Luong Phan wrote:
 Hi all,

 I am having problem starting TOMCAT, I installed j2sdk1.4.2 and
 jakarta-tomcat-3.2.4 on the Redhat Linux 7.3. Those two directories are
 located at the /usr/java.
 I set the envoroment variables in the /.bash_profile as the following:
 JAVA_HOME=/usr/java/j2sdk1.4.2
 TOMCAT_HOME=/usr/java/jakarta-tomcat-3.2.4
 CLASSPATH=$JAVA_HOME/lib/tools.jar:$TOMCAT_HOME/lib/servlet.jar
 export JAVA_HOME TOMECAT_HOME CLASSPATH

 Every time I try [EMAIL PROTECTED] root]#  $TOMCAT_HOME/bin/startup.sh
 I get the massage: bad interpreter, permision denied

 Please help me!

 LuongPhan



 -
 Do you Yahoo!?
 The New Yahoo! Search - Faster. Easier. Bingo.

-- 
Pablo Mayrgundter
Director of Applications and Services
www.reeltwo.com


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