Bret Stateham Owner, Net Connex blogs.netconnex.com twitter.com\bstateham.

Slides:



Advertisements
Similar presentations
Bring your own machines, connectivity, software, etc. Complete control Complete responsibility Static capabilities Upfront capital costs for the.
Advertisements

Go…Running Kentico CMS on Windows Azure Thomas Robbins, Chief Evangelist, Kentico CMS.
Get set.. Introduction to Windows Azure Development Brian McKeiver, Kentico MVP & Partner/Senior Developer, BizStream.
Overview Of Microsoft New Technology ENTER. Processing....
Protecting your online and on premises assets "Cloud Style" Mike Martin Architect / Microsoft Azure MVP.
Server Roles and Features.NET Framework 3.51.NET Framework 4.5 IIS Web Server IIS Default Document IIS Directory Browsing IIS HTTP Errors.
Joey Snow Technical Evanglist Microsoft Corporation SESSION CODE: WSV310.
Cloud Computing Systems Lin Gu Hong Kong University of Science and Technology Sept. 21, 2011 Windows Azure—Overview.
Node.js on Windows Azure Name Title Microsoft Corporation.
Worker Role Web Role Web Role VM Role Control Abstraction (i.e. Less IT & Less Plumbing Code) Admin Web / Worker Role VM Role Web / Worker Role.
Eric Nelson Developer Evangelist Microsoft UK | Lap around.
Lecture 8 – Platform as a Service. Introduction We have discussed the SPI model of Cloud Computing – IaaS – PaaS – SaaS.
Microsoft Azure Introduction ISYS 512. Microsoft Azure Microsoft Azure is a cloud.
Getting Started with Windows Azure Name Title Microsoft Corporation.
Windows Azure Tour Benjamin Day Benjamin Day Consulting, Inc.
Windows Azure Insights for the Enterprise IT Pro John Craddock Infrastructure and Identity Architect XTSeminars AZR301.
© Sogeti Sogeti-Microsoft Alliance Getting Started with Windows Azure Development.
Windows Azure: Microsoft’s Cloud Platform By Shahed Chowdhuri.
Mostafa Abdollahi Mazandaran University Of Science And Technology January 2011.
Introduction to Windows Azure BUGAEV ROMAN. Azure Windows Azure Platform is thus classified as platform as a service and forms part of Microsoft's cloud.
Understanding SSIS Control Flows Bret Stateham Training Manager Vortex Learning Solutions blogs.netconnex.com.
WEBMATRIX Microsoft Pranav Rastogi.
Pradeep S Pushpendra Singh Consultants, Neudesic Technologies, Hyderabad, India.
Azure Services Platform Update James Conard Sr. Director Developer & Platform Evangelism Microsoft Corporation.
IOS and Android with Windows Azure Websites Name Title Address Website.
Node.js & Windows Azure AZR326  JavaScript on the Server!  Event driven I/O server-side JavaScript  Not thread based, each connection uses only a.
Intro to Datazen.
Windows Azure Cloud Services Anton Boyko.NET developer.
 Mike Martin  Architect  MEET Member  Crew Member of Azug  Windows Azure Insider  Windows Azure MVP  
Windows Azure Fundamentals Services Storage. Table of contents Overview Cloud service basics Managing cloud services Cloud storage basics Table storage.
Windows Azure, SQL Azure and SharePoint 2010 Integration.
Windows Azure Custom Software Development Mobile Middleware Windows Azure Compute Dipl.-Ing. Damir Dobric Lead Architect daenet
Azure databases 1. Azure storage possibilities Azure offers several storage possibilities Microsoft SQL Server database MySQL database Azure Document.
Azure in a Day Training: Windows Azure Module 1: Windows Azure Overview Module 2: Development Environment / Portal – DEMO: Signing up for Windows Azure.
Windows Azure poDRw_Xi3Aw.
Microsoft Cloud Day Windows Azure – platform overview and update Mario Szpuszta Platform Strategy Advisor EMEA Windows Azure ISV Team Microsoft Corporation.
Microsoft Cloud Computing. Topics to be covered 1.Environmental Features of windows azure 2.What is Cloud Computing 3.Roles in Cloud Computing 4.Benefits.
Virtual techdays INDIA │ august 2010 Building & Deploying Windows Azure Application using VS2010 Saranya Sriram │ Developer Evangelist, Microsoft.
Building web applications with the Windows Azure Platform Ido Flatow | Senior Architect | Sela | This session.
Introduction to: SQL Server Reporting Services Architecture, Development & Delivery.
SQL Server Reporting Services for.NET Developers Bret Stateham
Windows Azure and iOS Chris Risner Windows Azure Technical Evangelist Microsoft
 Cloud Computing technology basics Platform Evolution Advantages  Microsoft Windows Azure technology basics Windows Azure – A Lap around the platform.
Bret Stateham Owner, Net Connex blogs.netconnex.com
Bret Stateham Owner, Net Connex blogs.netconnex.com twitter.com\bstateham.
Deploying Web Application
MIX 09 5/29/ :31 AM © 2009 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered.
Jim Nakashima Program Manager – Cloud Tools Microsoft Corporation
Exceedra + Azure Mark Rendle Principal Software Architect
Relational databases, and more …
02 | Hosting Services in Windows Azure
The Challenges of moving Document Creation to the Cloud
持續的產出Windows Azure 雲端服務
Code Walkthrough of a Cloud Application Running on the Windows Azure Platform
microsoft cloud platform: enterprise-class architecture
Introduction to Building Applications with Windows Azure
Jim Nakashima Program Manager Cloud Tools
Saranya Sriram Developer Evangelist | Microsoft
2/17/2019 7:32 AM © 2009 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered.
Migrating your applications to Azure
Developing for Windows Azure
Developing Microsoft Azure Solutions Jump Start
Sayed Ibrahim Hashimi Program Manager Microsoft Corporation
Tech Ed North America /12/2019 6:45 AM Required Slide
5 Azure Services Every .NET Developer Needs to Know
02 – Cloud Services Bret Stateham | Senior Technical Evangelist​
Developing Windows Azure Applications with Visual Studio
SOAP web services in Microsoft Azure
7/19/2019 2:53 AM © 2007 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered.
Microsoft Azure Services Platform
Presentation transcript:

Bret Stateham Owner, Net Connex blogs.netconnex.com twitter.com\bstateham

Intro to Azure Signing Up for Azure Development Tools Running some Code

Slide Content Stolen from a Microsoft Slide Deck

Computing Services Our Code Web Role Worker Role They Manage Multiple Instances Patching Failure Etc. Cloud Storage Our Data Blob Table Queue They Manage Disks Replication Failure Etc.

Go to Follow the Links to “Register for Services” Sign up with Connect Complete Azure Services Invitations Program application Wait for token in (days,weeks,months) Follow the link in the to claim the token

Go to the Azure Services Developer Portal: lx.azure.microsoft.com

Windows Azure SDK (01/19 CTP) Windows Azure tools for Visual Studio (01/09 CTP) Microsoft.Net Services SDK Microsoft SQL Data Services SDK Live Framework Documentation and Resources Azure Services Training Kit

Have to be on Vista SP1 or Win 2008 (Win7?) Need IIS7 & WCF HTTP Activation Need SQL Express (05 or 08) by default

SDK Assumes you will be using Express (05 or 08) Edit the following files: – %samples%\MSBuild\Microsoft.Samples.ServiceHosting.Targets file – C:\Program Files\Windows Azure SDK\v1.0\bin\DevelopmentStorage.exe.config See the following blog post on indiangeek.net: Using Windows Azure SDK with SQL Server 2005/2008

Some things aren’t pretty Some things will break Some things will change Cloud computing is inevitable, so jump in now!

In the Azure SDK there is a samples.zip Expand that and run the “RunDevStorage.cmd” this will prep the SQL Express instance.

Web Role – ASP.NET Web Site – Listens on HTTP/HTTPS – Can work with storage Worker Role – Background processing – Can work with storage – Can read requests from a queue

The ServiceDefinition.csdef file contains the Service Definition Defines Roles – Web Role (http/https, port) – Worker Role Defines available Configuration Settings

The ServiceConfiguration.cscfg File Instances of each role Sets values for Configuration Settings Value

ProductionStaging Development

In Visual Studio use “Publish” – Builds & Creates… – CSPkg (Basically a zip of the binaries+) – CSCfg Go to: lx.azure.microsoft.com Two Environments – Staging – Production Can take a some time to initialize

Blobs – Store files, etc. Tables – Collections of items with properties Queues – FIFO Queue However I’ve heard it may be more like FIPFO Where P = Probably

My Sessions: – Today Getting Started with SQL Data Services (11:15am in UH 335) – Tomorrow SQL Server Integration Services Control Flows (10:15 in H 110) SQL Server Integration Services Control Flows (11:30 in H 110)

Stay in touch: blogs.netconnex.com gettag.mobi