Resolved: Secure XMLRPC Server / PEM Files

2006-09-12 Thread Daniel Crespo
Hi everybody, For those who want to implement a SecureXMLRPCServer (HTTPS), here is what I finally found in the Internet. I will summarise everything for the people like me that need extra help just to get running an HTTPS XMLRPC Server :) This summary is not intended to be exhaustive, but just t

Re: Secure XMLRPC Server / PEM Files

2006-09-12 Thread Daniel Crespo
Hi Laszlo, > Try this (untested): > > openssl req -config openssl.cnf -new -out my-server.csr > openssl rsa -in privkey.pem -out my-server.key Here's what I tried: C:\OpenSSL\bin>openssl req -config openssl.cnf -new -out my-server.csr Loading 'screen' into random state - done Generating a 1024 b

Re: Secure XMLRPC Server / PEM Files

2006-09-12 Thread Laszlo Nagy
Daniel Crespo írta: > Hi Laszlo, > > I have read that. It's the wrapper for the usage of OpenSSL, so I have > to install it. I have downloaded the Borland C++ compiler, and I'm > doing so right now, but I'm not getting good results yet. > You do not need any compiler. You just need to install th

Re: Secure XMLRPC Server / PEM Files

2006-09-11 Thread Daniel Crespo
Hi Laszlo, I have read that. It's the wrapper for the usage of OpenSSL, so I have to install it. I have downloaded the Borland C++ compiler, and I'm doing so right now, but I'm not getting good results yet. I tried to import OpenSSL, it seems to work. Now, I want to try the code I submited earli

Re: Secure XMLRPC Server / PEM Files

2006-09-11 Thread Laszlo Nagy
Daniel Crespo írta: > Laszlo Nagy wrote: > >>> If you have OpenSSL installed, you can do the following: >>> >>> 1. Create a new directory and place the two attached files in it >>> (openssl.cnf and generate.sh) >>> 2. Run "chmod +x gen_cert.sh ; ./gen_cert.sh yourdomain.com" >>> >> I me

Re: Secure XMLRPC Server / PEM Files

2006-09-11 Thread Daniel Crespo
Laszlo Nagy wrote: > > > > > > If you have OpenSSL installed, you can do the following: > > > > 1. Create a new directory and place the two attached files in it > > (openssl.cnf and generate.sh) > > 2. Run "chmod +x gen_cert.sh ; ./gen_cert.sh yourdomain.com" > I meant generate.sh instead of gen

Re: Secure XMLRPC Server / PEM Files

2006-09-11 Thread Laszlo Nagy
> > > If you have OpenSSL installed, you can do the following: > > 1. Create a new directory and place the two attached files in it > (openssl.cnf and generate.sh) > 2. Run "chmod +x gen_cert.sh ; ./gen_cert.sh yourdomain.com" I meant generate.sh instead of gen_cert.sh. Under windows it won't

Re: Secure XMLRPC Server / PEM Files

2006-09-11 Thread Laszlo Nagy
Daniel Crespo írta: Hello everybody, I'm trying to implement a secure xmlrpc server with basis on http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/496786 recipe. The thing that I'm concerned about is how can I get/create rapidly the .pem files (the key and cert). Any help? Hello, If

Secure XMLRPC Server / PEM Files

2006-09-11 Thread Daniel Crespo
Hello everybody, I'm trying to implement a secure xmlrpc server with basis on http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/496786 recipe. The thing that I'm concerned about is how can I get/create rapidly the .pem files (the key and cert). Any help? Thanks Daniel -- http://mail.pyt