Free cookie consent management tool by TermsFeed Policy Generator

Changes between Initial Version and Version 1 of Ticket #860, comment 18


Ignore:
Timestamp:
05/11/10 13:57:36 (15 years ago)
Author:
gkronber
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #860, comment 18

    initial v1  
    33>  * Create a self-signed certificate for the web server.
    44
    5 This is not possible from within IIS7 because the common name will by the machine name and for WCF the common name has to match the domain name. Create a certificate including private key with {{{makecert.exe}}} and include capability for key exchange (option {{{-sky exchange}}}. Use pvk2pfx to translate into *.pfx file and install on the server. Don't forget to add the self signed certificate to the trusted certificates.
     5This is not possible from within IIS7 because the common name will by the machine name and for WCF the common name has to match the domain name. Create a certificate including private key with {{{makecert.exe}}} and include capability for key exchange (option {{{-sky exchange}}}. Use pvk2pfx to translate into *.pfx file and install on the server. Don't forget to add the self signed certificate to the
     6trusted certificates.
     7
     8{{{
     9makecert -r -pe -n CN=services.heuristiclab.com -sky exchange services.heursiticlab.com.cer -sv services.heuristiclab.com.pvk
     10
     11pvk2pfx -pvk services.heuristiclab.com.pvk -spc services.heursiticlab.com.cer
     12}}}
     13
     14
    615[[BR]]
    716[[BR]]