Presentation is loading. Please wait.

Presentation is loading. Please wait.

Random Logic l Forum.NET l 20061 Web Services Enhancements for Microsoft.NET (WSE) Forum.NET ● October 4th, 2006.

Similar presentations


Presentation on theme: "Random Logic l Forum.NET l 20061 Web Services Enhancements for Microsoft.NET (WSE) Forum.NET ● October 4th, 2006."— Presentation transcript:

1 Random Logic l Forum.NET l 20061 Web Services Enhancements for Microsoft.NET (WSE) Forum.NET ● October 4th, 2006

2 Random Logic l Forum.NET l 20062 Agenda  Introduction  WSE 3.0 overview  WCF in a nutshell  Questions

3 Random Logic l Forum.NET l 20063 Introduction  Web service definition – “A software system designed to support interoperable machine-to-machine interaction over a network. It has an interface described in a machine-processable format.” - W3C Simple Object Access Protocol (SOAP). SoapExtension.

4 Random Logic l Forum.NET l 20064 Introduction (cont.)  SOA – Service Oriented Architecture. An application architecture within which all functions are defined as independent services with well-defined invocable interfaces which can be called in defined sequences to form scientific processes. Principles:  Service reusability  Service contract  Service loose coupling  Service abstraction

5 Random Logic l Forum.NET l 20065 Introduction (cont.)  Soap Message definition – XML structure which holds a mandatory parent envelope, optional first child header and mandatory next child body. An envelope to encapsulate data which defines formatting conventions for describing the message contents and routing directions: header and body.

6 Random Logic l Forum.NET l 20066 Introduction (cont.)  WS-* Specifications – As the Web services market rapidly expanded, the need for advanced standards governing Web services security, reliability, and transactions arose. Microsoft and other vendors across the industry responded to this need by authoring a set of specifications referred to collectively as the WS-* architecture. The goal of these specifications is to provide a blueprint for advanced functionality while retaining the simplicity of basic Web services.

7 Random Logic l Forum.NET l 20067 Introduction (cont.)  WS-* Specifications – cont. Means of standardizing various pieces of web services. WSE 3.0 supports the following WS-* specifications.  XML, SOAP, WSDL  WS-Security  WS-Trust  WS-SecureConversation  WS-Addressing  MTOM

8 Random Logic l Forum.NET l 20068 Introduction (cont.)  Security Basics: Problems and Solutions  Authentication: Who sent this message?  Credentials, Login/Password, Digital Certificate  Authorization: What can this person do?  Use Roles to define privileges  Confidentiality: Who can read this message?  Encryption  Integrity: Did anyone tamper with this message?  Digital Signature used to compare sent & received message

9 Random Logic l Forum.NET l 20069 WSE 3.0 Overview  WSE Architecture  Policy Files  MTOM  Securing Applications That Use Web Services  Resources

10 Random Logic l Forum.NET l 200610 WSE Architecture (1)  Engine for applying advanced Web service protocols to SOAP messages

11 Random Logic l Forum.NET l 200611 WSE Architecture (2)  Message level security  End-to-end message security independent of transport  Supports multiple protocols and multiple encryption technologies  Can encrypt parts of the message  Sender need only trust ultimate receiver  The signature is stored with the data  Direct vs. Brokered authentication.  Sending and receiving SOAP Messages using TCP  Secure conversation - SCT

12 Random Logic l Forum.NET l 200612 Policy files (1)  Describes requirements for incoming and outgoing messages as policy assertions  Groups of rules applied to messages  Define rules applied to outgoing messages  Define demands for incoming messages  Defined in code or in configuration  Custom Policies - inherit from the Policy class  Policy files are simplified  Simplifies security through the turnkey security assertions

13 Random Logic l Forum.NET l 200613 Policy files (2) TurnkeyAssertionAuthenticationSecurity UsernameoverCertificateUser login/passwordServer’s X509 Certificate UsernameOverTransportUser login/passwordSSL AnonymousOverCertificateAny user with server’s public key Server’s X509 Certificate MutualCertificateClient’s X509 Certificate Server’s X509 Certificate Kerberos (Windows)Windows login/password Windows Domain

14 Random Logic l Forum.NET l 200614 MTOM  Send and receive large amounts of data.  Improved Performance  Secured messaging.

15 Random Logic l Forum.NET l 200615 Securing Applications That Use Web Services  Security credentials  Encryption  Digital signing  Use policy for setting security requirements  Demo

16 Random Logic l Forum.NET l 200616 WCF (1)  Windows Communication Foundation - WCF is Microsoft's unified programming model and runtime for building Web services applications with managed code. It extends the.NET Framework with functionality to build secure, reliable, and transacted Web services that interoperate across platforms.  WSE 3.0: The Road to Indigo

17 Random Logic l Forum.NET l 200617 WCF (2)

18 Random Logic l Forum.NET l 200618 WCF (3)

19 Random Logic l Forum.NET l 200619 WCF (4)

20 Random Logic l Forum.NET l 200620 WCF (5)

21 Random Logic l Forum.NET l 200621 WCF (6)

22 Random Logic l Forum.NET l 200622 WCF (7)

23 Random Logic l Forum.NET l 200623 WCF (8)

24 Random Logic l Forum.NET l 200624 WCF (9)

25 Random Logic l Forum.NET l 200625 WCF (10) [ServiceContract] public interface IMath { [OperationContract] int Add(int x, int y); } //the service class implements the interface public class MathService : IMath { public int Add(int x, int y) { return x + y; } }

26 Random Logic l Forum.NET l 200626 WCF (11) public class WCFServiceApp { public void DefineEndpointImperatively() { //create a service host for MathService ServiceHost sh = new ServiceHost(typeof(MathService)); //use the AddEndpoint helper method to //create the ServiceEndpoint and add it //to the ServiceDescription sh.AddServiceEndpoint( typeof(IMath), //contract type new WSHttpBinding(), //one of the built-in bindings "http://localhost/MathService/Ep1"); //the endpoint's address //create and open the service runtime sh.Open(); } public void DefineEndpointInConfig() { //create a service host for MathService ServiceHost sh = new ServiceHost (typeof(MathService)); //create and open the service runtime sh.Open(); }

27 Random Logic l Forum.NET l 200627 WCF (12) using System.ServiceModel; //this contract is generated by svcutil.exe //from the service's metadata public interface IMath { [OperationContract] public int Add(int x, int y) { return x + y; } } //this class is generated by svcutil.exe //from the service's metadata //generated config is not shown here public class MathProxy : IMath {... }

28 Random Logic l Forum.NET l 200628 WCF (13) public class WCFClientApp { public void SendMessageToEndpoint() { //this uses a proxy class that was //created by svcutil.exe from the service's metadata MathProxy proxy = new MathProxy(); int result = proxy.Add(35, 7); } public void SendMessageToEndpointUsingChannel() { //this uses ChannelFactory to create the channel //you must specify the address, the binding and //the contract type (IMath) ChannelFactory factory=new ChannelFactory ( new WSHttpBinding(), new EndpointAddress("http://localhost/MathService/Ep1")); IMath channel=factory.CreateChannel(); int result=channel.Add(35,7); factory.Close(); }

29 Random Logic l Forum.NET l 200629 Resources  WSE home page WSE home page  Dasblonde Dasblonde  what's new what's new  web services web services

30 Random Logic l Forum.NET l 200630 Questions? Thanks!


Download ppt "Random Logic l Forum.NET l 20061 Web Services Enhancements for Microsoft.NET (WSE) Forum.NET ● October 4th, 2006."

Similar presentations


Ads by Google