1 / 36

Windows communication foundation

Windows communication foundation. 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 in ASP.NET How WCF works inside of ASP.NET. WCF is.

tamra
Download Presentation

Windows communication foundation

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Windows communication foundation

  2. 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 in ASP.NET How WCF works inside of ASP.NET

  3. WCF is • Our next-generation platform for distributed systems • A set of extensions to the Microsoft.NET Framework 2.0 • Build WCF services in Visual Studio 2005 using any .NET Language • Intelligent code editing, IDE Extensions for WCF, debugging, re-factoring, code snippets, etc. • Visual Basic .NET, Visual C#, etc. • Runs on • Microsoft Windows Vista • Microsoft Windows XP • Microsoft Windows Server 2003

  4. .NET at the core The Unified Framework For Rapidly Building Service-Oriented Applications

  5. Windows Communication Foundation • Unifies today’s distributed technologies • Lets you develop/deploy/manage one model • Visual Studio 2005 integration Unification • Broad support for Web services (WS-*) specifications • Compatible with existing Microsoft-distributed application technologies Interoperability • Enables development of loosely-coupled services • Config-based communication Service-Oriented Development

  6. Unified Programming Model .NET Remoting ASMX Interop with other platforms Extensibility Location transparency Attribute- Based Programming Message- Oriented Programming WS-* Protocol Support Enterprise Services System.Messaging WSE

  7. 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 in ASP.NET How WCF works inside of ASP.NET

  8. How does it work?Endpoints Endpoint Endpoint Endpoint Client Service Message

  9. How does it work?Address, Binding, Contract C C C B B B A A A Client Service Message Address Binding Contract (Where) (How) (What)

  10. How does it work?Behaviours and Metadata C C C B B B A A A Metadata Client Service Bv Bv Message Bv Bv Proxy ServiceHost()

  11. 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 in ASP.NET How WCF works inside of ASP.NET

  12. How do I use it? Service Client

  13. How do I deploy it? Web Host within IIS: • For HTTP services on Windows XP® SP2 & WS2K3 • For any service on Windows Vista® and Windows Server® “Longhorn” • Proven reliability, scalability, and security • Requires a .svc file to identify the Service Type Self-Host within any .NET process: • Available for any service • Console apps, windowed apps, .NET NT Services …

  14. Building a simple service and client

  15. 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 in ASP.NET How WCF works inside of ASP.NET

  16. All About BindingsYou can choose a pre-defined binding: Binding Purpose BasicHttpBinding Basic Profile 1.1 Interop and Intergration w/ASMX WsHttpBinding Basis for WS-* interop Supports WS-Security, WS-RM, WS-Tx NetTcpBinding .NET.NET across processes Secure, reliable duplexed NetNamePipesBinding .NET.NET across processes Secure, reliable duplexed NetMSMQBinding .NET.NET via MSMQ NetPeerTcpBinding .NET Peer  Peer <endpoint name=“MyService” address=“MyAddress” binding=“netTcpBinding” contract=“IMyInterface” />

  17. All About BindingsYou can customize a pre-defined binding: <services> <service name=“MyService”> <endpoint address=“MyAddress” binding=“wsHttpBinding” bindingConfiguration=“MyReliableBinding” contract=“IMyInterface” /> <service/> </services> <bindings> <wsHttpBinding> <binding name=“MyReliableBinding”> <reliableSession enabled=“true” ordered=“true” </binding> </wsHttpBinding> </bindings>

  18. All About BindingsYou can define custom bindings: <services> <service name=“MyService”> <endpoint address=“MyAddress” binding=“wsHttpBinding” bindingConfiguration=“MyReliableBinding” contract=“IMyInterface” /> <service/> </services> <bindings> <wsHttpBinding> <binding name=“MyReliableBinding”> <reliableSession enabled=“true” ordered=“true” </binding> </wsHttpBinding> </bindings>

  19. 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 in ASP.NET How WCF works inside of ASP.NET

  20. All about Addresses An endpoint address is relative to a base address: <services> <host> <baseAddresses> <add baseAddress="http://localhost:8000/MyBaseAddress"/> </baseAddresses> </host> <service name=“MyService”> <endpoint address=“MyEndpointAddress” binding=“wsHttpBinding” bindingConfiguration=“MyReliableBinding” contract=“IMyInterface” /> <service/> </services> For a Web-Hosted service, the base address is that of its virtual directory

  21. 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 in ASP.NET How WCF works inside of ASP.NET

  22. All About Contracts • Service Contract: Describes the operations a service can perform. Maps CLR types to WSDL. • Data Contract: Describes a data structure. Maps CLR types to XSD. • Message Contract: Defines the structure of the message on the wire. Maps CLR types to SOAP messages.

  23. 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 in ASP.NET How WCF works inside of ASP.NET

  24. Hosting Services in ASP.NET • Write your service as usual: • [ServiceContract] • [OperationContract] etc. • ServiceHost’s are represented as .svc files: <% @ServiceHost Service=“HelloService” %> • Service attribute is a CLR type name • Matches <service name=“xxx”> from web.config

  25. Where can I put my service code? • Anywhere you can put code in ASP.NET: • Inline in the .svc file • In a .cs/.vb in App_Code • In a class library (.dll) located in \bin • WCF plays nicely with ASP.NET’s dynamic compilation system

  26. Which project type should I use? • Services can be built in any project type • Web projects • Class Libraries • Class libraries have benefits • Decouples implementation from hosting environment • Can test services in other hosts (e.g. console apps) during development • However, WCF doesn’t care which project type you use…use what makes sense for you

  27. Hosting WCF in ASP.NET

  28. 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 in ASP.NET How WCF works inside of ASP.NET

  29. IIS Worker Process (w3wp.exe)

  30. w3wp.exe ASP.NET

  31. w3wp.exe ASP.NET Page Framework, UI, Controls, HTTP Runtime (System.Web, System.Web.UI) ASP.NET Managed Hosting Layer(System.Web.Hosting, System.Web.Compilation)

  32. w3wp.exe ASP.NET Page Framework, UI, Controls, HTTP Runtime (System.Web, System.Web.UI) WCF Service Model (System.ServiceModel) Can share state ASP.NET Managed Hosting Layer(System.Web.Hosting, System.Web.Compilation)

  33. Service Implementation WCF WCF and the HTTP Pipeline Dispatcher Protocol Channels ASP.NET HTTP Transport Other HttpModule IIS WCF HttpModule(grabs *.svc) Other HttpModule Other HttpModule Process Host HTTP Request HTTP Response

  34. Why the split? • Two technologies, different priorities • WCF: consistency across transports and hosting environments • ASP.NET: optimize for HTTP applications hosted in IIS • Becomes very important on IIS7/WAS • WAS == Windows Process Activation Service

  35. Implications • ASP.NET platform features still work for ASP.NET • Forms auth • Session state • File/URL authorization • They just don’t apply to WCF by default

  36. Summary 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 in ASP.NET How WCF works inside of ASP.NET

More Related