How can I create certificates and keys using *.bat files? Please help.

2000-06-12 Thread Derek DeMoro
I need to be able to create keys and certificates using *.bat files?  How can I do that?   Derke   Derek DeMoroChief Technical OfficerBallotDirect(650) 799-8490

Re: secure to nonsecure

2000-06-12 Thread rwidmer
** Reply to note from Darian Ong <[EMAIL PROTECTED]> 11 Jun 00 22:26:25 MDT > > Hello all, > > I am writing a cgi script to process a HTML FORM in the secure mode. > After the FORM is processed, I need to redirect the user to a non- > secured page. > > I have my virtual host setup like th

Re: secure to nonsecure

2000-06-12 Thread Balazs Nagy
[EMAIL PROTECTED] wrote: > > Darian Ong wrote: > > Warning! You have requested an insecure document that was > > originally designated a secure document (the location has > > been redirected from a secure to an insecure document). > > The document and any information you send back

Re: IE 5 File Download Problems

2000-06-12 Thread Martin Lichtin
> tried both relative and complete URL's. This works with Navigator and over > straight HTTP no SSL. Any ideas? Could this fix your problem? http://www.bivio.com/hp/downloading_with_ie.html __ Apache Interface to OpenSSL (mod_ss

IE 5 File Download Problems

2000-06-12 Thread Chris Pomerantz
I am trying to allow users to download a zip file from my web site. I have disabled keep alive just as the faq stated, which by the way made my life much easier by fixing numerous problems. No thanks to Microsoft. If I use Internet Explorer I am unable to download the file, a message pops up sayin

RE: Start Apache in SSL enabled mode

2000-06-12 Thread Danilo Nascimento
Change the SSLEngine directive to SSLEnable. bye. >From: Amol Natu <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: [EMAIL PROTECTED] >Subject: RE: Start Apache in SSL enabled mode >Date: Mon, 12 Jun 2000 23:17:55 +0400 > >Hi Danilo > >Thanx for the clarifications. Could you shed some light

RE: Start Apache in SSL enabled mode

2000-06-12 Thread Amol Natu
Hi Danilo Thanx for the clarifications. Could you shed some light on starting Apache in SSL enabled mode ? I get specific errors on starting with the directive -DSSL. (As stated in my mail) Regards Amol -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of D

Re: Accessing SSL information within servlet

2000-06-12 Thread Andrew Brady
BEFORE YOU POST, search the faq at WHEN YOU POST, include all relevant version numbers, log files, and configuration files. Don't make us guess your problem!!! --

Re: secure to nonsecure

2000-06-12 Thread Winged Wolf
I'd say that you could probably give them a Refresh: "http://some.insecure.site.com/whatever";1 header in a secure page. (You could also print some stuff out saying, "Thank you for submitting your data, we have received and processed it" or something, so they know the data was received on the sec

my key file with password protected

2000-06-12 Thread verybadboy
Hi: At first thank you . I use mod_ssl_2.4.10 with apache_1.3.9 and openssl_0.9.4 under windows nt or 2000. After I install them ,I config its httpd.conf and make it support ssl.I am sure I config it right. If I use my key file without password protected,it work; on the other h

RE: Legalese...

2000-06-12 Thread Airey, John
I'll be glad as well. That's my birthday. There are some who think that if they restrict encryption they'll stop crime that way. Now if just making something illegal stopped people breaking the law, the world would be a different place. It doesn't, and that's why we need the encryption in the fi

RE: [BugDB] use key file with password,apache + modssl doesn't work (PR#394)

2000-06-12 Thread mads
> Full_Name: schai > Version: 2.4.10 or 2.4.5 > OS: windows nt or 2000 > Submission from: (NULL) (202.105.104.96) > > > Hi: > I use mod_ssl_2.4.10 or 2.4.5 with apache_1.3.9 and > openssl_0.9.4. > After I install them ,I config my httpd.conf and make > it suport 128 ssl. >

RE: Legalese...

2000-06-12 Thread Tim Willis
Thanks for everyone's concise and well put answers to my question. I find it unfortunate, however, that so much legality surrounds encrypting and keeping private the data I send to my clients. It seems there are some who would have their fingers in everyone's pie. It's over-controlling if you a

Re: Start Apache in SSL enabled mode

2000-06-12 Thread Danilo Nascimento
Hi Amol, most the your problems are simple. I will list each one and the explanation for it: 1) The directive StartServers make no sense to Win Plataform because the model that Apache use is Thread-based. This directive is used by Apache to control Apache Child Processes, which only exist on Apa

[BugDB] use key file with password,apache + modssl doesn't work (PR#394)

2000-06-12 Thread modssl-bugdb
Full_Name: schai Version: 2.4.10 or 2.4.5 OS: windows nt or 2000 Submission from: (NULL) (202.105.104.96) Hi: I use mod_ssl_2.4.10 or 2.4.5 with apache_1.3.9 and openssl_0.9.4. After I install them ,I config my httpd.conf and make it suport 128 ssl. But if I use a ke

Re: secure to nonsecure

2000-06-12 Thread James Lyon
> Darian Ong wrote: > > Warning! You have requested an insecure document that was > > originally designated a secure document (the location has > > been redirected from a secure to an insecure document). > > The document and any information you send back could be > > observed b

RE: secure to nonsecure

2000-06-12 Thread mads
Darian Ong wrote: > Warning! You have requested an insecure document that was > originally designated a secure document (the location has > been redirected from a secure to an insecure document). > The document and any information you send back could be > observed by a third pa

secure to nonsecure

2000-06-12 Thread Darian Ong
Hello all, I am writing a cgi script to process a HTML FORM in the secure mode. After the FORM is processed, I need to redirect the user to a non- secured page. I have my virtual host setup like this: ... Redirect ^/secure/(.*) https://mysite/secure/$1 ... ... Redirect ^/uns