准备工作:Windows Azure只能运行在Windows 7, Windows Server 2008 和Windows Vista 上。暂不支持Windows 2003和XP。昨天安装了Win7,打算尝试写一个 Azure小程序,程序很简单,实现图片的简单上传和搜索功能,我顺便研究一下 微软的Azure平台,下面是我的软件环境。
操作系统:Windows 7
开发工具:Visual Studio2010 RC,Windows Azure SDK ,Windows Azure Tools
第一步:安装Windows Azure SDK
首先确定你的操作系统满足要求,Visual Studio可以是Visual Studio2008 或者Visual Studio2010。到下面网址下载Windows Azure SDK :
http://www.microsoft.com/downloads/details.aspx?FamilyID=772990da- 8926-4db0-958f-95c1da572c84&displaylang=en
一旦你安装成功,你的电脑上会多出Windows Azure SDK v1.1 ,如下图:

▲
启动Development Fabric和Development Stroage:

▲
显示配置界面:

▲
Development Fabric:

▲
Development Storage:

▲
以上证明你安装成功。
第二步:安装Windows Azure Tools for Microsoft Visual Studio
地址:http://www.microsoft.com/downloads/details.aspx? FamilyID=5664019e-6860-4c33-9843-4eb40b297ab6&displaylang=en
安装之后,Visual Studio会有如下模版:

▲
第三步:新建一个云服务命名为BlobStorage,如下图:

▲
使用简单的ASP.NET Web Role,并更名为BlobWebRole,如下图:

▲
得到如下结构的项目:

▲
第四步:修改代码,我们实现一个简单的图片上传和搜索的功能:

▲
1、添加一个connectionstring,如下图

▲
2、将WebRole的代码修改成如下所示:
public class WebRole : RoleEntryPoint
{
public override bool OnStart()
{
DiagnosticMonitor.Start ("BlobConnectionString");
CloudStorageAccount.SetConfigurationSettingPublisher((configName, configSetter) =>
{
configSetter (RoleEnvironment.GetConfigurationSettingValue(configName));
});
// get the blob connection string
CloudStorageAccount objStorage = CloudStorageAccount.FromConfigurationSetting ("BlobConnectionString");
// get the client reference
CloudBlobClient objClient = new CloudBlobClient(objStorage.BlobEndpoint, objStorage.Credentials);
// Get the reference to container
CloudBlobContainer objContainer = objClient.GetContainerReference("mycontainer");
// Create the container if it does not exist
objContainer.CreateIfNotExist();
RoleEnvironment.Changing += RoleEnvironmentChanging;
return base.OnStart();
}
private void RoleEnvironmentChanging(object sender, RoleEnvironmentChangingEventArgs e)
{
// If a configuration setting is changing
if (e.Changes.Any(change => change is RoleEnvironmentConfigurationSettingChange))
{
// Set e.Cancel to true to restart this role instance
e.Cancel = true;
}
}
}
本文来自编程入门网:http://www.bianceng.cn/Servers/cloud-computing/201011/20499_5.htm
3、在页面上拖放几个控件,简单地布局如下:

▲
4、后台代码如下:
protected void Button1_Click(object sender, EventArgs e)
{
// Get the storage account reference
CloudStorageAccount objStorage = CloudStorageAccount.FromConfigurationSetting ("BlobConnectionString");
// get the Client reference using storage blobend point
CloudBlobClient objClient = new CloudBlobClient(objStorage.BlobEndpoint, objStorage.Credentials);
// Get Container reference
CloudBlobContainer objContainer = objClient.GetContainerReference("mycontainer");
// Get blob reference
CloudBlob obj = objContainer.GetBlobReference(FileUpload1.FileName.ToString());
// Set meta values
obj.Metadata["MetaName"] = "meta";
// Open a stream using the cloud object
BlobStream blobstream = obj.OpenWrite ();
// Write the stream to the blob database
blobstream.Write(FileUpload1.FileBytes, 0, FileUpload1.FileBytes.Count());
blobstream.Close();
// Browse through blob list from the container
IEnumerable<IListBlobItem> objBlobList = objContainer.ListBlobs();
foreach (IListBlobItem objItem in objBlobList)
{
Response.Write(objItem.Uri + "<br>");
}
}
protected void Button2_Click(object sender, EventArgs e)
{
// Get the storage account reference
CloudStorageAccount objStorage = CloudStorageAccount.FromConfigurationSetting ("BlobConnectionString");
// get the Client reference using storage blobend point
CloudBlobClient objClient = new CloudBlobClient(objStorage.BlobEndpoint, objStorage.Credentials);
// Get Container reference
CloudBlobContainer objContainer = objClient.GetContainerReference("mycontainer");
// Get the blob reference using the blob name provided in the search
CloudBlob obj = objContainer.GetBlobReference(txtSearch.Text);
BlobStream blobstream = obj.OpenRead ();
// Create the image object and display the same on the browser response
System.Drawing.Image objimg = null;
objimg = System.Drawing.Image.FromStream (blobstream, true);
Response.Clear();
Response.ContentType = "image/gif";
objimg.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
}
本文来自编程入门网:http://www.bianceng.cn/Servers/cloud-computing/201011/20499_5.htm
运行效果:

▲
第三十八届CIO班招生
国际CIO认证培训
首席数据官(CDO)认证培训
责编:lyre
免责声明:本网站(http://www.ciotimes.com/)内容主要来自原创、合作媒体供稿和第三方投稿,凡在本网站出现的信息,均仅供参考。本网站将尽力确保所提供信息的准确性及可靠性,但不保证有关资料的准确性及可靠性,读者在使用前请进一步核实,并对任何自主决定的行为负责。本网站对有关资料所引致的错误、不确或遗漏,概不负任何法律责任。
本网站刊载的所有内容(包括但不仅限文字、图片、LOGO、音频、视频、软件、程序等)版权归原作者所有。任何单位或个人认为本网站中的内容可能涉嫌侵犯其知识产权或存在不实内容时,请及时通知本站,予以删除。