Sign In
微软云计算: Windows Azure 中文博客
本博客为微软云计算论坛支持小组所维护,内容以Windows Azure 为主。Windows Azure Platform为微软推出的公共“云计算”平台。本中文博客面向所有对Windows Azure平台有兴趣的人,内容以入门教学和case study为主。
Common Tasks
Blog Home
Email Blog Author
OK
RSS for comments
RSS for posts
Atom
Search Form
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tag Cloud
AppFabric
Blob Storage
CDN
Cloud
Dallas
Data Developers
FAQ
SDK
Service Bus
Service Developers
SQL Azure
Windows Azure
Windows Azure AppFabric入门教学系列
windows azure storage
Windows Azure 解决方案系列
Windows Azure入门教学系列
Windows Azure平台简介
云计算
合作伙伴
常见问题
开发入门
教学
文章翻译
新闻
解决方案
Monthly Archives
Archives
February 2012
(3)
January 2012
(2)
December 2011
(7)
November 2011
(10)
October 2011
(9)
September 2011
(11)
August 2011
(10)
July 2011
(8)
June 2011
(12)
May 2011
(9)
April 2011
(12)
March 2011
(16)
February 2011
(6)
January 2011
(7)
December 2010
(12)
November 2010
(8)
October 2010
(5)
September 2010
(7)
August 2010
(7)
July 2010
(10)
June 2010
(10)
May 2010
(10)
April 2010
(8)
March 2010
(24)
February 2010
(12)
Browse by Tags
MSDN Blogs
>
微软云计算: Windows Azure 中文博客
>
All Tags
>
windows azure入门教学系列
Tagged Content List
Blog Post:
Windows Azure入门教学系列 (九):Windows Azure 诊断功能
China Windows Azure Blog
本文是 Windows Azure 入门教学的第九篇文章。 本文将会介绍如何使用 Windows Azure 诊断功能。跟部署在本地服务器上的程序不同,当我们的程序发布到云端之后,我们不能使用通常的调试方法,例如 Remote Debugging 等等来对我们的程序进行调试。那么当程序运行出现问题时我们如何能够得知问题的根源以便修正 Bug 呢?如果我要检测程序的性能,又有什么好的方法呢? 要做到上述的需求,我们需要利用 Windows Azure 提供的诊断功能,该功能能够记录诊断日志,保存到 Windows Azure Storage 上。如果要检测程序的性能可以使用性能计数器...
on
18 Jun 2010
Blog Post:
Windows Azure入门教学系列 (八):使用Windows Azure Drive
China Windows Azure Blog
本文是 Windows Azure 入门教学 的第八篇文章。 本文将会介绍如何使用 Windows Azure Drive 。 我们知道,由于云端的特殊性,通常情况下,对文件系统的读写建议使用 Blob Storage 来代替。这就产生了一个问题:对于一个已经写好的本地应用程序,其中使用了 NTFS API 对本地文件系统读写的代码是否需要进行完全重写以便迁移到 Windows Azure 平台上呢?答案是否定的。 Windows Azure 平台提供了 Drive 的功能。 在 1.1 版本的 SDK 中提供了 CloudDrive 类,能够将本地 NTFS 文件系统...
on
12 Apr 2010
Blog Post:
Windows Azure入门教学系列 (七):使用REST API访问Storage Service
China Windows Azure Blog
本文是 Windows Azure 入门教学 的第七篇文章。 本文将会介绍如何使用 REST API 来直接访问 Storage Service 。 在前三篇教学中,我们已经学习了使用 Windows Azure SDK 所提供的 StorageClient 来使用 Blob Storage, Queue Storage 以及 Table Storage 的基本方法。我们在前几篇教学中也提及最终 StorageClient 也是通过发送 REST 请求来与服务器端通信的。 在这篇教学中,我们会以 Blob Storage 为例,说明如何使用 REST API 直接与服务器进行通信...
on
19 Mar 2010
Blog Post:
Windows Azure入门教学系列 (六):使用Table Storage
China Windows Azure Blog
本文是 Windows Azure 入门教学 的第六篇文章。 本文将会介绍如何使用 Table Storage 。 Table Storage 提供给我们一个云端的表格结构。我们可以把他想象为 XML 文件或者是一个轻量级的数据库(当然,不是通过 SQL 语句进行数据的操作)。 使用 Table Storage 的方法依然是调用 REST API 。有关 Table Storage REST API 的详细信息,请参见 Table 服务 API : 为了方便 .NET 开发人员,我们在 SDK 中提供了 Microsoft.WindowsAzure.StorageClient...
on
11 Mar 2010
Blog Post:
Windows Azure入门教学系列 (五):使用Queue Storage
China Windows Azure Blog
本文是 Windows Azure 入门教学 的第五篇文章。 本文将会介绍如何使用 Queue Storage 。 Queue Storage 提供给我们一个云端的队列。我们可以用 Queue Storage 来进行进程间的相互通信(包括运行在不同机器上的进程之间的通信)。 一个使用 Queue Storage 经典的场景是,在一个 Web 应用程序中,用户通过表单递交给服务器数据,服务器收到数据后将进行处理,而这一处理将花费很多时间。这种情况下,服务器端通过 Queue Storage 可以把用户递交的信息存储在队列中,后台再运行一个程序从队列中取得数据进行信息的处理。 以往如果程序时运行在...
on
8 Mar 2010
Blog Post:
Windows Azure入门教学系列 (四):使用Blob Storage
China Windows Azure Blog
本文是 Windows Azure 入门教学 的第四篇文章。 本文将会介绍如何使用 Blob Storage 。 Blob Storage 可以看做是云端的文件系统。与桌面操作系统上不同,我们是通过 REST API 来进行对文件的操作。有关 REST API 的详细信息,请参见 Blob 服务 API 。 为了方便 .NET 开发人员,我们在 SDK 中提供了 Microsoft.WindowsAzure.StorageClient 类来帮助发送 REST 请求。 在开始本教学之前,请确保你从 Windows Azure 平台下载 下载并安装了最新的 Windows Azure...
on
7 Mar 2010
Blog Post:
Windows Azure入门教学系列 (三):创建第一个Worker Role程序
China Windows Azure Blog
本文是 Windows Azure 入门教学的第三篇文章。 本文将会引导大家创建一个简单的 Worker Role 程序,并且部署在 Windows Azure 模拟器 里。 在开始本教学之前,请确保你从 Windows Azure 平台下载 下载并安装了最新的 Windows Azure 开发工具。 本教学使用 Visual Studio 2010 作为开发工具。 步骤一:创建解决方案和项目 以管理员权限启动 Visual Studio 2010 ,并且新建一个 Windows Azure Project 项目。 在弹出窗口出现后,按照下图所示,分别点击 Worker...
on
22 Feb 2010
Blog Post:
Windows Azure入门教学系列 (二): 部署第一个Web Role程序
China Windows Azure Blog
本文是 Windows Azure 入门教学的第二篇文章。 在第一篇教学中,我们已经创建了第一个 Web Role 程序。在这篇教学中,我们将学习如何把该 Web Role 程序部署到云端。 注意:您需要购买 Windows Azure Platform 服务才能继续本教学。您可以通过点击 https://mocp.microsoftonline.com/Site/Support.aspx 页面上的 联系我们的支持团队来获得购买服务的具体步骤或询问其他有关购买,收费的问题。 在开始本教学之前,请确保你从 Windows Azure 平台下载 下载并安装了最新的...
on
18 Feb 2010
Blog Post:
Windows Azure入门教学系列 (一): 创建第一个WebRole程序
China Windows Azure Blog
这是一系列 Windows Azure 入门教学文章的第一篇。 在第一篇教学中,我们将学习如何在 Visual Studio 2010 中创建一个 WebRole 程序 (C# 语言 ) 。 在开始本教学之前,请确保你从 Windows Azure 平台下载 下载并安装了最新的 Windows Azure 开发工具。本教学使用 Visual Studio 2010 作为开发工具。 步骤一:创建解决方案和项目 以管理员权限打开 Visual Studio 2010 ,点击 File ,选择 New ,点击 Project 按钮: 在弹出窗口中按照下图所示...
on
9 Feb 2010
Page 1 of 1 (9 items)