<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>CloudTweaks.com - Cloud Computing Community &#187; configure</title>
	<atom:link href="http://www.cloudtweaks.com/tag/configure/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cloudtweaks.com</link>
	<description></description>
	<lastBuildDate>Sat, 31 Jul 2010 14:56:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Using IntelliTrace to debug Windows Azure Cloud Services</title>
		<link>http://www.cloudtweaks.com/2010/06/using-intellitrace-to-debug-windows-azure-cloud-services/</link>
		<comments>http://www.cloudtweaks.com/2010/06/using-intellitrace-to-debug-windows-azure-cloud-services/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 14:13:05 +0000</pubDate>
		<dc:creator>cloudtweaks</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Storage]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[cloud service]]></category>
		<category><![CDATA[cloud services]]></category>
		<category><![CDATA[Cloud tools]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[deployment]]></category>
		<category><![CDATA[the cloud]]></category>
		<category><![CDATA[Windows Azure]]></category>

		<guid isPermaLink="false">http://www.cloudtweaks.com/?p=1448</guid>
		<description><![CDATA[One of the cool new features of the June 2010 Windows Azure Tools + SDK is the integration of IntelliTrace to allow you to debug issues that occur in the cloud. IntelliTrace support requires .NET 4, Visual Studio 2010 Ultimate and the cloud service has to be deployed with IntelliTrace enabled. If you are using]]></description>
			<content:encoded><![CDATA[<div class="vs-topic" topic="Using IntelliTrace to debug Windows Azure Cloud Services" link="http://www.cloudtweaks.com/2010/06/using-intellitrace-to-debug-windows-azure-cloud-services/">
<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.cloudtweaks.com%2F2010%2F06%2Fusing-intellitrace-to-debug-windows-azure-cloud-services%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.cloudtweaks.com%2F2010%2F06%2Fusing-intellitrace-to-debug-windows-azure-cloud-services%2F&amp;source=cloudtweaks&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>One of the cool new features of the <a href="http://go.microsoft.com/fwlink/?LinkID=128752">June 2010 Windows Azure Tools + SDK</a> is the integration of IntelliTrace to allow you to debug issues that occur in the cloud.</p>
<p>IntelliTrace support requires .NET 4, Visual Studio 2010 Ultimate and the cloud service has to be deployed with IntelliTrace enabled. If you are using a 32-Bit OS, you need <a href="http://code.msdn.microsoft.com/KB983301">this patch/QFE</a>.</p>
<p>To enable IntelliTrace, right click on the cloud service project and select “Publish”.</p>
<p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-56-76-metablogapi/2072.image_5F00_2.png"><img title="image" src="http://blogs.msdn.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-56-76-metablogapi/2084.image_5F00_thumb.png" border="0" alt="image" width="288" height="163" /></a></p>
<p>At the bottom of our publish dialog, click to select “Enable IntelliTrace for .NET 4 roles”.</p>
<p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-56-76-metablogapi/1856.image_5F00_4.png"><img title="image" src="http://blogs.msdn.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-56-76-metablogapi/4118.image_5F00_thumb_5F00_1.png" border="0" alt="image" width="332" height="193" /></a></p>
<p>You can also configure IntelliTrace for the cloud settings (these are separate from the settings in Tools | Options which are used for the debug (F5) scenario which we currently do not support with Cloud Services/Development Fabric.</p>
<p>A couple of notes about IntelliTrace settings.</p>
<p>We default to high mode which is different from the F5 IntelliTrace settings in Visual Studio.  The reason is that F5 IntelliTrace includes both debugger and IntelliTrace data while in the cloud, you are only able to get back IntelliTrace data.</p>
<p>Additionally, we exclude Microsoft.WindowsAzure.StorageClient.dll as we found that the slow down caused by IntelliTrace instrumenting resulted in time outs to storage.  You may find you will want to remove the storage client assembly from the exclusion list.</p>
<p>To reset the IntelliTrace settings back to the default, you can delete “collectionplan.xml” from %AppData%\Roaming\Microsoft\VisualStudio\10.0\Cloud Tools</p>
<p>Click “OK” to package up everything you need to IntelliTrace the web and worker host processes in the cloud and start the deployment process.</p>
<p><strong>Note: </strong>There is a current limitation that child processes cannot be IntelliTrace debugged.</p>
<p>The deployment process is completely asynchronous so you can continue to work while you wait for deployment the to complete and you can track the progress through the Windows Azure Activity Log tool window.</p>
<p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-56-76-metablogapi/3463.image_5F00_16.png"><img title="image" src="http://blogs.msdn.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-56-76-metablogapi/6840.image_5F00_thumb_5F00_7.png" border="0" alt="image" width="482" height="96" /></a></p>
<p>Find out more at: http://blogs.msdn.com/b/jnak/archive/2010/06/07/using-intellitrace-to-debug-windows-azure-cloud-services.aspx</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.cloudtweaks.com/2010/06/using-intellitrace-to-debug-windows-azure-cloud-services/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>GoGrid Announces Version 2.0 &#8211; Cloud Computing Service</title>
		<link>http://www.cloudtweaks.com/2009/08/gogrid-announces-version-20-cloud-computing-service/</link>
		<comments>http://www.cloudtweaks.com/2009/08/gogrid-announces-version-20-cloud-computing-service/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 11:48:02 +0000</pubDate>
		<dc:creator>cloudtweaks</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Storage]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[announcement]]></category>
		<category><![CDATA[Announces]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[approach]]></category>
		<category><![CDATA[CEO]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[cloud services]]></category>
		<category><![CDATA[Co]]></category>
		<category><![CDATA[co founder]]></category>
		<category><![CDATA[computing service]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[configured]]></category>
		<category><![CDATA[creation]]></category>
		<category><![CDATA[deploy]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Founder]]></category>
		<category><![CDATA[functionality]]></category>
		<category><![CDATA[GoGrid]]></category>
		<category><![CDATA[gogrid announces]]></category>
		<category><![CDATA[Golden]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Infrastructure]]></category>
		<category><![CDATA[infrastructure solution]]></category>
		<category><![CDATA[instantiate]]></category>
		<category><![CDATA[John Keagy]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[marketplace]]></category>
		<category><![CDATA[Master]]></category>
		<category><![CDATA[master server]]></category>
		<category><![CDATA[MyGSI]]></category>
		<category><![CDATA[MyGSIs]]></category>
		<category><![CDATA[Oncloudcomputing]]></category>
		<category><![CDATA[paas]]></category>
		<category><![CDATA[personal server]]></category>
		<category><![CDATA[portal]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[SaaS]]></category>
		<category><![CDATA[Sandbox]]></category>
		<category><![CDATA[ServePath]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[server image]]></category>
		<category><![CDATA[server images]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[step]]></category>
		<category><![CDATA[Today]]></category>
		<category><![CDATA[user]]></category>
		<category><![CDATA[VERSION]]></category>
		<category><![CDATA[visionary approach]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[web portal]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.cloudtweaks.com/?p=179</guid>
		<description><![CDATA[GoGrid Announces Version 2.0 Today GoGrid, the Cloud Computing service from ServePath, released version 2.0 of its award-winning Cloud Computing Infrastructure solution. With this release, GoGrid users now have the ability to create personal server images, known as MyGSIs. MyGSI stands for “personal GoGrid Server Image,” a “Golden Master” server image that can be customized,]]></description>
			<content:encoded><![CDATA[<div class="vs-topic" topic="GoGrid Announces Version 2.0 - Cloud Computing Service " link="http://www.cloudtweaks.com/2009/08/gogrid-announces-version-20-cloud-computing-service/">
<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.cloudtweaks.com%2F2009%2F08%2Fgogrid-announces-version-20-cloud-computing-service%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.cloudtweaks.com%2F2009%2F08%2Fgogrid-announces-version-20-cloud-computing-service%2F&amp;source=cloudtweaks&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<div id="attachment_2219" class="wp-caption alignnone" style="width: 85px;"><img class="size-full wp-image-2219" src="http://www.oncloudcomputing.com/en/wp-content/uploads/2009/08/gogrid.png" alt="GoGrid Announces Version 2.0" width="75" height="75" /></p>
<p class="wp-caption-text">GoGrid Announces Version 2.0</p>
</div>
<p>Today GoGrid, the Cloud Computing service from ServePath, released version 2.0 of its award-winning Cloud Computing Infrastructure solution. With this release, GoGrid users now have the ability to create personal server images, known as MyGSIs. MyGSI stands for “personal GoGrid Server Image,” a “Golden Master” server image that can be customized, saved and stored for future deployments. Users are now able to create new servers from stored MyGSIs via the GoGrid web portal or API quickly and easily.</p>
<p>We are extremely excited about this innovative new GoGrid release<br />
This is an important development in the Cloud Computing marketplace, and further demonstrates our visionary approach to providing Cloud Computing functionality and features that our customers desire.<br />
“We are extremely excited about this innovative new GoGrid release,” said John Keagy, CEO and Co-Founder of GoGrid and ServePath. “This is an important development in the Cloud Computing marketplace, and further demonstrates our visionary approach to providing Cloud Computing functionality and features that our customers desire.”</p>
<p>The creation of a MyGSI is an extremely simple 3-step process. First add an Image Sandbox, second, configure and prepare the Image Sandbox and third, save the Image Sandbox as a MyGSI. When a user needs to create a new Windows or Linux server based on the pre-configured MyGSI, they simply choose the saved image, fill in a few details, and instantiate the server in minutes within the GoGrid cloud.<br />
There are several benefits and advantages of using a MyGSI to deploy servers within the GoGrid cloud:</p>
<p><a href="http://www.oncloudcomputing.com/en/2009/08/gogrid-cloud-computing-service-from-servepath-releases-version-20-cloud-computing-infrastructure-solution/">Source Oncloudcomputing </a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.cloudtweaks.com/2009/08/gogrid-announces-version-20-cloud-computing-service/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
