热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

使用ServiceRuntimeassembly和windowsazure交互

使用ServiceRuntime assembly和windows azure交互


1.ServiceRuntime assembly位置

2.判定application是否运行在fabric上

3.读取ServiceDefinition.csdef配置文件内容


1.添加ServiceRuntime assembly引用

如果是在vs2010中新建一个cloud工程的话,将会自动添加下面的这几个引用:

使用ServiceRuntime assembly和windows azure交互

但是如果是想要迁移application程序到云上,那么必须手动添加assembly引用,位置如下:

使用ServiceRuntime assembly和windows azure交互


2.ServiceRuntime作用

ServiceRuntime在windows azure和应用程序之间搭建了一座桥梁,通过ServiceRuntime,通常的asp.net web应用程序能够和azure交互。这种交互通常表现在下面的三个方面:

  • 检查当前的应用程序是否运行在云上
  • 读取ServiceDefinition.csdef配置文件信息
  • 得到本地缓存的引用,从而操作本地缓存local cache

3.当前应用程序是否运行在云上?

this.runningInTheFabricLabel.Text = RoleEnvironment.IsAvailable ? "Running in fabric" : "Not in fabric";


4.使用ServiceDefinition.csdef配置文件信息

4.1 ServiceDefinition.csdef配置文件结构

使用ServiceRuntime assembly和windows azure交互

其中name表示的vs中解决方案的名称,紧接着是每个web role的配置信息。


4.2 如何更改该配置文件?是否存在gui工具?

ServiceDefinition.csdef文件是以xml形式存储的,直接以xml形式代开,在vs中存在只能提示,当然也可以使用gui工具:

使用ServiceRuntime assembly和windows azure交互

使用ServiceRuntime assembly和windows azure交互


4.3 Endpoints配置

使用ServiceRuntime assembly和windows azure交互

type分为input和internal,input表示能够响应外部请求,internal表示仅仅是在application内部使用,外部是不能够访问的;protocol表示使用的是何种协议:http,https。


4.4 Configuration配置

使用ServiceRuntime assembly和windows azure交互

1.默认的trust level是full trust,一般发布的程序应该是运行在windows azure partial trust,但是如果是需要执行一些特殊工作,比如p/invoke的话,那么需要将信任级别设置成full。

2.instance count表示启动role实例的数量。vm size设置vm大小

3.startup action实际上是vs的一个配置选项,表示调试的状态下的动作,这里表示启动浏览器。


4.5 local storage配置

使用ServiceRuntime assembly和windows azure交互

由于云上的数据存储和application运行的服务器可能是不在同一个服务器,local storage确保local storage size的数据存储是和application运行在一个服务器上。最后一个选项clean on recycle表明在一些特殊情况下这些数据是否保存。下面将展示如何读取这些loca storage上的数据



local storage名称
local storage大小
local storage rootpath

protected void Button1_Click(object sender, EventArgs e) { LocalResource localStorage = RoleEnvironment.GetLocalResource("MyLocalStorage"); this.localStorageNameLabel.Text = localStorage.Name; this.localStorageSizeLabel.Text = localStorage.MaximumSizeInMegabytes.ToString(); this.localStorageRootPathLabel.Text = localStorage.RootPath; File.WriteAllText(localStorage.RootPath + "HelloWorld.txt", "Hello World!"); }

通过localStorage.RootPath得到路径之后,.net原有的对文件路径的操作均能够使用。


代码下载


本系列的博客均是在学习windows azure平台时个人的感悟,其中难免存在不足之处,欢迎指正,留言提出您的宝贵意见。


推荐阅读
author-avatar
此人已死689
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有