Welcome to MSDN Blogs Sign in | Join | Help

Browse by Tags

MIX 09- Data Services 1.5, Windows Azure Tools, Silverlight 3, Expression Blend 3,ASP.NET MVC 1.0 and .NET RIA Services

ADO.NET Data Services v1.5 CTP1 http://blogs.msdn.com/astoriateam/archive/2009/03/16/ado-net-data-services-v1-5-ctp1-now-available-for-download.aspx download: http://www.microsoft.com/downloads/details.aspx?FamilyID=3e3d4eaf-227b-4ad3-ad0d-3613db8aa9df

Azure Services探索—存储之Blobs存储

del.icio.us Tags: Windows Azure , Blob 上一篇是关于Azure Service 的表存储 ,本篇来主要是针对Azure中另外一类特殊的存储-二进制等非结构化的存储,如果我们的Azure服务中有需要保存非传统或结构化的数据,如图片、声音及视频媒体等信息,那么我们就需要使用到Blob存储了。而Windows Azure平台提供了一个很不错的托管平台和编程模型。 Blob存储和Azure 表存储不同的是在概念上,之前我们看到表存储最重要的概念是实体(Entity)概念,实体里面包含属性。对应到Blob存储,对应实体,比较重要的概念是容器(Container)
Posted by ccBoy | 1 Comments
Filed under:

Azure Services探索—在Azure服务中增加WCF服务

这篇文章要从 Azure Service探索--存储之LocalStorage 那篇文章激发的需求,因为在文件系统存储中,我们讲述了LocalStorage的不可共享性,当时又为了学习体验Worker Role的用法,就产生了这样的一个想法:首先还是在Web Role中定义一个临时的文件系统,然后再由Web Role提供一个WCF的服务,让Worker Role来调用,从而达到对这个临时文件系统的共享和写入。 其实变换一下,就是要解决如何在Azure 服务中提供一个 WCF服务,然后这个WCF如何被配置,以及被其他角色(Worker
Posted by ccBoy | 1 Comments
Filed under:

Azure Services探索—存储之表(Table)存储

del.icio.us Tags: Windows Azure , Table 本系列文章 是一个有关Azure Services开发基础性的学习记录,由于时间有限,所以希望自己讨论和探索的过程是从零开始,到能够进行Azure Services基本的编程开发。相对于每个议题可能有非常深入的话题,我希望有时间能通过其他的文章来进行。本系列的定位基本上定位于,花20-30分钟时间,先下载代码,跟着阅读文章,运行获得相关的体验。 上一篇是关于Azure的队列存储 ,本篇是关于表存储的。理论上表存储应该是我们最熟悉的存储方式,它本身也是结构化的存储,类似于我们平时的关系型数据库的存储。不过这里首先要强调的还是编程思想的变化,Windows
Posted by ccBoy | 1 Comments
Filed under:

Azure Service探索—存储之队列(Queues)存储

del.icio.us Tags: Windows Azure , Queues 之前的一篇探索 是有关Azure服务的文件系统存储的,我们看到了LocalStorage的不可共享性和临时性,同样也是在那篇文章中我们也涉及到了Azure编程模型中两个比较重要的模型和角色,Web Role和Worker Role,了解Web Role和Worker role之间的关系,是使用和掌握队列存储的关键。 根据 MSDN的官方定义 : Web role : A web role is a Web application
Posted by ccBoy | 2 Comments
Filed under:

Azure Service探索—存储之本地(LocalStorage)存储

del.icio.us Tags: Windows Azure Azure Service将整个服务对存储的需求抽象成四个对象,它们分别是Table存储,Blob存储,队列(Queues)存储和本地临时文件存储(LocalStorage)。其中Table存储和Blob存储基本上应用最常用的存储对象,也是托管环境中的重要能力之一,可以理解为这两类存储Azure平台是要按流量或大小来计费和收费的。LocalStorage存储和队列存储也是能力,它往往是提供给某种应用场景的一种工具和服务,不会用来计费,因为从架构和设计上,它们的使用是受限,用途是特定的。
Posted by ccBoy | 3 Comments
Filed under:

Windows Azure SDK and Tools for Visual Studio (Jan 2009 CTP)

see: January 2009 CTP of the Windows Azure Tools and SDK released   Download: Windows Azure Software Development Kit http://www.microsoft.com/downloads/details.aspx?familyid=80e3eabf-0507-4560-aeb6-d31e9a70a0a6&displaylang=en&tm Windows Azure
Posted by ccBoy | 0 Comments

Hello Windows Azure--云端版本

之前有做过一个最简单的Windows Azure的应用- Hello Windows Azure ,之后在2008年的圣诞节又获得了 Invitation Code to Windows Azure‏ ,这样就可以测试一下云端版本的Windows Azure应用了,也就是真正的Windows Azure Service。 因为应用非常的简单,其实主要就是根据Jim Nakashima的文章 Deploying a Service on Windows Azure ,对整个Windows Azure
Posted by ccBoy | 0 Comments
Filed under:

Windows Azure in PDC 08

Developing and Deploying Your First Windows Azure Service http://channel9.msdn.com/pdc2008/ES01/ Windows Azure: Architecting & Managing Cloud Services http://channel9.msdn.com/pdc2008/ES02/ Windows Azure: Cloud Service Development Best Practices http://channel9.msdn.com/pdc2008/ES03/
Posted by ccBoy | 0 Comments
Filed under:

Windows Azure Resource

Windows Azure SDK  -msdn http://msdn.microsoft.com/en-us/library/dd179367.aspx Microsoft Cloud Computing Tools--msdn http://msdn.microsoft.com/en-us/vstudio/cc972640.aspx Azure Services Developer Portal ---Azure upload http://go.microsoft.com/fwlink/?LinkID=128009
Posted by ccBoy | 1 Comments
Filed under:

ADO.NET Data Services 的Self-Hosting例子(.NET 3.5 SP1)

之前有写一篇关于ADO.NET Data Services hosting在一个控制台程序中的做法。 详细见--ADO.NET Data Services 的Self-Hosting实例 http://blogs.msdn.com/ccboy/archive/2008/01/12/ado-net-data-services-self-hosting.aspx 今天找了一下,发现原来的代码找不到,于是重新尝试了一下,看看.NET 3.5 SP1之后是否有变化。 ADO.NET Data Services逐渐成为一个非常不错的工具和武器,它完美的和ADO.NET

Silverlight 2 Skins--two new cool skins

http://blogs.msdn.com/corrinab/archive/2008/06/16/8602865.aspx
Posted by ccBoy | 0 Comments
Filed under:

more information ...about VS2008 SP1 and .NET FX 3.5 SP1

ScottGu's - Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta http://weblogs.asp.net/scottgu/archive/2008/05/12/visual-studio-2008-and-net-framework-3-5-service-pack-1-beta.aspx What's New in the SP1 Beta? - ADO.NET and Entity Framework http://blogs.msdn.com/adonet/archive/2008/05/12/what-s-new-in-the-sp1-beta.aspx

.NET FX 3.5 sp1 with ADO.NET Entity Framework

Microsoft .NET Framework 3.5 Service pack 1 Beta http://www.microsoft.com/downloads/details.aspx?FamilyId=23516C63-2DB2-4E7F-AABA-32B12D6E025C&displaylang=en Microsoft Visual Studio 2008 Service Pack 1 Beta http://www.microsoft.com/downloads/details.aspx?FamilyId=CF99C752-1391-4BC3-BABC-86BC0B9E8E5A&displaylang=en
Posted by ccBoy | 0 Comments
Filed under:

PowerCommands 1.1

如果你已经习惯了Coderush或Refactor! Pro的复杂和庞大,到时可以尝试一下 PowerCommands 1.1 for Visual Studio 2008 1.1版本包括下面的功能: Enable/Disable PowerCommands in Options dialog This feature allows you to select which commands to enable in the Visual Studio IDE. Point to the Tools
Posted by ccBoy | 1 Comments
Filed under:
More Posts Next page »
 
Page view tracker