INFO 344 Web Tools And Development CK Wang University of Washington Spring 2014.

Slides:



Advertisements
Similar presentations
Updating Databases With Open SQL
Advertisements

Azure Services Platform Piotr Zierhoffer. Agenda Cloud? What is Azure? Environment Basic glossary Architecture Element description Deployment.
The Use of Microsoft based Technologies for the benefit of the Community Prof. Avi Mendelson – Microsoft & Technion - Taub 643.
Global Windows Azure Bootcamp Auckland March
Application for Internet Radio Directory 19/06/2012 Industrial Project (234313) Kickoff Meeting Supervisors : Oren Somekh, Nadav Golbandi Students : Moran.
A Brief Overview by Aditya Dutt March 18 th ’ Aditya Inc.
How a little code can help with support.. Chris Barba – Developer at Cimarex Energy Blog:
INFO 344 Web Tools And Development CK Wang University of Washington Spring 2014.
INFO 344 Web Tools And Development CK Wang University of Washington Spring 2014.
Data File Access API : Under the Hood Simon Horwith CTO Etrilogy Ltd.
Windows Azure: Microsoft’s Cloud Platform By Shahed Chowdhuri.
INFO 344 Web Tools And Development CK Wang University of Washington Spring 2014.
Cloud Computing & Amazon Web Services – EC2 Arpita Patel Software Engineer.
INFO 344 Web Tools And Development CK Wang University of Washington Spring 2014.
Windows Azure Conference 2014 Deploy your Java workloads on Windows Azure.
INFO 344 Web Tools And Development CK Wang University of Washington Spring 2014.
Windows Azure Conference 2014 Designing Applications for Scalability.
Hydrologic Information System Deployment and configuration.
Pradeep S Pushpendra Singh Consultants, Neudesic Technologies, Hyderabad, India.
IOS and Android with Windows Azure Websites Name Title Address Website.
INFO 344 Web Tools And Development CK Wang University of Washington Spring 2014.
Building Mobile Phone Applications With Windows Azure Nick HarrisWindows Azure Technical Evangelist Microsoft Blog:
Building Connected Windows 8 Apps with Windows Azure Web Sites Name Title Organization.
Database Management System. DBMS A software package that allows users to create, retrieve and modify databases. A database is a collection of related.
INFO 344 Web Tools And Development CK Wang University of Washington Spring 2014.
INFO 344 Web Tools And Development CK Wang University of Washington Spring 2014.
Mobile + Cloud: Building Mobile Applications with Windows Azure Wade Wegner Blog:
INFO 344 Web Tools And Development CK Wang University of Washington Spring 2014.
ADO.NET FUNDAMENTALS BEGINNING ASP.NET 3.5 IN C#.
Windows Azure Fundamentals Services Storage. Table of contents Overview Cloud service basics Managing cloud services Cloud storage basics Table storage.
Azure databases 1. Azure storage possibilities Azure offers several storage possibilities Microsoft SQL Server database MySQL database Azure Document.
INFO 344 Web Tools And Development CK Wang University of Washington Spring 2014.
INFO 344 Web Tools And Development CK Wang University of Washington Spring 2014.
INFO 344 Web Tools And Development CK Wang University of Washington Spring 2014.
INFO 344 Web Tools And Development CK Wang University of Washington Spring 2014.
Launch Amazon Instance. Amazon EC2 Amazon Elastic Compute Cloud (Amazon EC2) provides resizable computing capacity in the Amazon Web Services (AWS) cloud.
The Jukebox is a.NET web application that plays streaming music files to it’s clients according to their favorites musical genres. Clients can rate the.
Building web applications with the Windows Azure Platform Ido Flatow | Senior Architect | Sela | This session.
Bellevue College Workshop Azure Storage & SQL Mohamed El Hassouni Hans Olav Norheim.
Windows Azure and iOS Chris Risner Windows Azure Technical Evangelist Microsoft
Making a Difference with Azure Storage Solutions Dudu Sinai.
Cloud Computing for Science
Azure SQL Databases - Introduction and Migration
Create Virtual Directory Windows 8 - IIS 8.5
Microsoft Azure Automation Helps Simplify and Secure Monthly Accounting for Small Business “Migrating to Microsoft Azure has given us the structure and.
INFO 344 Web Tools And Development
Acutelearn Amazon Web Services Training Classroom Training Instructor led trainings at Acutelearn premises Corporate Training Custom tailored trainings.
Azure Machine Learning & ML Studio
PLOTr -KUSHAL MEHTA.
Relational databases, and more …
2018 Amazon AWS DevOps Engineer Professional Dumps - DumpsProfessor
“Azure provides us with an integrated development environment
Entity Framework Core (EF Core)
INFO 344 Web Tools And Development
Web Server Design Week 16 Old Dominion University
INFO 344 Web Tools And Development
5 Azure Services Every .NET Developer Needs to Know
INFO 344 Web Tools And Development
Data Access Layer (Con’t) (Overview)
INFO 344 Web Tools And Development
INFO 344 Web Tools And Development
Updating Databases With Open SQL
INFO 344 Web Tools And Development
INFO 344 Web Tools And Development
INFO 344 Web Tools And Development
INFO 344 Web Tools And Development
Created by Atif Aziz. ELMAH means is "Error Logging Modules and Handlers". It is an application-wide error logging facility that is completely pluggable.
Updating Databases With Open SQL
SQL Azure to .NET Developers
Saravana Kumar Founder – Serverless360 / Microsoft MVP - Azure
Presentation transcript:

INFO 344 Web Tools And Development CK Wang University of Washington Spring 2014

Azure Services Azure Blob => AWS S3 Azure SQL Database => AWS RDS Azure Tables => AWS Dynamo DB Azure Queues => AWS Message Queue Service

Create a web service in VS 2013 We know the drill… Modify web.config too

C# LINQ One of my favorite features in C# Create [WebMethod] – public List ShowResults(int N) – Create N integers {0…N-1} Square them Order by Descending! Convert them to String – Using LINQ >

Azure Tables Like Amazon’s DynamoDB “Infinite” scaling Map in the cloud (key/value pair)

Azure Tables [WebMethod] Read PA1 CSV data file into memory [WebMethod] Save PA1 data to Azure Tables [WebMethod] Search Azure Tables for data

Azure Tables Create NBAPlayerStats Class Read PA1 CSV data file via LINQ

Azure Tables Insert & Read Player data Warning: Insert & Read should be different web methods. This is just code blocks. Search on Goog for “azure table tutorial” Part 2 = search via points per game

Azure Queue Like Amazon’s Message Queue Communicate between machines Property = any machine reading the queue can take the data FIFO

Azure Queue [WebMethod] Insert url into Queue [WebMethod] Read url from Queue (invisible for limited time)

Azure Queue Warning: You need to write the web methods. This is just code blocks. Why do we need delete message?

Questions?