Download - for Developers

Transcript
Page 1: for Developers

for Developers

Martin ParryDeveloper and Platform [email protected]://martinparry.com

Page 2: for Developers

Agenda

Top 7 Ways To “Light Up” Your Apps on Windows Server 2008Part 1 emphasis on

IIS7, PowerShellPart 2 emphasis on

WER, Restart and Recovery APIs, TxF

Page 3: for Developers

The Top 7 Ways… Part 1

1. Build More Flexible Web Applications2. Design Highly-Manageable Applications3. Develop Federation-Aware Applications4. Build Connected Systems5. Build For Scalability6. Virtualize7. Develop More Reliable Applications

Page 4: for Developers

1. Build More Flexible Web Apps

Page 5: for Developers

IIS 7.0 Introduction

Client version shipped with Windows VistaLimited throughput

Server version will ship with WS2008Currently available in RC formMore features than client

Page 7: for Developers

IIS 7.0 Architecture

Page 8: for Developers

Windows Process Activation ServiceManages configuration

What used to be the metabaseResponsible for starting worker processes...

w3wp.exe...and routing incoming requests to the appropriate worker processAlso hosts the new listener adapter interface

You can build your own listeners for WAS

Page 9: for Developers

IIS 6.0 Request Pipeline

Page 10: for Developers

IIS 6.0 Request PipelineIIS pipeline extensible using ISAPI

Native codeCan apply to all requests

ASP.NET pipeline extensible using IHttpModuleManaged codeCan only apply to requests routed via ASP.NET

Certain pipeline elements are “always there”IIS authenticationLogging

Page 11: for Developers

IIS 7.0 Request Pipeline

Page 12: for Developers

IIS 7.0 Request PipelineLinear sequence of modulesAny module can be enabled/disabled

Including “built-in” onesModules can be managed or native codeAny type of module applies to any request

Page 13: for Developers

IIS7 Modules

Page 14: for Developers

IIS 6.0 Configuration

IIS 6.0 (and earlier) use the metabaseStores all configuration informationOriginally in binary form, then in XMLHard to allow management of separate apps by different groups of people

Page 15: for Developers

IIS 7.0 Configuration

machine.config

“root” web.config

web.config

web.config

web.config

applicationHost.config

Page 16: for Developers

IIS7 Configuration

Page 17: for Developers

Building Native Modules

Export a RegisterModule function from DLLDefine one or more other functions

To process request or responseInside RegisterModule...

Hook up your other functions(s) at specific points in the pipelineE.g. Begin, AuthN, AuthZ, ExecuteHandler, End

Page 18: for Developers

Building Managed Modules

Implement IHttpModuleImplement Init function

Attach event handlers for specific points in the pipelineE.g. Begin, AuthN, AuthZ, ExecuteHandler, End

Same as existing ASP.NET HttpModules

Page 19: for Developers

IIS7 Managed Module

Page 20: for Developers

IIS7 Diagnostics - RSCA

Runtime Status and Control APIShows currently executing: -

Application PoolsRequests

Exposed viaIIS admin toolProgrammatically via WMI and Managed OM

Page 21: for Developers

IIS7 Diagnostics – Failed Requests

IIS7 allows you to log trace information just for requests that fail

For some definition of failureBuffers all trace outputOnly flushes to disk if the request failsLog output is XML, with a stylesheet

Breaks down processing by moduleIncludes timing details for each module

Page 22: for Developers

IIS7 – Failed Request Tracing

Enable FREB at the Web Site levelConfigure FREB rules at the application levelEach rule: -

Specifies the type of web content it applies toCan specify a specific failure codeCan specify a duration in secondsCan specify a trace event severity

Page 23: for Developers

IIS7 Failed Request Tracing

Page 24: for Developers

2. Design Highly-Manageable Apps

Page 25: for Developers

Management in Windows Server 2008

MMC v3.0Managed framework for building snap-insMicrosoft.ManagementConsole namespace

– Ships with .NET Framework v3.0

Already seen it in use – IIS Admin Console

Windows PowerShell

Page 26: for Developers

Windows PowerShell

It’s a command-line interface!ScriptableCommands may be composedNot based on text, based on .NET objectsAvailable for...

Windows XPWindows Server 2003Windows Vista

Ships inside...Windows Server 2008

Page 27: for Developers

Windows PowerShell and Scripting

Page 28: for Developers

PowerShell and Developers

Developers can create new commands...and can create PowerShell “drives”Excellent way to provide admin experience for your applications.

Exchange 2007 and SQL Server 2008, for example

Page 29: for Developers

PowerShell Cmdlets and Providers

Page 30: for Developers

3. Develop Federation-Aware Apps

Page 31: for Developers

Developing Federated Identity Apps

With AD FSActive Directory Federation Services

Why?Enables cross-domain, cross-platform access to your Web applicationsProvides Web SSO experiencePromotes a claims-based programming modelAchieve reach for your application

– Think “outside of the firewall”

Page 32: for Developers

`

Internal Client

ResourceFederation Server

AccountFederation Server

Web Server

Active Directory

A. DatumAccount Forest

Trey ResearchResource Forest

B2B Federation Scenario

Federation Trust

https

https

https

Page 33: for Developers

Application Authorization Using Claims

ClaimsStatements made by an authority about a userUsed for authorization purposes

Three types of ADFS claimsIdentity

– Email– User Principal Name (UPN)– Common Name

GroupCustom

Identity

UPN:[email protected]

Group

PurchaserAdministratorAdatum

Custom

DisplayName:Eric Parkinson

Position:Purchasing Staff

Page 34: for Developers

Coding a Federation-Aware app

System.Web.Security.SingleSignOnSystem.Web.Security.SingleSignOn.AuthorizationIn code: -

SsoId = User.Identity as SingleSignOnIdentitySsoId.IsAuthenticated – have we a good security token?SsoId.SecurityPropertyCollection – each item could be...

– Group claim, UPN claim, custom claim

Application can get any/all claim details

Page 35: for Developers

4. Build Connected Systems

Page 36: for Developers

Interopwith otherplatforms

ASMX

Attribute- Based

Programming

Enterprise Services

WS-*ProtocolSupport

WSE

Message-Oriented

Programming

System.Messaging

ExtensibilityLocation transparency

.NET Remoting

Windows Communication Foundation

Page 37: for Developers

Sub-queues Poison Message Handling

App-Specific Dead Letter Queues

TransactionalRemote Receive

MSMQ 4.0

Page 38: for Developers

Sub-queues

Never created explicitlyAccessed via DIRECT FormatName...

DIRECT=OS:server\private$\myqueue;mysubqCreated at time of first OpenCan receive in the normal fashionCan only insert with MQMoveMessage

No managed code equivalent

Page 39: for Developers

Poison Message Handling

WCF binding configuration...<netMsmqBinding><binding name="PoisonBinding"

receiveRetryCount="0“maxRetryCycles="1“retryCycleDelay="00:00:05“receiveErrorHandling="Move">

</binding></netMsmqBinding>

Page 40: for Developers

End of Part One

Build More Flexible Web ApplicationsIIS7

Design Highly-Manageable ApplicationsWindows PowerShell, MMC3

Develop Federation-Aware ApplicationsAD FS

Build Connected SystemsWCF, MSMQ 4

Page 42: for Developers

© 2007 Microsoft Ltd. 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.


Top Related