logging in or signing up WCF TechMind Download Post to : URL : Related Presentations : Share Add to Flag Embed Email Send to Blogs and Networks Add to Channel Uploaded from authorPOINT lite Insert YouTube videos in PowerPont slides with aS Desktop Copy embed code: (To copy code, click on the text box) Embed: URL: Thumbnail: WordPress Embed Customize Embed The presentation is successfully added In Your Favorites. Views: 8871 Category: Education License: All Rights Reserved Like it (5) Dislike it (1) Added: March 12, 2008 This Presentation is Public Favorites: 6 Presentation Description Windows Communication Foundation, WCF works inside of ASP.NET, host WCF services in ASP.NET Comments Posting comment... By: bharat9750 (4 month(s) ago) Bakwas presentaiion do kaudi ki Saving..... Post Reply Close Saving..... Edit Comment Close By: nagesh127 (5 month(s) ago) Nice One for Beginners.. Saving..... Post Reply Close Saving..... Edit Comment Close By: cooladdy85 (5 month(s) ago) i need this presentation, please provide me link Saving..... Post Reply Close Saving..... Edit Comment Close By: Bhavana0703 (20 month(s) ago) i need this presentation, please provide me link Saving..... Post Reply Close Saving..... Edit Comment Close By: TechMind (34 month(s) ago) Download Available Now.. Cheers!! Saving..... Post Reply Close Saving..... Edit Comment Close loading.... See all Premium member Presentation Transcript Slide1: HARJEET SINGHAgenda: AgendaWCF is: WCF is.NET at the core: .NET at the core The Unified Framework For Rapidly Building Service-Oriented ApplicationsWindows Communication Foundation: Windows Communication FoundationUnified Programming Model: Unified Programming Model Interop with other platforms ASMX Attribute- Based Programming Enterprise Services WS-* Protocol Support WSE Message- Oriented Programming System.Messaging Extensibility Location transparency .NET RemotingAgenda: AgendaHow does it work?Endpoints: How does it work? Endpoints Client Service MessageHow does it work?Address, Binding, Contract: How does it work? Address, Binding, Contract Client Service Message Address Binding Contract (Where) (How) (What)How does it work?Behaviours and Metadata: How does it work? Behaviours and Metadata Client Service Message Metadata Bv Bv Bv Bv Proxy ServiceHost()Agenda: AgendaHow do I use it?: How do I use it? Client ServiceHow do I deploy it?: How do I deploy it? 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 Web Host within IIS: Self-Host within any .NET process: Available for any service Console apps, windowed apps, .NET NT Services …Agenda: AgendaAll About BindingsYou can choose a pre-defined binding:: All About Bindings You can choose a pre-defined binding: <endpoint name=“MyService” address=“MyAddress” binding=“netTcpBinding” contract=“IMyInterface” />All About BindingsYou can customize a pre-defined binding:: All About Bindings You 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>All About BindingsYou can define custom bindings:: All About Bindings You 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>Agenda: AgendaAll about Addresses: 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 <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>Agenda: AgendaAll About Contracts: 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. Agenda: AgendaHosting Services in ASP.NET: Hosting Services in ASP.NETWhere can I put my service code?: Where can I put my service code?Which project type should I use?: Which project type should I use?Agenda: AgendaSlide29: IIS Worker Process (w3wp.exe)Slide30: w3wp.exe ASP.NETSlide31: 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)Slide32: 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 and the HTTP Pipeline: WCF and the HTTP Pipeline IIS ASP.NET WCFWhy the split?: Why the split?Implications: ImplicationsSummary: Summary You do not have the permission to view this presentation. In order to view it, please contact the author of the presentation.
WCF TechMind Download Post to : URL : Related Presentations : Share Add to Flag Embed Email Send to Blogs and Networks Add to Channel Uploaded from authorPOINT lite Insert YouTube videos in PowerPont slides with aS Desktop Copy embed code: (To copy code, click on the text box) Embed: URL: Thumbnail: WordPress Embed Customize Embed The presentation is successfully added In Your Favorites. Views: 8871 Category: Education License: All Rights Reserved Like it (5) Dislike it (1) Added: March 12, 2008 This Presentation is Public Favorites: 6 Presentation Description Windows Communication Foundation, WCF works inside of ASP.NET, host WCF services in ASP.NET Comments Posting comment... By: bharat9750 (4 month(s) ago) Bakwas presentaiion do kaudi ki Saving..... Post Reply Close Saving..... Edit Comment Close By: nagesh127 (5 month(s) ago) Nice One for Beginners.. Saving..... Post Reply Close Saving..... Edit Comment Close By: cooladdy85 (5 month(s) ago) i need this presentation, please provide me link Saving..... Post Reply Close Saving..... Edit Comment Close By: Bhavana0703 (20 month(s) ago) i need this presentation, please provide me link Saving..... Post Reply Close Saving..... Edit Comment Close By: TechMind (34 month(s) ago) Download Available Now.. Cheers!! Saving..... Post Reply Close Saving..... Edit Comment Close loading.... See all Premium member Presentation Transcript Slide1: HARJEET SINGHAgenda: AgendaWCF is: WCF is.NET at the core: .NET at the core The Unified Framework For Rapidly Building Service-Oriented ApplicationsWindows Communication Foundation: Windows Communication FoundationUnified Programming Model: Unified Programming Model Interop with other platforms ASMX Attribute- Based Programming Enterprise Services WS-* Protocol Support WSE Message- Oriented Programming System.Messaging Extensibility Location transparency .NET RemotingAgenda: AgendaHow does it work?Endpoints: How does it work? Endpoints Client Service MessageHow does it work?Address, Binding, Contract: How does it work? Address, Binding, Contract Client Service Message Address Binding Contract (Where) (How) (What)How does it work?Behaviours and Metadata: How does it work? Behaviours and Metadata Client Service Message Metadata Bv Bv Bv Bv Proxy ServiceHost()Agenda: AgendaHow do I use it?: How do I use it? Client ServiceHow do I deploy it?: How do I deploy it? 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 Web Host within IIS: Self-Host within any .NET process: Available for any service Console apps, windowed apps, .NET NT Services …Agenda: AgendaAll About BindingsYou can choose a pre-defined binding:: All About Bindings You can choose a pre-defined binding: <endpoint name=“MyService” address=“MyAddress” binding=“netTcpBinding” contract=“IMyInterface” />All About BindingsYou can customize a pre-defined binding:: All About Bindings You 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>All About BindingsYou can define custom bindings:: All About Bindings You 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>Agenda: AgendaAll about Addresses: 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 <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>Agenda: AgendaAll About Contracts: 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. Agenda: AgendaHosting Services in ASP.NET: Hosting Services in ASP.NETWhere can I put my service code?: Where can I put my service code?Which project type should I use?: Which project type should I use?Agenda: AgendaSlide29: IIS Worker Process (w3wp.exe)Slide30: w3wp.exe ASP.NETSlide31: 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)Slide32: 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 and the HTTP Pipeline: WCF and the HTTP Pipeline IIS ASP.NET WCFWhy the split?: Why the split?Implications: ImplicationsSummary: Summary