RE: AGAIN: Does Apache worth it?

2001-07-02 Thread Todd Sussman

Pete is correct.  We could see the difference when running Tomcat and
Apache instead of Tomcat as a stand alone.  We only average 25
concurrent users and Tomcat could have been okay, but why settle for
okay?  Our HTML pages are fairly large due to intense graphics, this is
why we use Apache.  On a side note we run on a Windows 2000 Server, and
have found Apache to be quicker than IIS 5.0 as well.


Todd

-Original Message-
From: pete [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 02, 2001 12:10 PM
To: [EMAIL PROTECTED]
Subject: Re: AGAIN: Does Apache worth it?


I find Apache with Tomcat to feel noticeably faster. I have no pure HTML

pages at all, just JSPs calling backend classes.

This is simply due to the fact that Apache serves images faster, i would

think.

Since my pages contain, on average at least 5 static GIFs/JPGs, this is 
a lot fewer requests for tomcat to process.

I recommend Apache/Tomcat integration for any production setup, though 
standalone tomcat will perform just fine during the development process.

Also, if you have missed traffic on the list, why not check the archives

on jakarta.apache.org instead of reposting?

-Pete

> Hi Todd,
> 
> Can you please give me some feeling concerning the performance
improvement?
> Hoe much faster is Apache then Tomcat?
> What about the number of concurrent users? Is this an issue?
> 
> Did you find any differences concerning the stability?
> 
> Thanks,
> 
> Eitan
> 
>> -Original Message-
>> From: Todd Sussman [mailto:[EMAIL PROTECTED]]
>> Sent: Monday, July 02, 2001 11:05 AM
>> To: [EMAIL PROTECTED]
>> Subject: RE: AGAIN: Does Apache worth it?
>> 
>> 
>> We have a similar situation.  Our product is almost completly 
>> JSP's with
>> about 6 html pages.  We have found that the web server included with
>> tomcat was just too slow and we get much better performance with the
>> Apache/Tomcat setup.
>> 
>> Just my 2 cents worth.
>> 
>> Todd
>> 
>> -Original Message-
>> From: Eitan Ben Noach [mailto:[EMAIL PROTECTED]]
>> Sent: Monday, July 02, 2001 10:59 AM
>> To: '[EMAIL PROTECTED]'
>> Subject: AGAIN: Does Apache worth it?
>> 
>> 
>>  Hello all,
>> 
>> I'm sending this question again, since my mail system crashed and I
>> didn't
>> get any of your answers ( if any ).
>> 
>> If you already posted any idea concerning this issue to this mailing
>> list, I
>> will appreciate if you will post it again.
>> 
>> Here is the original message:
>> 
>> 
>>> We are intending to use Apache & Tomcat as web server in 
>> 
>> our product,
>> 
>>> and preliminary experiments show excellent performance.
>>> 
>>> Most of our web pages are JSPs and servlets, and few HTMLs and Gifs.
>>> 
>>> We wonder what is the contribution of Apache in our scenario 
>>> - some of us 
>>> think that Tomcat standalone is enough.
>>> 
>>> Is there any advantage of using Apache and not Tomcat standalone?
>>> 
>>> We will appreciate any contributing input.
>>> 
>>> Thanks,
>>> -
>>> Eitan Ben-Noach
>>> Proficiency, Ltd.
>>> 
>>> Tel: +972.2.548.0287
>>> Fax: +972.2.586.3871
>>> email: [EMAIL PROTECTED]
>>> 
>>> The Intelligence in Engineering Supply Chain Collaboration
>>> <http://www.proficiency.com/>
>>> 
>>> 
>>> 
>>> 
>>>  
>>> 





RE: AGAIN: Does Apache worth it?

2001-07-02 Thread Todd Sussman

We have a similar situation.  Our product is almost completly JSP's with
about 6 html pages.  We have found that the web server included with
tomcat was just too slow and we get much better performance with the
Apache/Tomcat setup.

Just my 2 cents worth.

Todd

-Original Message-
From: Eitan Ben Noach [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 02, 2001 10:59 AM
To: '[EMAIL PROTECTED]'
Subject: AGAIN: Does Apache worth it?


 Hello all,

I'm sending this question again, since my mail system crashed and I
didn't
get any of your answers ( if any ).

If you already posted any idea concerning this issue to this mailing
list, I
will appreciate if you will post it again.

Here is the original message:


> 
> We are intending to use Apache & Tomcat as web server in our product,
> and preliminary experiments show excellent performance.
> 
> Most of our web pages are JSPs and servlets, and few HTMLs and Gifs.
> 
> We wonder what is the contribution of Apache in our scenario 
> - some of us 
> think that Tomcat standalone is enough.
> 
> Is there any advantage of using Apache and not Tomcat standalone?
> 
> We will appreciate any contributing input.
> 
> Thanks,
> -
> Eitan Ben-Noach
> Proficiency, Ltd.
> 
> Tel: +972.2.548.0287
> Fax: +972.2.586.3871
> email: [EMAIL PROTECTED]
> 
> The Intelligence in Engineering Supply Chain Collaboration
> 
> 
> 
> 
> 
>  
> 



RE: IIS and Tomcat

2001-06-05 Thread Todd Sussman

The messages show you are running IIS as the webserver and it is
redirecting the servlets to tomcat.  When you shutdown tomcat, IIS can
no longer redirect the servlets to tomcat and therefor you get an error.
I have never set Tomcat as a stand alone server, but it can be done.

Todd

-Original Message-
From: Chris Faulkner [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 05, 2001 12:50 AM
To: [EMAIL PROTECTED]
Subject: IIS and Tomcat


Hi

I am just trying to get my servlets tested on IIS (windows 2000) and
Tomcat.
I have done all the set-up steps, the isapi_redirect stuff seems to be
functioning. I have IIS on W2K with Tomcat 3.2.2 and JDK 1.3.0_02. IIS
is on
the usual port 80.

If I start up "tomcat run", tomcat starts and initialises everything
(IIS is
also running at this time)

http://localhost:8080/examples/servlet/SnoopServlet

I can see that its coming from Tomcat.

If I hit

http://localhost/examples/servlet/SnoopServlet

This also works and it tells me that the port is 80 and the server is
Tomcat. However, I know that the port 80 is being served by IIS and I
can
see the request in the IIS logs, being redirected to
/jakarta/isapi_redirect.dll. Why is it telling me that the web server is
Tomcat ?

So it all looks good, except that if I do a "tomcat stop", then the
servlet
requests to IIS start to fail. Is this expected ? If so, can I run
tomcat
without opening up that 8080 port ? Maybe I'm a bit confused  but I'd
like
to have tomcat managing my servlets without essentially having a second
web
server running.

Secondly, how do I get a jar loaded and get access to the classes within
that jar ? Where do I put it and how can classes in it be aliased ?

Thirdly, and probably related, how can I use the  tag in my
.shtml
web pages. I was using Apache JSSI previously.

Thanks very much


Chris Faulkner






RE: Tomcat in Win2k with IIS

2001-06-05 Thread Todd Sussman

To answer your first question on wether you need a seperate web server,
the answer is no.  Tomcat works as a web server as well, but it is not a
fast server. JDK includes (I believe) a java compiler to create the java
files and and interpreter to run the java files.  This is why you need
it.  If you are running on a NT machine and want to run it as a service,
you will want to use JDK 1.2.2 (correct me if I am wrong).I am pretty
sure the directory "jakarta" has to be a virtual directory as far as the
redirector is concerned.  If you install JDK and try again, I think you
shouldn't have a problem.  In addition it is usually better to create
system env. variable rather than user.

-Original Message--- --
From: Winer, Matthew [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 05, 2001 11:04 PM
To: '[EMAIL PROTECTED]'
Subject: Tomcat in Win2k with IIS


I am currently trying to install Tomcat 3.2.2 on a windows 2000 box with
IIS.  I am really confused. Can Tomcat be run standalone as its own web
server?  Or does it have to have a webserver installed (like IIS).  I
tried
to follow the tomcat_ug.htm file for installation.  I went through the
"How
do I Install the Binary Version of Tomcat" and when I got down to set
environment variable JAVA_HOME.  I started to loose it.  I don't have
JDK
installed but I do have JRE1.3 installed (Is there a difference?)  And
what
is the Java interpreter, and where do I find that?

So then I moved on.  I saw that I could use scrips to setup Tomcat.  I
tried
Tomcat env and I guess it didn't work.  

Next I tried the Tomcat IIS How To.  I followed the Installation.  I
downloaded the DLL and put it in \bin\win32\i386
I went through and did minor changes to workers.properties.  Then I went
through the painful task of adding the key and strings into the
registry.
It is a new web server so I made the root directory the dir with the DLL
file.  (Does it have to be a virtual dir?)  I then added the filter and
restarted IIS.  There is still a Red arrow next to the filter.  That is
when
I put everything down.  (BIG HEADACH)  

Thank you for your time!

Matthew Winer




RE: Tomcat IIS how to

2001-06-03 Thread Todd Sussman

Be sure to double check the spelling.  We run IIS + Tomcat on a Win2k
Server and Adv. Server.  Both setups work well.  We had a similar
problem and it was just a spelling error.

Todd

-Original Message-
From: Jimmie Dean [mailto:[EMAIL PROTECTED]]
Sent: Sunday, June 03, 2001 9:09 PM
To: [EMAIL PROTECTED]
Subject: Tomcat IIS how to


Dear sir,

I followed the instruction on this document to run JSP under IIS.
However it 
did not work.  I did not see the green light for the jakarta filter in
the 
IIS management control, under default web site.  I believe somehow your 
document might not be complete for win2000 (the system I am on). Somehow
the 
registry entry was not recognized by IIS.

Is there any other document can help?

Thanks and regards
Jimmie Dean
_
Get your FREE download of MSN Explorer at http://explorer.msn.com




RE: certificate for tomcat and ssl

2001-05-31 Thread Todd Sussman

We use Tomcat 3.2.1 with IIS5.0 on Win2k.  We setup our Tomcat the same
way and all works well here too.

Todd

-Original Message-
From: Twylite [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 31, 2001 4:47 PM
To: [EMAIL PROTECTED]
Subject: Re:certificate for tomcat and ssl


Hi

>Has someone configured tomcat to work with SSL without use APACHE
server? I've try lot of things and 
nothing has worked, i'm seeking for all the steps to generated
certificate and configure tomcat to work with it. 
Can someone help me?


I am running Tomcat 3.2.1 (as its own webserver) under Windows 2000 with
Sun's JDK 1.3.  I have SSL 
working successfully.  For the most part following the tomcat-ssl HOWTO
is the right way to go.  This is what I 
did (if I remember correctly):

Download the JSSE jar file from sun
(http://java.sun.com/products/jsse/).  Place the .jar file in your 
$JAVA_HOME/jre/lib/ext directory, as well as in $TOMCAT_HOME/lib .  You
shouldn't need both, but I have 
class-not-found problems otherwise.

Tomcat 3.2.1 is compiled with SSL support, as long as it finds that
jsse.jar file, so that's all okay.

Find the file $JAVA_HOME/jre/lib/security/java.security.  There is
probably already a line starting with 
"security.provide.2" - comment it out with a #, and add the line:
security.provider.2=com.sun.net.ssl.internal.ssl.Provider 

Now create yourself an SSL certificate, using the Java "keytool"
utility.  You should run:
keytool -genkey -alias tomcat
Answer all the questions, and use the same password for the keystore and
the key you generate!

Now you need to edit your $TOMCAT_HOME/conf/server.xml file, and add in
the SSL configuration:
(if you have an HTML browser, the next bit, which is XML, will be
missing.  Have a nice day.)








Now restart your tomcat server, and watch as it hopefully finds
everything and starts listening for SSL 
connections on port 8443.

Twylite




RE: JSP and Javascript

2001-05-31 Thread Todd Sussman

This is a warning for you and to inform the other members of this list
of what was causing our problems regarding SSL.  When using IE5.5 and
Javascript on a webserver with SSL you will receive an error that you
are d/ling secure and unsecure data.  This is a bug in IE5.5.  A
possible workaround is to replace the javascript: psuedo-protocol with
onclick.  We are beggining to test this and I will inform the group as
to the results.  Please keep in mind I am a system's admin and not a
programmer, so my terms may not be 100%.

Todd

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 31, 2001 2:41 PM
To: [EMAIL PROTECTED]
Subject: JSP and Javascript


Can I open a Jsp from the JavaScript OPEN function?
For example I want to open a jsp from a html form when a button is
pressed.
The code looks like this:



When I press the button, Netscape opens up a download file dialogue box.

I can run the jsp alone but not in an HTML page.  All the examples I
have
seen have html run a servlet and the servlet forwards the JSP.

Thanks

Jeff Sulman




RE: Tomcat/IIS Installation Problem

2001-05-31 Thread Todd Sussman

   I am sorry if this question was answered, but our mail server was
down for 2 days.

We have tomcat 3.2.1 running on Win2k (IIS 5.0).

When we run using http, all is fine.  When adding SSL via a Verisign
Cert., we get a message asking whether we want to d/l secure and
unsecure information.  I then installed JSSE 1.0.2 and modified our
server.xml to allow https requests.  I used keytool to import the cert.
using tomcat as the alias.  I get a message no self-signed cert.
available.  This is from verisign and is not self created.  How do I get
tomcat to use this cert. to serve JSP's under SSL.

Thank You Again,

Todd



RE: Still Have SSL problems

2001-05-28 Thread Todd Sussman

I am sorry this is taking up alot of peoples time..
Now i get an error no self-signed certificate in reply

Any Ideas?
Todd

-Original Message-
From: Rams [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 29, 2001 9:06 AM
To: [EMAIL PROTECTED]
Subject: RE: Still Have SSL problems


if u have certificate, u can import it to keystore thru' keytool with
alias
'tomcat'.
try with this.

Rams

-Original Message-----
From: Todd Sussman [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 29, 2001 12:06 PM
To: [EMAIL PROTECTED]
Subject: RE: Still Have SSL problems


Ok.  Maybe I can explain a little better.  I had tomcat running against
IIS.  All was fine.  I added a SSL Cert from Verisign to the IIS.  I
need to allow tomcat to use SSL aswell.  I uncommented the section in
server.xml for use with SSL.  What I need is to know how to import the
same ssl cert to Tomcat (3.2.1/JDK1.2.2).  Do I need to run keytool and
create a new one for tomcat or can I import it somehow?

Thanks

Todd

-Original Message-
From: Warren Crossing [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 29, 2001 8:19 AM
To: '[EMAIL PROTECTED]'
Subject: RE: Still Have SSL problems


it should jsut use keytool that comes with the jdk.. have a look at the
tools java doc.
i think that netscape object signing uses netscapes keystore. but java (
jdk
) also has a keystore and tool.

hope this helps.

-Original Message-
From: Todd Sussman [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, 29 May 2001 3:23 PM
To: [EMAIL PROTECTED]
Subject: Still Have SSL problems


I altered the server.xml file as explained in the ssl + tomcat document.
The problem I have is that I do not understand how to import the cert. I
have from Verisign.  This was created with a request gernerated by IIS
5.0.  I keep getting an error that it can not find the .keystore file.
Do I need to d/l and install openssl to generate a second key for
tomcat?
I am just learning tomcat and if you need further information to help
me, I will gladly post more.

Thank You in Advance

Todd




RE: Still Have SSL problems

2001-05-28 Thread Todd Sussman

Ok.  Maybe I can explain a little better.  I had tomcat running against
IIS.  All was fine.  I added a SSL Cert from Verisign to the IIS.  I
need to allow tomcat to use SSL aswell.  I uncommented the section in
server.xml for use with SSL.  What I need is to know how to import the
same ssl cert to Tomcat (3.2.1/JDK1.2.2).  Do I need to run keytool and
create a new one for tomcat or can I import it somehow?

Thanks

Todd

-Original Message-
From: Warren Crossing [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 29, 2001 8:19 AM
To: '[EMAIL PROTECTED]'
Subject: RE: Still Have SSL problems


it should jsut use keytool that comes with the jdk.. have a look at the
tools java doc.
i think that netscape object signing uses netscapes keystore. but java (
jdk
) also has a keystore and tool.

hope this helps.

-Original Message-----
From: Todd Sussman [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, 29 May 2001 3:23 PM
To: [EMAIL PROTECTED]
Subject: Still Have SSL problems


I altered the server.xml file as explained in the ssl + tomcat document.
The problem I have is that I do not understand how to import the cert. I
have from Verisign.  This was created with a request gernerated by IIS
5.0.  I keep getting an error that it can not find the .keystore file.
Do I need to d/l and install openssl to generate a second key for
tomcat?
I am just learning tomcat and if you need further information to help
me, I will gladly post more.

Thank You in Advance

Todd



Still Have SSL problems

2001-05-28 Thread Todd Sussman

I altered the server.xml file as explained in the ssl + tomcat document.
The problem I have is that I do not understand how to import the cert. I
have from Verisign.  This was created with a request gernerated by IIS
5.0.  I keep getting an error that it can not find the .keystore file.
Do I need to d/l and install openssl to generate a second key for
tomcat?
I am just learning tomcat and if you need further information to help
me, I will gladly post more.

Thank You in Advance

Todd




RE: IIS + Tomcat + SSL

2001-05-28 Thread Todd Sussman

I am redoing the server.xml file incase of any errors I may have made.
This being the first time I have delt with SSL at all.  When we access
our site with http everything works fine.  The same with https.  The
problem is that when we request using https, a message appears asking if
we would like to download secure and non-secure items.  So I assume this
is the jsp's throwing the error/message.

Todd

-Original Message-
From: Rams [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 28, 2001 6:55 AM
To: [EMAIL PROTECTED]
Subject: RE: IIS + Tomcat + SSL


Hi Todd,
did u make changes in server.xml of tomcat for ssl enabling?
not that jsp doesnt agree or servlets only agree? 
u r worried of URL for https,not the component,ok.
let me know how did u test ur jsp using https?
was it working with http?

--Rams


-Original Message-
From: Todd Sussman [mailto:[EMAIL PROTECTED]]
Sent: Sunday, May 27, 2001 12:26 PM
To: [EMAIL PROTECTED]
Subject: IIS + Tomcat + SSL


We have a working IIS + Tomcat 3.2.1 server running under windows 2000.
We would like to add SSL security.  I recieved my cert from Verisign and
installed it.  The problem is that I don't think the JSP's aree using
the SSL information.  Is there anyway to test this or a howto I can
check.

Thank You
Todd





RE: tomcat-iis configuration

2001-05-28 Thread Todd Sussman

The servlets we had mapped in tomcat.conf had to be added as aliases in
IIS.  The same way you added "jakarta" for isapi_redirect.dll
 
Hope this helps.
 
Todd

-Original Message-
From: hardik [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 06, 2001 3:23 PM
To: [EMAIL PROTECTED]
Subject: tomcat-iis configuration


hi!..
 
i tried to configure IIS- with tomcat3.2.. and was successful in serving
the /examples context with the IIS...
but i want to add more context to be served by IIS.. i followed the
steps described in the file.. but it doesnt work.. can anyone tell me
how to make
other contexts work with IIS.
 
thanxs..
 
hardik




IIS + Tomcat + SSL

2001-05-26 Thread Todd Sussman

We have a working IIS + Tomcat 3.2.1 server running under windows 2000.
We would like to add SSL security.  I recieved my cert from Verisign and
installed it.  The problem is that I don't think the JSP's aree using
the SSL information.  Is there anyway to test this or a howto I can
check.

Thank You
Todd

-Original Message-
From: Nirvana [mailto:[EMAIL PROTECTED]]
Sent: Sunday, May 27, 2001 8:24 AM
To: [EMAIL PROTECTED]
Subject: Re: Tomcat and weblogic


Tomcat is a servlet/JSP engine with a small in efficient web engine. It
can
not host any other stuff like EJBs or anything. But Weblogic is an
AppServer. So it has both an EJB container/engine and a Servlet/JSP
engine.
but some ppl use tomcat for their servlet/JSP hosting for it's known
performance and use any other appserver like weblogic for EJB hosting.

-Nirvana

-Original Message-
From: Salwa Ananou <[EMAIL PROTECTED]>
To: Tomcat-User (E-mail) <[EMAIL PROTECTED]>
Date: Friday, May 25, 2001 3:26 AM
Subject: Tomcat and weblogic


>Hi,
>
>I m a new tomcat user and i don't know a lot about it;
>
>My stuff is designed to work with an application server and i need also
>tomcat;
>
>Can i use Tomcat as a application server, ? or must I install weblogic
and
>tomcat at the same machine;
>
>or does weblogic include all tomcat fonctionalities; so i don't need
tomcat.
>
>thanks
>
>




RE: Obtaining SSL Certificate in Servlet/JSP Page?

2001-05-10 Thread Todd Sussman

Don't quote me, but I remember seeing a similar post before.  As I
recall apache will not forward the ssl information to tomacat.  Hope
that helps.

Todd

-Original Message-
From: Brendan McKenna [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 10, 2001 10:58 AM
To: [EMAIL PROTECTED]
Subject: Obtaining SSL Certificate in Servlet/JSP Page?


Hi,

We are using the following environment:

Linux / Apache 1.3.19/mod_ssl/mod_jk  / Tomcat 3.2.1 

In a portion of our application, we're using apache/mod_ssl to 
require the user to present us with a client certificate.  All of this 
works fine.  Where we're having a problem is in getting the certificate 
that the client has passed to apache in our JSP pages and Servlets 
running under Tomcat.  Is this even possible?  We've looked at the 
various javax.servlet.* API's and it doesn't seem to be.  Have also 
looked over various portions of the Tomcat code and don't really see 
anything there.

Does anyone have any clues as to how we can do this?


Brendan 
-- 
Brendan McKennaEmail:
[EMAIL PROTECTED]
Development Strategist Phone: +353-61-338177
Taringold Ltd. Fax:   +353-61-338065





RE: Problem in refresh the new jsp file

2001-05-09 Thread Todd Sussman

We have this same problem.  Our work around is to add a space to the
name of our scripts.js file and resave.  The remove the space.  This
seems to work for us.

Todd Sussman
System Manager
CareONnet Ltd.

-Original Message-
From: Franky Tong [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 09, 2001 11:37 AM
To: [EMAIL PROTECTED]
Subject: Re: Problem in refresh the new jsp file


It is not a browser-cache problem because I have run the jsp file in
several machines.

What is tomcat-not-recompiling-source problem?

"Samson, Lyndon [IT]" wrote:

> You need to find out if its a browser-cache problem, or a
> tomcat-not-recompiling-source problem.
>
> -Original Message-
> From: Franky Tong [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, May 09, 2001 9:42 AM
> To: [EMAIL PROTECTED]
> Subject: Problem in refresh the new jsp file
>
> Hi all,
>
> I have a problem that I get an outdated JSP page even if I have
updated
> the JSP file in the server. It shows me the old content in the browser
> even I have refreshed the page.
>
> Is there something that I need to set about the caching?
>
> Thanks!

--
Data Center,
Global Infrastructure Solution Team (GIS)

Direct Phone  : 2666 8364
Pager   : 7203 2006
Mobile  : 9373 0760





IIS 5.0 + Tomcat + SSL ??

2001-05-03 Thread Todd Sussman

Our setup is like this:
We have a win2k Server running IIS 5.0 with Tomcat serving JSP's.  This
works fine when using http.
I Downloaded a test SSL certificate from Verisign in order to decide
if/when we will implement this.  I have never worked with ssl and when I
install the certificate and attempt to access the site via https it
doesn't find the page.
 
Thank you in advance for any help.
 
Todd



RE: chart in jsp

2001-03-26 Thread Todd Sussman

We use a program called ESPRESS Chart.  It is used to show ECG readings
to a web based application.

Todd

-Original Message-
From: Kenneth Westelinck [mailto:[EMAIL PROTECTED]]
Sent: Monday, March 26, 2001 2:50 PM
To: [EMAIL PROTECTED]
Subject: Re: chart in jsp


Hi,


Maybe you should use an applet.


regards,

Kenneth Westelinck

>From: Ludovic Maitre <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: Re: chart in jsp
>Date: Mon, 26 Mar 2001 14:34:46 +0200
>
>Altuð Altýntaþ (Koç.Net) wrote:
> >
> > are there  any way to draw a dynamic chart in jsp ?
> >
> > any source  or idea ?
> >
> > thanks ..
> >
> > Altug
>
>Perhaps that you can generate an SVG image (cf www.w3.org) from your
>data but it's more easy with XML than with JSP.
>And your public must have a SVG plugin on their browser.
>
>Regards,
>
>--
>  [EMAIL PROTECTED]
>
>  INRIA - 2004 route des lucioles - BP 93Tel: (33/0) 4 92 38 50 41
>  06902   SOPHIA-ANTIPOLIS cedex (France)Fax: (33/0) 4 92 38 76 02


_
Get Your Private, Free E-mail from MSN Hotmail at
http://www.hotmail.com.




SSL With Win2k/Apache/Tomcat

2001-03-14 Thread Todd Sussman

First off I would like to sorry, because I am sure this has been asked a
million times.  I did look at the FAQ's for tomcat, but didn't see it
there.

 running 2 servers:

(1)NT/Apache/Tomcat
and
(2)Win2k/Apache/Tomcat

We would like to add SSL support.  Can someone point in the right
direction to find the information I need?

Thank You in Advance

Todd



Tomcat as NT Service with Invoker

2001-02-14 Thread Todd Sussman

I have installed a service with invoker for Tomcat.  The problem I am
having is that when I try to start the service, I get an error message
that there is an overlap in i/o in progress.  Error 997 to be exact.
Any Ideas.  Any other info you need to help me out?

TIA
Todd

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




RE: Multi language support in tomcat??

2001-01-01 Thread Todd Sussman

One additional question.  The language properties for tomcat, is this
the localestring.properties file? and if so, do I just add the iso for
Greek or replace the English one?

-Original Message-
From: Todd Sussman 
Sent: Monday, January 01, 2001 9:50 AM
To: [EMAIL PROTECTED]
Subject: Multi language support in tomcat??


What I am trying to do is use both/either Greek and English fonts in a
JSP.  The problem is that the server receives ???, instead of What I
type.  Do I need to change a language.properties file or something?

Todd

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


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




Multi language support in tomcat??

2000-12-31 Thread Todd Sussman

What I am trying to do is use both/either Greek and English fonts in a
JSP.  The problem is that the server receives ???, instead of What I
type.  Do I need to change a language.properties file or something?

Todd

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




RE: memory req's for tomcat

2000-12-27 Thread Todd Sussman

Don't quote me, but from what I understand, when using Tomcat on a linux
machine, you can use another program called MM (memory manager).

But, I wouldn't listen to what I have to say,  I can't get the company I
work for to stop using Apache on windows machines...

Todd

-Original Message-
From: Jed Duty [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 27, 2000 6:04 PM
To: '[EMAIL PROTECTED]'
Subject: memory req's for tomcat


Is there a way to reduce the amount of memory used by tomcat?  With it
just
running and not having o load any pages or anything it uses 20meg of
ram.
Right now I am working with tomcat 3.2.1, do any of the newer versions
have
lower memory req's?

Jed Duty




RE: 403 forbidden in tomcat-apache

2000-12-26 Thread Todd Sussman
Also...403 error sometimes is caused when you do not allow the proper
permissions on the work directory where the jsp's are compiled

Todd

-Original Message-
From: NSB)Hiroshi Kasamatsu [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 26, 2000 1:11 PM
To: [EMAIL PROTECTED]
Subject: Re: 403 forbidden in tomcat-apache


In advance,apache needs to be compiled with ./configure
--enable-rule=SHARED_CORE
--enable-module=so.

Parvez wrote:

> hi,
>
> i have installed tomcat 3.2.1, with apache 1.3.12 on a linux machine.
> it works perfectly fine on port 8080, but when i include it with
> apache conf (i.e. tomcat-apache.conf) and try to access the same
jsp/servlet
> file, it gives 403 forbidden error.
> my http user in apache is "nobody:nobody" and my htdocs is conrolled
by "admin".
> can someone tell me, where the problem is?
> thanks in advance.
>
> parvez


error 405 when using post

2000-11-07 Thread Todd Sussman

I am running apache 1.3.14 --  tomcat 3.1 --  and the jserv.so on a linux
RH6.2 machine.
In order to log in to our service we use jsp pages with the post method.  It
is being written to another jsp page.  I understand that the post must go to
an executable and I assume a jsp page is one.  But I always get the 405
method not allowed.  I have chmod to 755 the directory with our jsp's but
this didn't help.  It works fin under winNT and 2000.  Any ideas would be
appreciated.  Thanks in advance.

Todd

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 07, 2000 3:48 AM
To: '[EMAIL PROTECTED]'
Subject: RE: jars in WEB-INF/lib


Sure, anybody know if .zip's are treated the same way as .jars?

I had to rejar a .zip today to get things to work as I expected.

On Tue, 7 Nov 2000, James Cribb wrote:

> | From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> | To: [EMAIL PROTECTED]
> | Subject: jars in WEB-INF/lib
> |
> |
> | For JASPER to compile JSPs is it enough to simply have my
> | jars in the lib directory. These are implicitly known to the
> | classloader right?
> |
> | ie. I do not have to have these jars in my CLASSPATH right?
>
> Correct.  Also, if jars are in WEB-INF/lib and NOT in CLASSPATH, and the
> context has the "reloadable=true" attribute set in server.xml, Tomcat will
> automatically reload the jars if they change.  This means you don't have
to
> keep restarting Tomcat while you're developing your jars -- very useful.
> The secret is that you need different CLASSPATHs for compiling your java
> files and for running Tomcat.  It took me two months to discover this, it
is
> so poorly documented, I thought I'd better share it.
>