随笔分类 - Windows Azure
摘要:1. 下载bidnow项目源码,解压该文件。2. 点击StartHere.cmd。下面将开始检查该项目的依赖项,如果不能满足,请在下列地址安装所需依赖项。Windows 7, Vista SP1 or Windows Server 2008Windows PowerShellWindows Azure Software Development Kit 1.3Windows Azure AppFabric SDK 2.0Internet Information Services 7.0 (or greater)Microsoft .NET Framework 4Microsoft SQL Exp
阅读全文
摘要:1. 参看配置文件中的connection string name是否正确。2.I can think of two reasons:2.1 You are using Azure SDK 1.3 and the SetConfigurationSettingPublisher must be called in your Global.asax.cs Application_Start2.2 You are not setting the Startup project as the *.CloudService one.
阅读全文
摘要:使用ServiceRuntime assembly和windows azure交互1.ServiceRuntime assembly位置2.判定application是否运行在fabric上3.读取ServiceDefinition.csdef配置文件内容1.添加ServiceRuntime assembly引用如果是在vs2010中新建一个cloud工程的话,将会自动添加下面的这几个引用:但是如果是想要迁移application程序到云上,那么必须手动添加assembly引用,位置如下:2.ServiceRuntime作用ServiceRuntime在windows azure和应用程序之间
阅读全文
摘要:让代码讲述process上的秘密1.新建工程2.几个比较重要的后台进程1.新建工程新建一个cloud工程,添加一个web role,添加一个ProcessDetails.aspx页面,前台部分添加一个gridview。 <form id="form1" runat="server"> <div> <asp:GridView ID="processesGridView" runat="server"> </asp:Gri
阅读全文
摘要:使用代码来探索vm细节1.新建windows azure工程2.修改Default.aspx页面3.修改后台代码4.运行1.新建windows azure工程2.修改Default.aspx页面<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="LookkupVMDetails._Default" %><!DOCTYPE html PUBLIC "
阅读全文
摘要:深入windows azure操作系统1.深入azure操作系统内核FC2.azure服务模型(service model)3.fault domain和upgradedomain4.server集群初始原理5.深入vm内部1.深入azure操作系统内核FCazure fabric有数量众多的servers组成,但是云上的开发者是不需要关心你的应用程序是运行在哪台服务器上,服务器上的硬件配置等。azure操作系统屏蔽了这些复杂的细节,所以这部分就类似于常规操作系统的kernel。1.1 FC与状态机FC在内部实现时,为每个部署的service设定一个状态机,并为这个状态机设定一个目标,于是FC
阅读全文
摘要:进入云计算的世界1.windows azure概述 2.云上的hello world程序3.sql zure4.windows azure上提供企业级(enterprise)的服务1.windows azure概述1.1什么是windows azure平台?在阐述windows azure平台之前,来看看什么事'云',简单的将云就是一个服务器的集群,在这个集群用来运行你的应用程序。在云上的程序,程序的开发者是不需要考虑物理上的硬件设备。windows azure平台由下面的几部分组成:下面将分别介绍上面的三部分:windows azure,sql azure,windows a
阅读全文
摘要:windows azure在启动时可能寻找的数据库服务器的名称和实际的不相同,试过网上的很多方法都不行,后来改换到vs2008下成功,不知道为什么,先记录下找到的一些资料吧。Hi, I have SQL server 2008 installed with instance named as "MSSQLSERVER" and after installingSQL Server 08, i installed VS 08 Team system excluding the sql server 05 express edition, and then I installe
阅读全文
摘要:Since Windows Vista it does not matter whether you are administrator on the machine or not. The "eleveted" term has poped up. All processes are running under low permission level unless specifically instructed (by the mean Lun Luo said).In General it is always good to launch Visual Studio
阅读全文
摘要:就像其他程序设计语言一样,首先从Hello World开始整个windows azure的学习。下面来自:http://weblogs.asp.net/jeffwids/archive/2010/03/02/getting-started-with-windows-azure-part-2-creating-a-windows-azure-hello-world-application.aspxBelow are the steps to create a simple Windows Azure Hello World application. These steps assume that
阅读全文
摘要:1.安装vs2008 team system2.安装vs2008 sp13.安装windows azure sdk,现在有两个版本1.0和1.2。4.安装windows azure tool for vs
阅读全文
摘要:学一门技术首先需要知道这东东是干什么的?起源是什么?现在就来了解一下windows azure的技术特点,能够解决什么问题?1.windows azure简介http://tech.sina.com.cn/b/2010-04-20/16141323210.shtmlwindows azure,正如同桌面操作系统windows和服务操作系统windows server一样,是一个云端的操作系统。sql server是服务器上的数据库产品,而sql azure就是云端的数据库产品,appfabric作为中间层,隔离非云端程序和云端程序。开发人员可以使用同一套技术:.net(包括silverligh
阅读全文