Presentation is loading. Please wait.

Presentation is loading. Please wait.

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.

Similar presentations


Presentation on theme: "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."— Presentation transcript:

1 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

2 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 Studiousing 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

3 .NET at the core The Unified Framework For Rapidly Building Service-Oriented Applications WCF combines the functionality from ASP.NET Web Services,.NET Remoting, Message Queuing and Enterprise Services. Windows Communication Foundation (WCF)ASP.NET Web Service WCF supports multiple bindings HTTP, WSHTTP, TCP, MSMQ.ASP.NET Web Services supports only HTTP binding. WCF supports Atomic Transactions*.ASP.NET Web Services does not support Atomic Transactions*. By default WCF uses SOAP for sending and receiving the messages. But WCF can support any kind of message format not only SOAP. ASP.NET Web Services can send and receive messages via the SOAP only. The System.Runtime.Serialization.DataContract and System.Runtime.Serialization.DataMember attributes of the WCF's System.Runtime.Serialization assembly can be added for.NET types to indicate that instances of the type are to be serialized into XML, and which particular fields or properties of the type are to be serialized. ASP.NET Web Services uses XmlSerializer to translate the XML data (Message Send or received) into.NET objects.

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

5 Unified Programming Model Interop with other platforms ASMX Attribute-BasedProgramming Enterprise Services WS-*ProtocolSupport WSE Message-OrientedProgramming System.Messaging Extensibility Location transparency.NET Remoting

6 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

7 How does it work? Endpoints ClientService Message EndpointEndpoint Endpoint

8 How does it work? Address, Binding, Contract Client Service Message ABCABC ABC Endpoints - All communications with the WCF service will happen via the endpoints. The endpoint is composed of 3 parts (collectively called as ABC's of endpoint) as defines below: Address: The endpoints specify a Address that defines where the endpoint is hosted. Contract: The endpoints specify a Contract that defines which methods of the Service class will be accessible via the endpoint; each endpoint may expose a different set of methods. Binding: The endpoints also define a binding that specifies how a client will communicate with the service and the address where the endpoint is hosted.Various components of the WCF are depicted in the figure below.

9 How does it work? Behaviours and Metadata ClientService Message ABCABC ABC Metadata BvBv BvBv Proxy ServiceHost()

10 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

11 How do I use it? Generate Proxy Pick Endpoint Define Contract Implement Service Define Endpoints Host ServiceClient Service

12 How do I deploy it? Web Host within IIS: Self-Host within any.NET process: Available for any service Console apps, windowed apps,.NET NT Services …

13

14 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

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

16 All About Bindings You can customize a pre-defined binding: <service name=“MyService”> <endpoint address=“MyAddress” binding=“wsHttpBinding” bindingConfiguration=“MyReliableBinding” contract=“IMyInterface” /> <reliableSession enabled=“true” ordered=“true”

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

18 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

19 All about Addresses An endpoint address is relative to a base address: For a Web-Hosted service, the base address is that of its virtual directory <service name=“MyService”> <endpoint address=“MyEndpointAddress” binding=“wsHttpBinding” bindingConfiguration=“MyReliableBinding” contract=“IMyInterface” />

20 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

21 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.

22 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

23 Hosting Services in ASP.NET Write your service as usual: [ServiceContract] [OperationContract] etc. ServiceHost’s are represented as.svc files: Service attribute is a CLR type name Matches from web.config

24 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

25 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

26

27 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

28 IIS Worker Process (w3wp.exe)

29 w3wp.exe ASP.NET

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

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

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

33 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

34 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

35 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


Download ppt "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."

Similar presentations


Ads by Google