<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Comment Feed for Channel 9 - Developing and Deploying Your First Windows Azure Service</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Blogs/pdc2008/ES01/RSS"></atom:link>
	<image>
		<url>http://ecn.channel9.msdn.com/o9/previewImages/100/418900_100x75.jpg</url>
		<title>Channel 9 - Developing and Deploying Your First Windows Azure Service</title>
		<link></link>
	</image>
	<description>In this session we take a tour of the capabilities of the Microsoft cloud platform by building and running a simple service using the platform SDK. The sample service highlights some of the features of the platform including service management, storage,
 and an integrated developer experience. This is a demo-heavy session.


Steve Marx


</description>
	<link></link>
	<language>en</language>
	<pubDate>Thu, 23 May 2013 20:59:12 GMT</pubDate>
	<lastBuildDate>Thu, 23 May 2013 20:59:12 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Developing and Deploying Your First Windows Azure Service</title>
		<description>
			<![CDATA[Why is the namespace for the storage classes under Microsoft.Samples?&nbsp; Is there an official API for these yet?&nbsp; Or still too early?<p>posted by ErikNYC</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/pdc2008/ES01#c633609074810000000</link>
		<pubDate>Wed, 29 Oct 2008 20:04:41 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/pdc2008/ES01#c633609074810000000</guid>
		<dc:creator>ErikNYC</dc:creator>
	</item>
	<item>
		<title>Re: Developing and Deploying Your First Windows Azure Service</title>
		<description>
			<![CDATA[@ErikNYC, as shown in the sampel code, he addedd references for the Storage classes which is provided as a sample in the SDK I guess.<br>
<p>posted by mosessaur</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/pdc2008/ES01#c633609665730000000</link>
		<pubDate>Thu, 30 Oct 2008 12:29:33 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/pdc2008/ES01#c633609665730000000</guid>
		<dc:creator>mosessaur</dc:creator>
	</item>
	<item>
		<title>Re: Developing and Deploying Your First Windows Azure Service</title>
		<description>
			<![CDATA[
<p>The &quot;official&quot; API is REST.&nbsp; The SDK ships with a sample client library that gives you some .NET goodness on top of the REST API.<br>
<br>
I'll turn it around... do you see it as necessary for us to support a client library?&nbsp; Is the sample enough to make you comfortable?&nbsp; We'd love feedback on this.</p>
<p>posted by smarx</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/pdc2008/ES01#c633613805870000000</link>
		<pubDate>Tue, 04 Nov 2008 07:29:47 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/pdc2008/ES01#c633613805870000000</guid>
		<dc:creator>smarx</dc:creator>
	</item>
	<item>
		<title>Re: Developing and Deploying Your First Windows Azure Service</title>
		<description>
			<![CDATA[As much as I am services guy and love the REST APIs, I think that Joe Doe developer (sorry, no offense!) likes and maybe needs a .NET API to be productive in the first place.<br>
<br>
Just my 2 cents.<br>
<p>posted by Christian Weyer</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/pdc2008/ES01#c633613847050000000</link>
		<pubDate>Tue, 04 Nov 2008 08:38:25 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/pdc2008/ES01#c633613847050000000</guid>
		<dc:creator>Christian Weyer</dc:creator>
	</item>
	<item>
		<title>Re: Developing and Deploying Your First Windows Azure Service</title>
		<description>
			<![CDATA[
<p>By the way, if you want the code (or want to find out what I did wrong), you can get it on my blog at&nbsp;<a href="http://blog.smarx.com/posts/windows-azure-blog-source-code-from-pdc">http://blog.smarx.com/posts/windows-azure-blog-source-code-from-pdc</a>.</p>
<p>posted by smarx</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/pdc2008/ES01#c633616945170000000</link>
		<pubDate>Fri, 07 Nov 2008 22:41:57 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/pdc2008/ES01#c633616945170000000</guid>
		<dc:creator>smarx</dc:creator>
	</item>
	<item>
		<title>Re: Developing and Deploying Your First Windows Azure Service</title>
		<description>
			<![CDATA[
<p>I think that the REST API's are a good foundation to build upon because it makes Azure equally accessible regardless of the tools or platform that you choose to build your application.&nbsp; However, I also think that an object-based library built on top of the
 REST API is important.<br>
<br>
This is not about&nbsp;being unable to understand how to use an HTTP request to call the REST api, but rather why should everyone need to write this code?&nbsp;
<br>
<br>
Without the&nbsp;an object-based&nbsp;API, everyone will either copy/paste your samples into their application or they will manually rewrite nearly identical code and create unnecessary divergence.&nbsp;&nbsp; That seems wasteful to me.&nbsp;&nbsp;<br>
<br>
I think that Microsoft should provide&nbsp;at least a .NET library on top of the REST api so that everyone doesn't need to waste their time building the plumbing.&nbsp; It could be a simply wrapper on top of the REST API and you could open source the wrapper code so
 that other platforms can see how to implement it.<br>
</p>
<p>posted by ErikNYC</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/pdc2008/ES01#c633621518180000000</link>
		<pubDate>Thu, 13 Nov 2008 05:43:38 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/pdc2008/ES01#c633621518180000000</guid>
		<dc:creator>ErikNYC</dc:creator>
	</item>
	<item>
		<title>Re: Developing and Deploying Your First Windows Azure Service</title>
		<description>
			<![CDATA[I just wanted to echo Christians concers about the .NET API - it would be very nice with a default .NET API. LOVE the the API is REST, but don't like that there isn't an official .NET wrapper for it. That means that there will be 1001 different implementations
 of accessing the datastore, which means that tutorials will differ tremendously, and it will be less likely that new developers can jump into my code.<span class="Apple-tab-span">
</span><p>posted by M. Johansson</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/pdc2008/ES01#c633628015320000000</link>
		<pubDate>Thu, 20 Nov 2008 18:12:12 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/pdc2008/ES01#c633628015320000000</guid>
		<dc:creator>M. Johansson</dc:creator>
	</item>
	<item>
		<title>Re: Developing and Deploying Your First Windows Azure Service</title>
		<description>
			<![CDATA[
<p>Good talk. I was just wondering, how I could connect to the local db that was created to browse the content.</p>
<p>posted by frank.michael.k</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/pdc2008/ES01#c633806907590000000</link>
		<pubDate>Mon, 15 Jun 2009 19:25:59 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/pdc2008/ES01#c633806907590000000</guid>
		<dc:creator>frank.michael.k</dc:creator>
	</item>
	<item>
		<title>Re: Developing and Deploying Your First Windows Azure Service</title>
		<description>
			<![CDATA[
<p>thanks alot</p>
<p>I think it was agood session,</p>
<p>seconde , I'm new in azure I think it's the first day to me I setup azure and create application and publish it but while registeration it asked me the invitation token key [ I don't know where I get it ] ,when cancel I found 0 hosting service and 0 storage
 service</p>
<p>please advice me to</p>
<p>1-how I have more than hosted &amp; storage service .</p>
<p>2-I have my owen website with sqldatabase with asp.2.0 can I hosting it and my database to azure serviece .</p>
<p>thanks alot.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>posted by ahmed.abdelmonem</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/pdc2008/ES01#c633829972130000000</link>
		<pubDate>Sun, 12 Jul 2009 12:06:53 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/pdc2008/ES01#c633829972130000000</guid>
		<dc:creator>ahmed.abdelmonem</dc:creator>
	</item>
</channel>
</rss>