<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>
			Comments on &quot;Using Makecert to Create Certificates for Development&quot;
		</title>
		<link>http://www.digitallycreated.net/Blog/38/using-makecert-to-create-certificates-for-development</link>
		<atom:link href="http://www.digitallycreated.net/Blog/38/using-makecert-to-create-certificates-for-development/CommentRss" rel="self" type="application/rss+xml" />
		<description>
			A feed of all comments that are posted on the blog titled &quot;Using Makecert to Create Certificates for Development&quot;.
		</description>
		<lastBuildDate>Wed, 22 May 2013 04:14:50 GMT</lastBuildDate>
		
		
			<item>
				<title>PaleLocust commented on &quot;Using Makecert to Create Certificates for Development&quot;</title>
				<link>http://www.digitallycreated.net/Blog/38/using-makecert-to-create-certificates-for-development#Comment9</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 9</guid>
				<dc:creator>PaleLocust</dc:creator>
				<pubDate>Thu, 06 May 2010 20:46:09 GMT</pubDate>
				<description>
					First, nice blog.&lt;br/&gt;&lt;br/&gt;Second, thanks for this post.  I had about 75% of the steps down.  I was missing the pvk2pfx and a couple other aspects, and it looks like now I've got what I needed.&lt;br/&gt;&lt;br/&gt;Thanks&lt;br/&gt;Nate
				</description>
			</item>
		
		
			<item>
				<title>Hammad commented on &quot;Using Makecert to Create Certificates for Development&quot;</title>
				<link>http://www.digitallycreated.net/Blog/38/using-makecert-to-create-certificates-for-development#Comment14</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 14</guid>
				<dc:creator>Hammad</dc:creator>
				<pubDate>Wed, 19 May 2010 14:33:36 GMT</pubDate>
				<description>
					Awesome Post. Really helped me creating self-signed certificated for testing
				</description>
			</item>
		
		
			<item>
				<title>Nicholas Piasecki commented on &quot;Using Makecert to Create Certificates for Development&quot;</title>
				<link>http://www.digitallycreated.net/Blog/38/using-makecert-to-create-certificates-for-development#Comment16</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 16</guid>
				<dc:creator>Nicholas Piasecki</dc:creator>
				<pubDate>Wed, 01 Sep 2010 12:39:09 GMT</pubDate>
				<description>
					Great post! Really helpful.
				</description>
			</item>
		
		
			<item>
				<title>hchattaway commented on &quot;Using Makecert to Create Certificates for Development&quot;</title>
				<link>http://www.digitallycreated.net/Blog/38/using-makecert-to-create-certificates-for-development#Comment17</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 17</guid>
				<dc:creator>hchattaway</dc:creator>
				<pubDate>Sun, 24 Oct 2010 15:57:52 GMT</pubDate>
				<description>
					Great post, answered a lot of questions!&lt;br/&gt;&lt;br/&gt;Still have one issue though.. &lt;br/&gt;&lt;br/&gt;I am creating a wcf service that needs a certificate for encryption...It will be hosted in IIS. After creating the cert, i had read it needs to be given ASPNET permissions to function properly in this environment... is that the case?&lt;br/&gt;&lt;br/&gt;Thanks&lt;br/&gt;Harold&lt;br/&gt;
				</description>
			</item>
		
		
			<item>
				<title>Digambar Kandangire commented on &quot;Using Makecert to Create Certificates for Development&quot;</title>
				<link>http://www.digitallycreated.net/Blog/38/using-makecert-to-create-certificates-for-development#Comment30</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 30</guid>
				<dc:creator>Digambar Kandangire</dc:creator>
				<pubDate>Thu, 31 Mar 2011 06:30:36 GMT</pubDate>
				<description>
					Great explanation! Thanks.
				</description>
			</item>
		
		
			<item>
				<title>Polo commented on &quot;Using Makecert to Create Certificates for Development&quot;</title>
				<link>http://www.digitallycreated.net/Blog/38/using-makecert-to-create-certificates-for-development#Comment31</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 31</guid>
				<dc:creator>Polo</dc:creator>
				<pubDate>Thu, 07 Apr 2011 13:33:34 GMT</pubDate>
				<description>
					Hi all,&lt;br/&gt; I am facing a problem. Let me explain&lt;br/&gt;&lt;br/&gt;I have a rootCA certificate generated using this commandline &lt;br/&gt;makecert -pe -sky signature -sr localmachine -n &amp;quot;CN=RootTrustedCA&amp;quot; -ss ROOT -r RootTrustedCA.cer&lt;br/&gt;&lt;br/&gt;This is a part of a batch file that runs when we set up the server and the RootTrustedCA certificate sits under trusted sites of local machine in mmc.&lt;br/&gt;&lt;br/&gt;Now we generate another certificate(%ComputerName%) for IIS binding on the server machine using makecert -sk %COMPUTERNAME% -ss MY -sky exchange -sr localmachine -n &amp;quot;CN=%COMPUTERNAME%&amp;quot; -ic RootTrustedCA.cer -is ROOT -e 01/01/2028 %COMPUTERNAME%.cer&lt;br/&gt;&lt;br/&gt;Now on the client machines, we need to connect to this server machine and we need the RootTrustedCA to authorise our server. Hence I export the RootTrustedCA certificate along with the private key using the standard procedure from mmc as a .pfx file and import it to the client machine's mmc under local machine-&amp;gt;trusted Root certificate. So far so good&lt;br/&gt;Now I create a client certificate named Pablo on the client machine using the rootTrustedCA using this commandline &lt;br/&gt;makecert -ss MY -sky exchange -sr currentuser -n &amp;quot;CN=Pablo&amp;quot; -in RootTrustedCA -is ROOT -e 01/01/2028&lt;br/&gt;&lt;br/&gt;Pablo certifciate is generated and placed under Currentuser-&amp;gt;Personal-&amp;gt;certificates and also shows issuer to be RootTrustedCA&lt;br/&gt;&lt;br/&gt;But then when we try to connect using IE from client to server as http://servername  remember servername here is (%ComputerName%), we dont connect. It throws http 403 error i.e. forbidden. &lt;br/&gt;&lt;br/&gt;I am not able to understand this . I have  a limitations....I dont have  a pvk file for RootTrustedCA so cant use it and yet have to get all this working.&lt;br/&gt;&lt;br/&gt;In some websites I read that pfx files should not be imported to local machine -&amp;gt; trusted root certificate store .....Is that correct ? However i tried importing it to current user-&amp;gt;personal(as mentioned in those sites) but that also didnt solve my connection problem.&lt;br/&gt;&lt;br/&gt;Can any of you please guide me on this issue. I believe generation of rootTrustedCA certificate on server machine and then exporting and furthur importing on client machine is perfectly fine. I feel Some issue is there in my pablo certificate generation on client machine . My connection code logs that certificate was found successfully. Please pour in some thoughts on this issue. &lt;br/&gt;&lt;br/&gt;Waiting eagerly to here from u soon on this&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;
				</description>
			</item>
		
		
			<item>
				<title>jailhousejoe commented on &quot;Using Makecert to Create Certificates for Development&quot;</title>
				<link>http://www.digitallycreated.net/Blog/38/using-makecert-to-create-certificates-for-development#Comment60</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 60</guid>
				<dc:creator>jailhousejoe</dc:creator>
				<pubDate>Wed, 16 Nov 2011 11:34:40 GMT</pubDate>
				<description>
					succint and well explained - thankyou your work was a great help
				</description>
			</item>
		
		
			<item>
				<title>Amit commented on &quot;Using Makecert to Create Certificates for Development&quot;</title>
				<link>http://www.digitallycreated.net/Blog/38/using-makecert-to-create-certificates-for-development#Comment64</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 64</guid>
				<dc:creator>Amit</dc:creator>
				<pubDate>Wed, 29 Feb 2012 10:42:55 GMT</pubDate>
				<description>
					Great Blog Suppeeerrrrr like....:)
				</description>
			</item>
		
		
			<item>
				<title>5arx commented on &quot;Using Makecert to Create Certificates for Development&quot;</title>
				<link>http://www.digitallycreated.net/Blog/38/using-makecert-to-create-certificates-for-development#Comment71</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 71</guid>
				<dc:creator>5arx</dc:creator>
				<pubDate>Thu, 14 Jun 2012 10:36:11 GMT</pubDate>
				<description>
					A great post. I've been searching for this information for a day and a half now. Thanks very much!&lt;br/&gt;&lt;br/&gt;
				</description>
			</item>
		
		
			<item>
				<title>Satish commented on &quot;Using Makecert to Create Certificates for Development&quot;</title>
				<link>http://www.digitallycreated.net/Blog/38/using-makecert-to-create-certificates-for-development#Comment72</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 72</guid>
				<dc:creator>Satish</dc:creator>
				<pubDate>Fri, 29 Jun 2012 22:04:46 GMT</pubDate>
				<description>
					Really helpful post.&lt;br/&gt;&lt;br/&gt;Cheers....
				</description>
			</item>
		
		
			<item>
				<title>kernel commented on &quot;Using Makecert to Create Certificates for Development&quot;</title>
				<link>http://www.digitallycreated.net/Blog/38/using-makecert-to-create-certificates-for-development#Comment78</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 78</guid>
				<dc:creator>kernel</dc:creator>
				<pubDate>Thu, 06 Sep 2012 18:11:01 GMT</pubDate>
				<description>
					Very useful post! Thanks a lot.&lt;br/&gt;Step by step with detailed explanation! great job!
				</description>
			</item>
		
		
			<item>
				<title>Peter Porfy commented on &quot;Using Makecert to Create Certificates for Development&quot;</title>
				<link>http://www.digitallycreated.net/Blog/38/using-makecert-to-create-certificates-for-development#Comment85</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 85</guid>
				<dc:creator>Peter Porfy</dc:creator>
				<pubDate>Wed, 27 Feb 2013 17:38:54 GMT</pubDate>
				<description>
					Great explanation, thanks!
				</description>
			</item>
		
		
		
	</channel>
</rss>
