Top Banner
Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation OSP334
45

Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Jan 03, 2016

Download

Documents

Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Why SharePoint and Windows Azure are Just Plain Better TogetherSteve FoxDirector, MCSMicrosoft Corporation

OSP334

Page 2: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

SharePoint and Windows Azure are now more than ever a very compelling technology integration.

Page 3: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Goals of this Session

Provide a ‘360’ view of how SharePoint and Windows Azure integrate

Walk through four scenarios that integrate SharePoint and Windows Azure

Discuss in the context of both IT Pro and Developer

Page 4: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Agenda

Fundamentals

4 Scenarios

Summary

Page 5: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Fundamentals

Page 6: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

SharePoint and Windows Azure: Evolved

IAAS PAAS SAAS

• SharePoint FIS• Hosted Learning• Dev. & Test • BI Apps• Departmental

Apps• Hybrid/LOB

Applications

• Services/Data Layer

• Storage and Archiving

• Messaging• Regional

Caching• Resource

Offload• Media Apps

• All-Cloud Solutions

• LOB applications

• Windows Phone 7.x Apps

• Custom Client-side Applications

Page 7: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

What‘s in the Windows Azure Spring Preview?

Data

La

yer

Serv

ice

Layer

Inte

gra

tion

La

yer

Clie

nt

Layer

PCGamesConsolePhoneTablet Browser

On-premises Service

On-premises Database

OfficeSharePoint

Web/WorkerCloud ServicesMedia Services HadoopWeb Sites

Virtual Machines

CachingDrive QueuesTablesBlobs SQLSQL Reporting

SQL DatabaseStorage

Stream Insight

SP

GA

ConnectCDNTraffic Manager

AD Access Control

Service Bus

SQL Data SyncEAI / EDI

Virtual Network

Load Balancer

Page 8: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Today? Four Scenarios

Data SynchronizationData Sync to bridge cloud-based data sources

Streaming MediaAzure Media Services to manage videos

“Lift and Shift” Using IAAS to host SharePoint solutions

All-Cloud Solution SharePoint Online, BCS & Windows Azure

Page 9: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Data Synchronization

Page 10: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

WFE WFE

INDXR APP SVR SQL SVR

Architecture

Data SyncSQL Azure Data Sync

SQL Database

SQL Azure Data Sync

PC PhoneTablet BrowserOfficeSharePoint

Page 11: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Demo

Data Synchronization

Page 12: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Process

Replicate schema to SQL AzureInstall Data Sync Agent on serverRegister SQL Server database with SQL Azure Data Sync AgentEdit the schema in SQL Azure you want to synchronizeSurface data in client/web/device

SQL Data ConnectionServiceREST

Page 13: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Windows Azure Cross-Premises Connectivity

CLOUD ENTERPRISE

Application-Layer Connectivity &

Messaging Service Bus

Data SynchronizationSQL Azure Data Sync

Secure Machine-to-Machine Connectivity

Windows Azure Connect

Secure Site-to-Site Network Connectivity

Virtual Network

Page 14: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Streaming Media

Page 15: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Azure Media Services Architecture

REST APIs

Azur

e CD

N

Azure Media Services Components

“Build-On” Media Partners and Customers

Adaptive StreamingPorting Kits(STB, iOS/Android)

Silverlight

Windows Phone

HTML5

Flash

Partn

er C

DNs

Origin

Caching

Windows 8

Windows Azure Core Platform

Secure Media Ingest

Media Job Scheduling

Encoding

ContentProtection

On-DemandOrigin

Live Origin

Analytics BroadcastScheduling

Ad Insertion XBOX

“Build-In”Partner Media Processors

Live Ingest

Live Encoding

Client Libraries

Page 16: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

BLOB Storage

WFE WFE

INDXR APP SVR SQL SVR

Architecture

CDN Cache

PC PhoneTablet BrowserO365SP-O

AMS Streaming

CDN Cache

Media

Azure Media Services (AMS)

Page 17: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Demo

Streaming Media in SharePoint

Page 18: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Azure Media Services Code Snippet…string inputFilePath = @"C:\windows\Performance\WinSat\winsat.wmv";

CloudMediaContext mediaContext = new CloudMediaContext(new Uri("https://nimbustap.cloudapp.net/API/"), "F7DF85E4-E142-2212-A433-161FE60D409C", "7HCe8R6n", "urn:Nimbus", "https://nimbusvoddev.accesscontrol.windows.net");

IAsset asset = mediaContext.Assets.Create(inputFilePath);string fileName = asset.Files[0].Name;

IAccessPolicy readPolicy = mediaContext.AccessPolicies.Create("CanReadFor30Minutes", TimeSpan.FromMinutes(30), AccessPermissions.Read);

asset.AccessPolicies.Add(readPolicy);

ILocator locator = asset.Locators.Where(c => c.AccessPolicyId == readPolicy.Id && c.ExpirationDateTime > DateTime.UtcNow).First();

var uriBuilder = new UriBuilder(locator.Path);

uriBuilder.Path += Path.AltDirectorySeparatorChar + fileName;

Uri fullUrl = uriBuilder.Uri;… More information?

http://msdn.microsoft.com/en-us/magazine/jj133821.aspx

Page 19: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Process

Create a video (e.g. WMV file)Leverage Media Services to

Upload videoTranscode and encode BLOB…

Leverage the video URL within SMF player or custom player

StreamingProgressive Download

Embed SMF or custom player within a SharePoint (or SharePoint Online) site

Page 20: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

“Lift and Shift”

Page 21: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Architecture

SP Standalone

WFE INDXR APP SVR SQL SVR

SharePoint Farm

WFE WFE

INDXR APP SVR SQL SVR

AD/DC/DNS

SharePoint Farm

LOB

VPN Tunnel

On-Premises Cloud

Page 22: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Demo

Creating a SharePoint VM in Azure IAAS

Page 23: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

http://tinyurl.com/7blzor2

Page 24: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Process

Log onto Azure portalCreate a new VM (or upload an existing one)

Create a VNET if you want to create a cloud networkCreate or upload other VMs and associate them with the VNET

Configure the VM(s) as you would normally configure your SP Farm servers

ORUse PowerShell to do all of the above in parallel

Page 25: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

PowerShell to Create/Migrate SP Farm## Create SP WFE1 $spwfe1 = New-AzureVMConfig -Name 'SP-WFE1' -AvailabilitySetName $avsetwfe `-ImageName $spimage -InstanceSize Medium |

Add-AzureProvisioningConfig -WindowsDomain -Password $dompwd `-Domain $domain -DomainUserName $domuser -DomainPassword $dompwd `-MachineObjectOU $advmou -JoinDomain $joindom |

Add-AzureInputEndpoint -Name 'http' -LBSetName 'lbhttp' -LocalPort 80 -PublicPort 80 -Protocol tcp -ProbeProtocol http -ProbePort 80 `-ProbePath '/healthcheck/iisstart.htm' |Set-AzureSubnet $spsubnet. . . $dns1 = New-AzureDns -Name 'dns1' -IPAddress '10.1.2.4'

New-AzureVM -ServiceName $cloudsvc -AffinityGroup $ag -VNetName $vnetname -DnsSettings $dns1 -VMs $spwfe1, $spwfe2, $spwfe3, $spwfe4, $spapp1, $spapp2, $spsql1, $spsql2

More Information? AZR327: Deploying SharePoint Farms on Windows Azure Virtual Machines

Page 26: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

All-Cloud Solutions

Page 27: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

2

All-Cloud Solution Patterns1 3 4

Page 28: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Web Service Proxy

(HTTP or HTTPS)

LOB Data(SQL Database)

LOB Data

Architecture

External List

SSS ECT

SharePoint(On-Premises or Online)

Device Interoperability

Page 29: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Demo

Creating a Cloud-Based LOB Application using BCS

Page 30: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Other Potential BCS LOB Connectivity Patterns

Any public facing WCF/ASMX service Open or username/password protected

A WCF service that wraps any OData serviceA WCF service that wraps any REST-based serviceA WCF service that exposes data from any database An on-premises WCF service

Use a Windows Azure WCF Service as a proxy serviceAccess on-premises service via Windows Azure Service Bus

More Information? OSP331: Building Microsoft SharePoint Online Applications in a Hybrid World

Page 31: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Process

Create SQL Azure (or other DB or endpoint, e.g. REST)Write a WCF service wrapper around that endpoint

Optionally add certificate for HTTPSProvide username/password configuration

Expose the endpoint in SharePoint Designer and create an external content type (ECT)Provide permissions for ECTCreate external list and publish to SharePoint Online

Optionally code against that list using the client object model

Page 32: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

partner

DocAve & SharePoint

Page 33: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Summary

Page 34: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

What about Identity?Option Development or OOB Sample Scenario

Active Directory OOB Create VM in the cloud and federate with Brooklyn.

ADFS Federation OOB Federate on-premises users for SSO to O365.

Office Live ID OOB Log into O365 session with your Office Live ID.

Windows Azure Active Directory

Development/OOB Uses token and secret key to authenticate service/ device or federate (ADFS 2.0) with claims for SSO.

WIF Development Identity management across multiple systems with no flow-through.

oAuth Development/OOB Can use with ACS or leverage SSO.

BCS OOB Configure external content types to pass username and password claim using SSS and Application ID.

SQL Connection String Development Obfuscate in application code or encrypt.

Shared Access Permissions Development Set permissions on a BLOB in Windows Azure storage.

Certificate Development/OOB Upload/manage certs within Azure for HTTPS service endpoints.

Headless Authentication Development Access SP-O from Azure using system account.

Page 35: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

IAASGood for a number of SharePoint workloadsReasonable to use for remote, hosted development environmentsYou might find challenges with network configuration/performanceGood hybrid story (on multiple fronts)

PAASUse as service bridge or cloud-based data appsOffload code to cloudHybrid solutions and cross-device

SAASSupports the all-cloud model—true cloud connect modelIncreasingly rich functionality with CRM Online and BCS supportAzure can provide service layer for device abstraction

Differentiation

Page 36: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Call to Action

For Development…Channel 9 SharePoint Developer Training KitChannel 9 Azure Developer Training KitChannel 9 O365 Developer Training KitSharePoint and Windows Azure Developer Kit

http://tinyurl.com/3hoga7c

Also...Check out Steve’s blog for code and walkthroughsRead Developing Microsoft SharePoint Applications using Windows AzureRead Professional SharePoint 2010 Cloud-Based Solutions

Page 37: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Steve Fox@[email protected]://blogs.msdn.com/steve_fox

Page 38: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Resources

Connect. Share. Discuss.

http://europe.msteched.com

Learning

Microsoft Certification & Training Resources

www.microsoft.com/learning

TechNet

Resources for IT Professionals

http://microsoft.com/technet

Resources for Developers

http://microsoft.com/msdn

Page 39: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

The Business Collaboration Platform for the Enterprise & the Internet

The capabilities of SharePoint 2010 provide a powerful business collaboration platform

Deliver the Best Productivity Experience

Cut Costs with a Unified Infrastructure

Rapidly Respond to Business Needs

The Business Collaboration Platform for the Enterprise and the Internet

Page 40: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Manage Resources Improve efficiency and save money by better managing work and allocation of resources

Maximize Portfolio Returns Make informed investment decisions and effectively communicate results across a portfolio of projects

Keep Teams Productive Save time and improve project results by centralizing team collaboration on deliverables and tasks

Improve SharePoint ROI Effectively manage requests to maximize the ROI of your SharePoint environmentwww.sharepoint.microsoft.com

www.microsoft.com/project

Project and SharePoint Better Together

Page 41: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Resources

Connect. Share. Discuss.

http://europe.msteched.com

Learning

Microsoft Certification & Training Resources

www.microsoft.com/learning

TechNet

Resources for IT Professionals

http://microsoft.com/technet

Resources for Developers

http://microsoft.com/msdn

Page 42: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Evaluations

http://europe.msteched.com/sessions

Submit your evals online

Page 43: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

© 2012 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries.The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to

be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS

PRESENTATION.

Page 44: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.

Welcome to a Deep Dive on

Bio-molecular Polymers

Page 45: Why SharePoint and Windows Azure are Just Plain Better Together Steve Fox Director, MCS Microsoft Corporation.