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. |
| 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 |
| 6 | trusted certificates. |
| 7 | |
| 8 | {{{ |
| 9 | makecert -r -pe -n CN=services.heuristiclab.com -sky exchange services.heursiticlab.com.cer -sv services.heuristiclab.com.pvk |
| 10 | |
| 11 | pvk2pfx -pvk services.heuristiclab.com.pvk -spc services.heursiticlab.com.cer |
| 12 | }}} |
| 13 | |
| 14 | |