Windows Communication Foundation

Slides:



Advertisements
Similar presentations
Indigo Jonathan Turnbull Nick Cartwright Ivan Konontsev Chris Bright.
Advertisements

Michael S. Chan xLM Solutions, LLC
WCF Intro Scott Reed Owner - Brain Hz Software Instructor – DevelopMentor
Web Services Darshan R. Kapadia Gregor von Laszewski 1http://grid.rit.edu.
Zoiner Tejada Hershey Technologies. About Zoiner Tejada.
 Introduction  WCF Definition  WCF Architecture  Implementation  WCF Demo Overview.
1 Nordjyllands Erhvervakademi Windows Communication Foundation Introduction –.Net foundations –Communication Protocols –SOA tenets WCF –Basics –Contracts.
Latest techniques and Applications in Interprocess Communication and Coordination Xiaoou Zhang.
Windows Communication Foundation and Web Services.
.NET Deployment Matt Smouse CSE775 – Distributed Objects Spring 2003.
X.509 support in WCF Exploring support for X.509 Certificates in Microsoft’s Windows Communication Foundation Paul Cormier UCCS CS591 Fall 2009.
The Microsoft Technical Roadshow 2006 Windows Communication Foundation Mike Taulty Developer & Platform Group Microsoft Ltd
Module 13: WCF Receive Adapters. Overview Lesson 1: Introduction to WCF Receive Adapters Lesson 2: Configuring a WCF Receive Adapter Lesson 3: Using the.
Getting Started with Windows Communication Foundation 4.5 Ed Jones, MCT, MCPD, MCTS Consultant RBA Inc.
Getting Started with WCF Windows Communication Foundation 4.0 Development Chapter 1.
Copyright ©2004 Virtusa Corporation | CONFIDENTIAL Introduction to Windows Communication Foundation Ruwan Wijesinghe.
Agenda What Is the Windows Communication Foundation? How Does It Work? How Do I Use and Deploy It? Bindings Addresses Contracts How to host WCF services.
Microsoft Visual Studio 2010 Muhammad Zubair MS (FAST-NU) Experience: 5+ Years Contact:- Cell#:
1 UCN 2012 Why use distributed (client / server) applications? To connect tiers within the same application... –client & server is both.NET assemblies.
Microsoft Visual Studio 2010 Muhammad Zubair MS (FAST-NU) Experience: 5+ Years Contact:- Cell#:
Intro to WCF From the beginning and uses Steve AppRochester.
Random Logic l Forum.NET l Web Services Enhancements for Microsoft.NET (WSE) Forum.NET ● October 4th, 2006.
A Deep Dive into Best Practices with the Windows Communication Foundation John Justice COM415 Program Manager Microsoft Corporation.
Developing Web Services Using ASP.NET and WSE That Interoperate with the Windows Communications Foundation ("Indigo") Mark Fussell COM432 Lead Program.
Mahesh Krishnan, Senior Consultant, Readify Slide 1.
Telerik Software Academy Web Services & Cloud.
Introducing the ABCs of Windows Communication Foundation | Feb 2006 rickgaribay.net Windows Communication Foundation Hosting & Endpoints Winter 2006.
Kemal Baykal Rasim Ismayilov
Windows Communication Foundation David Anderson Independent Software Developer DCOM Productions.
Web Services Security with Visual Studio 2005 Muhammad Saqib Ilyas
Presentation 24: Windows Communication Foundation Introduced Objektorienteret Netværkskommunikation.
Agenda What Is the Windows Communication Foundation? How Does It Work? How Do I Use and Deploy It? Bindings Addresses Contracts How to host WCF services.
.NET Mobile Application Development XML Web Services.
Dhananjay Kumar MVP-Connected System 1. WCF  Agenda What is WCF ? Why WCF? Address, Binding, Contract End Points Hosting Message Patterns Programming.
Introduction to.NET FX 3.0 (+ sneak preview of.NET FX 3.5) Martin Parry Developer & Platform Group Microsoft Ltd
The SOAP Story Martin Parry Developer & Platform Group Microsoft Ltd
Windows Communication Foundation António Cruz Freelancer (SAPO/PT.COM)
Shani Raba Team Leader & Software Architect
OE-NIK HP Advanced Programming WCF WCF SOAP service, host, client Exception handling (NOT required)
Windows Communication Foundation Stipe Ivan Latković.
Nati Dobkin
O VERVIEW OF SOA AND WCF Jinaldesai.net – My Thouths And Learnings.
Windows Communication Foundation. Agenda How We Got Here ASMX vs WCF Throwdown WCF Contracts Service Data Message Bindings Security Reliability Declarative.
Windows Communication Foundation and Web Services
Jim Fawcett CSE681 – SW Modeling & Analysis Spring 2005
Windows Communication Foundation
Segments Introduction: slides 2–7 10 minutes
4/12/2018 2:37 PM Windows Communication Foundation: Migration, interop, upgrade, and integration Risman Adnan ISV Lead, Microsoft Indonesia
Windows Communication Foundation
Window Communication Foundation
WCF.
Windows Communication Foundation
Jim Fawcett CSE686 – Internet Programming Summer 2005
Windows Communication Foundation (WCF)
Matt Smouse CSE775 – Distributed Objects Spring 2003
Distribution of functionality Webservice using WCF
Windows Communication Foundation and Web Services
Windows Communication Foundation
אפליקציות אסינכרוניות ל-Windows 10
Windows Communication Foundation (WCF)
Introduction to Web Services
APACHE WEB SERVER.
The SOAP Story Martin Parry Developer & Platform Group Microsoft Ltd
SOAP web services in Microsoft Azure
Matt Smouse CSE775 – Distributed Objects Spring 2003
Jim Fawcett CSE791 – Distributed Objects Spring 2002
WCF Data Services and Silverlight
Message Passing Systems Version 2
Matt Smouse CSE775 – Distributed Objects Spring 2003
Message Passing Systems
Presentation transcript:

Windows Communication Foundation Jim Fawcett CSE681 – SW Modeling & Analysis Summer 2008

References Programming “INDIGO”, David Pallmann, Microsoft Press, 2005 Windows Communication Foundation Unleashed, McMurtry, Mercuri, Watling, Winkler, SAMS, 2007 Pro WCF, Peiris and Mulder, apress, 2007 MSDN WCF Root Page WCF Feature Details Distributed .NET Learn ABCs Of Programming WCF Service Station Serialization in Windows Communication Foundation Service Station WCF Messaging Fundamentals Windows Communication Foundation Glossary Windows Communication Foundation Tools

References – Activation & Channels How to Access WCF Services with One-Way and Request-Reply Contracts How to Access Services with a Duplex Contract Sessions, Instancing, and Concurrency WCF Essentials Instance Management WCF Essentials One-Way Calls, Callbacks, Events

References – Web Model How to Create a Basic Web-Style Service WCF Web Programming Model Overview Web Programming Model WCF Web Programming Object Model WCF Syndication HTTP Programming with WCF and the .NET Framework 3.5 Creating WCF AJAX Services without ASP.NET Creating WCF Services for ASP.NET AJAX

References – Odds and Ends Accessing Services Using a Client Clients Client Architecture Client Configuration Call WCF Service Operations Asynchronously A Performance Comparison Security in WCF

What is WCF? Provides software services on machines, networks, and across the internet Unified programming model for all of these Supported natively on Windows Vista Requires installation on XP Not available on other platforms Mono? DotGnu? Mac OSX ?

Integration into .Net 3 One model for distributed systems decomposes into presentation layer, application logic layer, and data layer, all bound together with communication. Presentation: WPF, Silverlight with Asp.Net Data: LINQ - binds views to storage Communic: WCF – local, network, internet Applic. Logic: Custom designs

WCF Design Principles Boundaries are explicit Services are autonomous No attempt to hide communication Services are autonomous Deployed, managed, and versioned independently Services share contracts and schemas, not types Contracts define behavior, schemas define data Compatibility is policy-based Policy supports separation of behavior from access constraints

Essential Pieces of WCF Contracts for services, data, and messages A contract is simply an interface declaration Service, Data, and Message definitions Class implementations Configurations defined programmatically or declaratively config files. A host process (can be self hosted) IIS, Windows Executable, Windows Service, or WAS .Net Framework (3.5) Classes provide support for all of the above.

Look and Feel of WCF Convergence of programming models Just like web services Similar to .Net Remoting Sockets on steriods Hosting for local, network, and web Communication models Remote Procedure Call (RPC) with optional data models Message passing One way, request and wait for reply, asynchronous full duplex

WCF Architecture

ServiceModel Namespace Bindings, Channels, Endpoints, Messages, Serialization Activation, Concurrency, Hosting, Security, Sessions Queuing, Transactions Exceptions

Principle Parts of a WCF Service Contract An interface defining services rendered Service, Data, Message Endpoints Address: http://localhost/Calculator/service Binding: wsHttpBinding Contract: ICalculator Implementation One or more classes that implement the contract interfaces. May also include hosting code.

WCF Service Files IService.cs Service.cs Service.svc Interface(s) that define a service, data, or message contract Service.cs Implement the service’s functionality Service.svc Markup file (with one line) used for services hosted in IIS Configuration files that declare service attributes, endpoints, and policy App.config (self hosted) contains service model markup Web.config (hosted in IIS) has web server policy markup plus service model markup, as in App.config

Service serviceModel Markup <system.serviceModel> <services> <service name=“mySvcName” behaviorConfiguration=“…”> <endpoint address=“” binding=“wsHttpBinding” contract=“myNamespace.myInterface” /> <!-- can expose additional endpoints here --> <endpoint address=“mex” binding=“mexHttpBinding” contract=“IMetadataExchange” /> </service> </services> <behaviors> <serviceBehaviors> <behavior name=“myNamespace.mySvcNameBehavior”> <serviceMetaData httpGetEnabled=“true” /> <serviceDebug includeExceptionDetailInFaults=“false” /> </behavior> </serviceBehaviors> </behaviors> </system.serviceModel>

Channels Channels are the vehicles that transport messages. They provide: Transport protocols via bindings Http, wsHttp, Tcp, MSMQ, named pipes Encoding and Encryption Reliable sessions Communication modes Simplex, duplex, send and wait Security modes

WCF Bindings Binding Interoperability Mode of Security (Default) Session (Default) Transactions Duplex BasicHttpBinding Basic Profile 1.1 (None), Transport, Message, Mixed None, (None) (None) n/a WSHttpBinding WS None, Transport, (Message), Mixed (None), Transport, Reliable Session (None), Yes WS2007HttpBinding WS-Security, WS-Trust, WS-SecureConversation, WS-SecurityPolicy WSDualHttpBinding None, (Message) (Reliable Session) Yes WSFederationHttpBinding WS-Federation None, (Message), Mixed (None), Reliable Session No WS2007FederationHttpBinding NetTcpBinding .NET None, (Transport), Message, Mixed Reliable Session, (Transport) NetNamedPipeBinding None, (Transport) None, (Transport) NetMsmqBinding None, Message, (Transport), Both NetPeerTcpBinding Peer None, Message, (Transport), Mixed MsmqIntegrationBinding MSMQ

Interoperability Channel protocols determine interoperability with other platforms: BasicHttpBinding  universal interoperability wsHttpBinding  platforms that use ws extensions netTcpBinding  .Net on both ends MSMQ  WCF to pre WCF windows platforms

Hosting Self Host Internet Information Server (IIS) Service has a Main entry point, runs in its own process. Internet Information Server (IIS) BasicHttpBinding provides a web service. wsHttpBinding provides web service with ws* extensions. Windows Activation Service (WAS) Uses virtual directory, like web service.

Service Behaviors Instancing: Concurrency models for instances: Singleton: one instance for all clients Per call: one instance per service call Private session: one instance per client session Shared session: one instance per session shared between clients Concurrency models for instances: Single: one thread at a time accesses instance Multiple: more than one thread may enter instance Reentrant: threads make recursive calls without deadlock

Other Service Behaviors Throttling: Limits on number of messages, instances, and threads a service can process simultaneously Error handling: Options to handle, let framework handle, and report to client Metadata: Services can be self-describing, providing MEX endpoints Lifetime: Can specify session duration, service operations to initiate sessions and others to terminate sessions Security: Can specify message confidentiality, integrity, authentication, authorization, auditing, and replay detection.

Structuring Service Code Class Attribute Service contract interface [ServiceContract] Service operation method [OperationContract] Implementation class [ServiceBehavior] Derive from contract interface [OperationBehavior] Data Contract [DataContract] class [DataMember] member Message Contract [MessageContract] interface [MessageHeader] member [MessageBody] member

Building Clients Build proxy with svcutil Add proxy code to project Visual Studio will do that if you add a service or web reference Proxy code is in a subdirectory under the project. Add proxy code to project Add “using System.ServiceModel” to client code Build and run

Generating Proxies SvcUtil.exe generates code: from a mex endpoint: svcutil http://localhost/myService from WSDL or XSD files: svcutil myService.wsdl SvcUtil.exe generates WSDL and XSD files from a service library: svcutil myService.dll

Channel Model You can create a channel programmatically In this case you access the channel directly without the need of a proxy. All of the configuration normally done with a Web.config or App.config can also be done programmatically.

Types of WCF Contracts WCF supports: Service contracts Data contracts Supports RPCs with native data types Data contracts Data contracts provide definitions of user defined data structures for transmission through RPCs Message contracts Message contracts support message passing Instead of calling functions send and receive messages

WCF Samples Microsoft has provided a large set of very interesting samples: WCF Samples home: http://msdn.microsoft.com/en-us/library/ms751514.aspx Setup instructions here: http://msdn.microsoft.com/en-us/library/ms751402.aspx Download here: http://www.microsoft.com/downloads/details.aspx?FamilyID=0043041F-95D6-4EB7-966A-C21A737E193A&displaylang=en Note: Samples use a single virtual directory, created by the setup process Builds clear the virtual directory and copy built sample files Initial setup installs developer certificate, required to run SSL In Vista, must Run Visual Studio as administrator

White Papers The following two white papers, by David Chappell plus the Microsoft samples are a great help learning WCF. www.davidchappell.com/articles/white_papers/Introducing_WCF_in_.Net_Framework_3.5_v1.0.docx www.davidchappell.com/articles/white_papers/WCF_Diversity_v1.0.docx

End of Presentation