can SSL an non-SSL run at the same time??

2001-04-05 Thread Alvin Yap
I have setup the Tomcat 4.0b1 running with SSL. Is it possible to run non-SSL in a different context?? It seems to me that whenever i turn on SSL all context will be listening on SSL port. Alvin

Re: can SSL an non-SSL run at the same time??

2001-04-05 Thread Alvin Yap
Apache-SSL. Don't know what the > previous poster is using. > > And in fact, it's also possible to run Tomcat standalone with SSL. > > > From: Alvin Yap > > Reply-To: [EMAIL PROTECTED] > > To: "[EMAIL PROTECTED]" > > Subject: can SSL an non

Re: can SSL an non-SSL run at the same time??

2001-04-05 Thread Alvin Yap
Thanks Milt. I'll give it a try using Apache Web Server. Alvin Milt Epstein wrote: > On Thu, 5 Apr 2001, Alvin Yap wrote: > > > I running Tomcat as a standalone using SSL. > > What i'm hoping to do is that one context with non-SSL and the other > > context

Re: Dates in Java

2001-04-06 Thread Alvin Yap
I think you need a java.sql.Timestamp type as compared to java.util.Date type To create new timestamp or long time = System.currentTimeMillis(); Timestamp currentTime = new Timestamp( time ); ... This object will hold the date and time. If you want to format the time differently use Calend