220 likes | 318 Views
Nuevas Tecnologías en Arquitectura de Software Connected Systems. Pablo Michelis. Gerente de Relaciones Académicas Microsoft Cono Sur. Agenda. Arquitectura de Software Breve historia de la construcción de Software Nuevo paradigma en la construcción de Software WinFX
E N D
Nuevas Tecnologías en Arquitectura de Software ConnectedSystems Pablo Michelis Gerente de Relaciones Académicas Microsoft Cono Sur
Agenda • Arquitectura de Software • Breve historia de la construcción de Software • Nuevo paradigma en la construcción de Software • WinFX • Pilares Conceptuales de la Tecnología • WPF, WCF, WF, InfoCard
Inheritance Abstract data types objects Software Architecture in Context 2000 Integrated product lines Software architecture Object-oriented Patterns 1990 Packages Pipes and filters Programming- in-the-world Software development environments 1980 Programming-in-the-large Programming- in-the-large Information hiding 1970 NATO SE conference Separate compilation Programming -in-the-small 1960 Subroutines Programming- any-which-way 1950 Source: David Garlan (April 2006)
Proceso “Esencial” de Software Real World Correspondence ProblemStatement Correctness ImplementationStatement System
Operational Requirements Business Capabilities Entity Descriptions and Constraints Nuevo Proceso Clients and Agents Actors and Roles Process Description Activity Description Technology Architecture Process Services Infrastructure Services Activity Services Entity Services Information Architecture
Service Orientation Boundaries are Explicit Developers opt-in to consuming, exposing, and defining public-facing service façade. Services and consumers are independently versioned, deployed, operated, and secured. Services are autonomous Data never includes behavior; Objects with data and behavior are a local phenomenon. Share schema & contract, not class Compatibility based on policy Capabilities and requirements represented by a unique public name; Used to establish service suitability.
Nuestra estrategia • Ofrecer una plataforma integrada y consistente de productos • … incluye productos (dev y mgmt), frameworks, infraestructura y plataformas • … cubre la necesidad de plataforma de los clientes (clientes, dispositivos, y servidores) • … interoperable con otras plataformas • … agrupa tres conceptos esenciales • ServiceOrientation • Claims-BasedSecurity • ModelDriven Software
El nuevo Modelo de Aplicación Capacidades lógicas recurrentes
WinFX The Managed Code Programming Model for Windows
Windows Presentation Foundation Unified framework for building next gen user experiences with UI, media and documents
XAML C# VB.NET <Button Width="100"> OK <Button.Background> LightBlue </Button.Background> </Button> Button b1 = new Button(); b1.Content = "OK"; b1.Background = new SolidColorBrush(Colors.LightBlue); b1.Width = 100; Dim b1 As New Button b1.Content = "OK" b1.Background = New _ SolidColorBrush(Colors.LightBlue) b1.Width = 100 Windows Presentation Foundation XAML eXtensible Application Markup Language
Windows Presentation Foundation • With XAML designers & developers can streamline their collaboration
“InfoCard” Technology that simplifies and improves the safety of online login and authentication
“InfoCard” • Private desktop • Separate user context • Protects against hacking • Self-issued cards • Non-corroborated • Stored locally • Managed cards • Corroborated • Stored at STS
“InfoCard” User Relying Party Identity Provider WS-* Web Services
Windows Communication Foundation Unified framework for rapidly building service-oriented applications
Attribute-based programming Message- based programming Windows Communication Foundation Ent Services Sys.Messaging Unified framework supersets existing technologies ASMX Remoting Location transparency Interop with other platforms WSE WS-* protocols
Windows Communication Foundation Standards-based interoperability with WS-* Web services
Integrated Tools and Modeling Integrated Management and Governance Modelo de Arquitectura Connected Systems Integrated User Experience Federated Identity Federated Data Service Orientation Pervasive Workflow
using System.ServiceModel; //a WCF contract defined using an interface [ServiceContract] public interface IMath { [OperationContract] int Add(int x, int y); }