Jump to: navigation, search

Difference between revisions of "HowTo:Create UBIK Web Service Certificates"


(Prerequisites)
(Prerequisites)
Line 13: Line 13:
 
* C:\Program Files (x86)\Windows Kits\8.1\bin\x64 or .\x86
 
* C:\Program Files (x86)\Windows Kits\8.1\bin\x64 or .\x86
  
To use the tools you basically need a windows command console window with admin-rights and the path variable set to the directory contaning the certification binaries. If a visual studio development environment is installed, you alternatively can start a '''Visual Studio Development Console''' out of the start menu.
+
To use the tools you basically need a windows command console window with admin-rights and the path variable set to the directory contaning the certification binaries. If a visual studio development environment is installed, you alternatively can start a ''Visual Studio Development Console'' out of the start menu.
  
 
== Create Root Authority Certificate ==
 
== Create Root Authority Certificate ==

Revision as of 07:24, 3 June 2014

An UBIKCLIENT establishes a secure connection to the webservice, therefore a certificate has to be provided and installed on the IIS server running UBIK®. If a genuine Root Authority Certificate is already available this can be used. Otherwise, a temporary developer certificate might be used for development and testing.

IC Attention.pngIn both cases the service itself needs a valid service certificate which refers to the root authority.

Prerequisites

For the creation of development certificates either a visual studio development environment or a .NET framework SDK containing the certification tools is needed. For example, one of these packes can be installed:

Install Windows SDK
Install Windows SDK

The binaries for makecert and pvk2pfx can be found here (can vary depending on the used packages):

  • C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Bin
  • C:\Program Files\Windows Kits\7.1\bin
  • C:\Program Files (x86)\Windows Kits\8.1\bin\x64 or .\x86

To use the tools you basically need a windows command console window with admin-rights and the path variable set to the directory contaning the certification binaries. If a visual studio development environment is installed, you alternatively can start a Visual Studio Development Console out of the start menu.

Create Root Authority Certificate

This step can be ignored if there is already a valid root authority certificate installed on the server and the client! If not, you can create a self-signed root authority certificate and install it on the server and the client.

makecert -n "CN=<ROOTNAME>" -r -sv <ROOTNAME>.pvk <ROOTNAME>.cer
ROOTNAME ... self-signed root authority name
see MSDN

Example:
makecert -n "CN=Augmensys" -r -sv AugmensysCA.pvk AugmensysCA.cer

This root certificate must be installed on the Client and the Server.

Create Service Certificate

To create a specific service certificate, we define the site name (IP) of our sevice along with the service name.

makecert -sky <SITENAME> -iv <ROOTNAME>.pvk -n "CN=<SITE-IP>" -sv "<SITENAME>.pvk" -ic <ROOTNAME>.cer <SITENAME>.cer -sr currentuser -ss My
SITENAME ... Name of the service SITE-IP ... IP of the service (which should be accessed from the client)
See MSDN for details.

Example:
makecert -sky AugDemoIIS01 -iv AugmensysCA.pvk -n "CN=137.135.200.180" -sv "AugDemoIIS01.pvk" -ic AugmensysCA.cer AugDemoIIS01.cer -sr currentuser -ss My

While creating the certificate, the user is asked for a password to be entered, please remember this password as it it is used for further steps.

Convert Service Certificate for Import in IIS

The created certificate has to be converted for importing it on an IIS service.

pvk2pfx -pvk "<SITENAME>.pvk" -spc "<SITENAME>.cer" -pfx "<SITENAME>.pfx" -pi <PASSWORD>
See MSDN for details.

Example:
pvk2pfx -pvk "AugDemoIIS01.pvk" -spc "AugDemoIIS01.cer" -pfx "AugDemoIIS01.pfx" -pi mysecretpassword
PASSWORD ... the user-defined password used for creating the certificate in the previous step

Now the certificate is ready to be imported on the IIS.

Configure IIS

How to configure the IIS using the created certificate(s) can be done as described in section UBIK Web Service.

See also