Analysis of a potential use of middleware technologies for railway domain
|
|
|
- Job Long
- 10 years ago
- Views:
Transcription
1 Analysis of a potential use of middleware technologies for railway domain C. Gransart 1, J. Billion 2, D. Van den Abeele 2 1 INRETS, Villeneuve d Ascq, France; 2 ALSTOM Transport, St Ouen, France 1. Introduction The European research project InteGRail (Intelligent Integration of Railway Systems) aims to create a holistic, coherent information system, integrating the major railway sub-systems. In this context, a framework for intelligent communication is under development (named ICOM). For this framework, we are evaluating current middleware technologies coming from IT projects in order to apply them in the context of railway applications and/or to adapt the way such middleware are built. 2. Generalities on middlewares The word middleware can be defined as the software between application software and operating system software and related low-level drivers (communication, input/output, ). The main goals of the middleware are: To hide the heterogeneity (of computers and systems); To hide distribution of data and processes; To offer standardized interfaces (API + network protocols). Figure 1 represents a generic view of the middleware on top of the operating system and associated communication layer and below the applications. The applications located on different hosts are able to communicate together thanks to the interfaces offered by the middleware layer. Figure 1: Generic view of a middleware To create an interoperable system, the current trend is to use an interface definition language, which allows to describe the relations between client applications and server applications and this independently from the implementation languages on either side. For most middleware technologies, a specific language is defined to meet this requirement. This interface between a client and a server is also called a contract. This contract specifies what functional services a client may call on a server and also what is the minimum that a server must furnish as functionalities to its clients.
2 Standardized Interface Definition Languages (IDL) are the basis to build interoperable services/applications. By using appropriate IDLs, the railway world will be able to specify clearly interfaces between applications. These interface specifications will then be shared among partners and allow applications using these interfaces to interoperate seamlessly. Moreover, the interfaces are described independently of the implementation code. This permits different partners to choose different implementation technologies and to be still interoperable! 3. Railway communities with different middleware needs There are three segments where middleware can be used: for on board embedded applications, for train to ground applications and for ground core applications. Each of these communities has its own specificities: On board applications communicate through a real time network. Currently, this network is wired. During the train inauguration phase, the configuration of connected train nodes is established. It remains stable until the next coupling/uncoupling operations. Some applications have real time constraints and/or produce data periodically (e.g. every 200 millisecond). Train to ground applications may use several kind of wireless bearers with various quality of service. Applications may have different requirements for the IT traffic between the train and the ground: from few sporadic data up to continuous data stream. Moreover, the communication between the train and the ground could be sometimes broken; for example a network disconnection due to an out of coverage event. If several communication channels are available, the system must choose the best one according the current context (vertical handover). Core applications are similar to distributed applications on local/wide area network. The main focus is on interoperability between railway actors. 4. Requirements and good qualities needed for the middleware Transversally to the railway communities, we specified a list of requirements and functionalities needed by railway applications at different levels Services inside the middleware Messaging management This service defines a generic interface for point-to-point communication between 2 applications. This is the basic service to be able to construct distributed applications. The service is directly manipulated by applications based on the asynchronous communication model (for the MOM) and not directly visible by applications using the synchronous communication model. Fault management This service allows to control operations in normal and degraded modes. Any faults may trigger some actions and should be recorded with contextual variables in order to be later analyzed. Fault tolerant middlewares are rarely compatible with real-time middlewares. For example the OMG started a new work on lightweight real-time fault tolerant CORBA. Because current solutions to solve the problem of fault tolerant real-time systems are poor and rarely used. Fault tolerant systems consume CPU time and
3 network bandwidth to check if all the nodes are up; this is sometimes not compatible with real-time constraints. Event management This service allows each application to define its own set of relevant events. Once this dictionary of events is configured, applications can generate one of those events during operation. Timer management This service offers the possibility to trigger periodic events Services on top of the middleware Life cycle management This service is in charge of start up, execution and shut down of the basic applications taking into account dependencies between these applications. It will define the sequence of platform start up and shut down and monitor status of applications during their lifetime. Data repository management This service centralizes a dictionary for all the data that may be exchanged between applications. This service manages concurrent access to those data. Network management This service intends to implement access to the network, through standardized interface. Specific hardware management This service allows to access specific hardware through generic interface. Time management This service is in charge of time consistency between applications, in particular for event time stamping Tools for the deployment The deployment tools permit to easily deploy a distributed application on a set of nodes interconnected by a network. Some technologies offer deployment facilities, others don t. For this last case, deployment must be made by hand or new tools have to be developed. 5. Middlewares studied Next, we compared our requirements with the functionalities offered by several categories of middleware: middleware based on synchronous communication models like CORBA, SOA and ESB, middleware based on asynchronous communication models like message queuing systems, Data Distribution Service (DDS), component based solutions like CORBA Component Model, PECOS. We also had a look at projects like DECOS and TMO. We only discuss in this paper about synchronous, asynchronous communications models and DDS.
4 5.1 Middleware based on synchronous communication models CORBA based middleware CORBA (Common Object Request Broker Architecture) is a standard defined by the OMG consortium (Object Management Group). It provides a distributed object environment in which objects are made available transparently from location and implementation[1]. A CORBA environment is composed of different parts: An ORB (Object Request Broker). The ORB is responsible of the transport of requests 1 between CORBA objects. It hides to the application part the location of the distributed object servers. An IDL (Interface Definition Language). IDL is a declarative specification language that provides basic and constructed data types and permits to define object interfaces. The IDL specification for an application is compiled by an IDL compiler to generate stubs (client part) and skeletons (server part) for a particular programming language. Implementation of the client and server parts can be done using different programming languages (C, C++, Java, Ada, COBOL, ). The low level part of the ORB uses a standardized message format, which is common to all the CORBA product implementations. Application objects, which will use the IDL language to describe their interfaces and the ORB to communicate. The Figure 2 presents the CORBA architecture. Clients and servers can be implemented using different programming languages. CORBA permits to build n-tier applications: a program can be simultaneously a server for several application clients and be a client of another server. Figure 2:CORBA architecture 1 A request can be defined as the message sent by a client on the network to call and execute a piece of code (method, subroutine, function, ) located on a remote server.
5 The CORBA standard defines some extensions for the real-time or fault tolerant applications. Service Oriented Architecture A SOA consists of clients and servers (services) connected by a communication subsystem known as a service "bus" (Figure 3). Services are defined using formal interfaces (contracts) that hide away implementation details from the client. The bus supports both point-to-point and messaging styles of communication, and supports enterprise qualities of service like security and transactions. SOA related solutions often offer both synchronous and asynchronous interactions. Figure 3: SOA service bus IONA Technologies 2005 Services are often reused by a number of applications. Their interfaces are defined using a formal contract (for example, WSDL, or IDL) The service implementation details are unknown to the client; the only connection (or coupling) between the client and server is the contract. The service is self-contained, and can be run with or without other services present. Services may be used by other services. The interfaces are stored in a well-known repository that prospective users can browse. Formal contracts, loose-coupling and abstraction of implementation details are key features of a SOA. Let s note that the properties above are almost identical to the properties of an object in object-oriented architecture (like CORBA for example). SOA associates new terminology with concepts that have been around for some time. The key idea of separating service semantics from service implementation using welldefined contracts was already used by CORBA, DCOM, DCE and.net. Around SOA concept became more prominent along with the rise of (WS) Web Services and (ESB) Enterprise Service Bus approaches. Web services technologies (including a new interface definition language called WSDL) are the most famous SOA-based approach (but not the only one). It has been widely adopted lately in IT systems related to the internet. Note that these Web Services have been introduced at a fast pace, solutions being developed and deployed before full stabilization of underlying technology specification. There is still no clear consensus today on what consistent set of specifications should constitute the 'canonical' Web Services definition. An ESB is a software product that provides underlying communication infrastructure for software components. ESBs provide support for contract-based services using direct (synchronous point-to-point) and indirect (asynchronous messaging)
6 communication paradigms. The "enterprise" in ESB stresses that the product has features like security and transactions and is suitable for use in a large-scale enterprise. ESB features An Enterprise Service Bus offers: Data modelling with XML Schema; Interface modelling with WSDL (Web Service Definition Language); Client and server development tools (code generation from WSDL, libraries, IDE support, etc.); Synchronous point-to-point communication using SOAP/HTTP; Asynchronous messaging using SOAP as a payload over a messaging protocol that supports persistence of messages; Message payload transformation using XSLT. Communication protocol SOAP "wraps" XML messages in an XML wrapper; as a result SOAP messages are self describing. Messages are transmitted as plain text. Payload is transmitted over HTTP or JMS. Let s note that for reliable communications, JMS (Java Messaging Service) is used. JMS is a MOM (Message Oriented Middleware) described in the next section. Relative slowness of Web Service comes in part from the fact that with XML the detailed format of exchanged information can be modified at run-time until data is actually sent. A receiver has to recognize and adapt itself to the dynamic type of all received data. Tradeoff should thus be made between performance of CORBA like solutions and the flexibility of Web Services late-binding of interfaces definition. 5.2 Middleware based on asynchronous communication models The asynchronous communication model is opposite to the previous one. The principle is very simple: the communication between emitter and receiver is carried by messages. The messages can be stored into message queues or communication channels and delivered later to the receiver. In this section, we present two solutions: Message Oriented middleware and Data Distribution Service. Message Queue - Message Oriented middleware MOM (Message Oriented Middleware) is built to work on connectionless environments: there is no requirement to impose that the emitter and the receiver of a message must be up at the same time. We can say that the Internet mail system is a kind of MOM. Applications communicate through message queues (see Figure 4). When an emitter produces a message, it is sent to a message queue. Later, a receiver can pick up the message and perform some processes on it. Message queuing may have several levels of Quality-of-Service: reliable (no packet loss), guaranteed delivery and message delivery one and only once.
7 Figure 4: Asynchronous communication with message Point-to-point model The point-to-point communication model allows communications between two applications. Messages stored into a queue are extracted by one and only one receiver. However, this model permits to have several emitters generating some messages for the same queue. Generally, this communication mode has a reliable delivery quality of service: an emitter sends a message into a queue, if the receiver is not available due to a failure or a network disconnection, the queue retains the message until the receiver is available again. Figure 5 describes an example of bidirectional communications between two applications (A and B) using two message queues. Figure 5: Point-to-Point communication[3] Publish-subscribe model The publish-subscribe communication model (Figure 6) allows communication between one emitter (publisher) and several receivers (subscribers). The message sent by the emitter is delivered to all the receivers running at this time. If some receivers are not running when a message is sent, they will not receive this message when they will be running later.
8 MOM and Web Services Figure 6: Publish/Subscribe communication[3] Messaging service in Web Services can be implemented using such MOM. In this case, the transport protocol for the requests is based on JMS (Java Messaging Service) instead of HTTP. Remarks on MOM In MOM architecture, emitters and receivers only know the existence of the queues. They don t know the existence of the other end point. This fact allows the creation of loosely coupled architectures and permits to add new applications without impact on the existing applications. This kind of middleware may be well adapted for event based systems. Message marshalling and unmarshalling, connection/disconnection to the queues must be written by programmers. The low level communicating protocol is not standardized. So two MOM products cannot interoperate together without the development of a dedicated gateway. Deployment applications must be made by hand or using proprietary tools. Data Distribution Service The DDS (Data Distribution Service) is a specification of a publish/subscribe middleware taking into account QoS properties[4]. This specification has been defined by the OMG during DDS can be used independently from CORBA. DDS General Architecture This new service is suitable for a new class of applications that require real-time Quality of service. The DDS features include: A vendor-neutral API Support for typed interfaces Applications developers deal only with native types on each platform Provide a strict separation of publisher and subscriber roles Optimal efficiency and predictability Minimized dynamic resource allocation
9 The avoidance of unbounded or hard-to-predict resources Minimize data copying Control of service behaviour through QoS properties Characterize what the system must do, and not how it does it Being a service that is complementary to the existing CORBA services Suitable for use in Real-Time Systems and other applications that need high volume, robust, fault-tolerant data distribution The main idea of the DDS specification is that a Global Data Store is accessible by applications to read and write data (see Figure 7). Figure 7: DDS global data store (from [6]) DDS provides flexibility, power and modular structure by decoupling: Application location through anonymous publish/subscribe Redundancy. A system can have any number of readers and writers Quality of service: asynchronous, disconnected, time sensitive, scalable and reliable data distribution Platform and protocols. Decoupling platform and protocols permits to add more easily existing transport protocols. The DDS specification is composed of two majors parts: The DCPS (Data-Centric Publish-Subscribe) that is the basis of a DDS system (and is mandatory). DCPS contains the lower layer API that applications can use to exchange topic data with other DDS applications. The DLRL (Data Local Reconstruction Layer) that is an optional part of the specification. DLRL is the upper layer API of DDS. It defines how to build a local object cache so that local applications can access topic data as if it were local. DCPS provides an efficient publish/subscribe system Information consumers subscribe to information of interest. Information producers publish information. DDS matches and routes relevant information to interested subscribers. DDS furnishes QoS suitable for real-time systems: deadline, levels of reliability, latency, resource usage, time-based filter. Different programming styles are allowed based on listener or wait-based data access.
10 The DDS specification solves some problems explained in the section related to MOM on marshalling/unmarshalling and on the lack of high level specification language. Currently, interoperability between various implementations of DDS is not clear. The specification does not define an interoperable transport protocol between different DDS implementations. Some work is currently done at the OMG to solve this problem. 6. Choices and where As conclusion of this work, we selected some technologies to evaluate deeper and chose to develop real prototypes using the following middlewares: On board applications will use real-time CORBA and DDS middlewares. These two middlewares offer functionalities similar to TCN (process data and message data). Contracts are defined using the OMG-IDL language; implementation will be done with C++. We choose the TAO product as the CORBA middleware and OpenDDS [5] as DDS implementation. We also implemented a part of the prototype using a proprietary middleware from Bombardier (IPTCom). This last middleware offers functionalities for both asynchronous communications and process variables. Train to ground applications will communicate through an ESB based on HTTP transport layer. Contracts are defined using the WSDL language. This middleware is the support of the FCA (Flexible Communication Adapter), a key building block of InteGRail system design. Moreover, Web Services and ESB are good candidates for railways subsystems that are not resource constrained like IGR portal or central server for operational control. 7. Current feedback of the integration Several companies involved in this subproject are participating to the integration of software components developed as examples of TCMS applications (brake system, on-board diagnostic,...). The integration of TAO, OpenDDS and IPTCom simultaneously on the same nodes has been achieved. Integration difficulties: We had to juggle between several threading models between the windows GUI and the different middleware communication event loops; Even using the same compiler (VC6) and operating system (XP), integration of the development done by different teams was difficult because of the need to merge compilation and linking options of library models. We are now working on the integration of this train borne system with the web services and ESB tools used to realize the train to ground communication sub system. 8. Conclusion Middlewares allow to solve problems like high scalability of applications, hardware/software heterogeneity, resources location and need to increase interoperability. They reduce deployment time of applications thanks to their capacities to integrate/ distribute application computation amongst a set of servers to increase availability, interoperability and performance. They also reduce development time by reuse of COTS (Components off-the-shelf) developed by third parties. All of this is true if you use one type of middleware. But middlewares introduce a new kind of heterogeneity: the heterogeneity (and then incompatibility) between middlewares themselves. So that two middlewares based on different distribution models cannot interoperate. That s the middleware paradox! InteGRail will have to deal with this problem because one technology will not fit all the requirements.
11 Several solutions may be studied: Development of specific gateways. This solution implies that a dedicated code able to communicate with several middleware technologies must be written. This code translates requests/messages from one middleware to another one. Applying a MDA (Model Driven Architecture) approach. MDA permits to design applications independently of the target implementation technologies. That is the PIM (Platform Independent Model). Next with tools and transformation rules, this model is mapped to a particular technology. That is the PSM (Platform Specific Model). One PIM can be mapped to several PSMs. If the transformation rules exist for several target technologies, it is possible to generate automatically the transformation code between PSMs. The problem currently is that the MDA approach is still in development and few tools exist to make transformations between different middlewares. Tuned middleware. The idea is to construct a dedicated middleware starting form basic middleware blocks of code. This would avoid to take a monolithic implementation of a middleware that would only be used partially. Acknowledgement This research work is partially funding by the European Commission FP6 framework. References [1] Common Object Request Broker Architecture: Core Specification V3.0.3, OMG, document formal/ , [2] Web Services Description Language (WSDL) 1.1, W3C, [3] IBus programming manual, Softwired Inc, [4] Data Distribution Service V1.0, OMG, document formal/ , [5] Object Computing Inc, DDS for TAO, [6] D.C. Schmidt, J. Parsons, Overview of the OMG Data Distribution Service Author s Biography Christophe GRANSART received the M.S. and Ph.D. degrees in computer science from the University of Lille France in 1991 and 1995, respectively. Since 1991, he is working in the field of distributed systems, mainly with middleware like CORBA. His research interest is on communicating mobile objects: design of middleware solutions dedicated to transportation systems using wireless communications. Since 2002, he is full time researcher at INRETS-LEOST. [email protected] Jerome BILLION, an Expert in System Architecture for ALSTOM, is the lead architect of the sub-project of InteGRail dedicated to advanced system communication. Before, Jerome was technically managing collaborative research on secure communications for automotive telematics. Jerome s expertise in the field of transport information systems is focused on product line architecture and top-down integration of software intensive distributed systems at the convergence of embedded, telecommunication and Internet-based systems. Jerome.billion-ext@ transport.alstom.com Didier VAN DEN ABEELE is in charge of the Collaborative Projects in ALSTOM Transport Information Solutions. He is also in charge of relationship with Research Centers and Universities. Before, Didier was a Senior Expert in System Architecture, and was managing of a group of multi-domain experts in charge of ALSTOM product lines federation. Up to 2001, Didier was mainly involved in System Engineering applied to Communication systems, to Electronic Warfare system and Naval Combat systems. [email protected]
Service-Oriented Architecture and Software Engineering
-Oriented Architecture and Software Engineering T-86.5165 Seminar on Enterprise Information Systems (2008) 1.4.2008 Characteristics of SOA The software resources in a SOA are represented as services based
What can DDS do for You? Learn how dynamic publish-subscribe messaging can improve the flexibility and scalability of your applications.
What can DDS do for You? Learn how dynamic publish-subscribe messaging can improve the flexibility and scalability of your applications. 2 Contents: Abstract 3 What does DDS do 3 The Strengths of DDS 4
Classic Grid Architecture
Peer-to to-peer Grids Classic Grid Architecture Resources Database Database Netsolve Collaboration Composition Content Access Computing Security Middle Tier Brokers Service Providers Middle Tier becomes
Motivation Definitions EAI Architectures Elements Integration Technologies. Part I. EAI: Foundations, Concepts, and Architectures
Part I EAI: Foundations, Concepts, and Architectures 5 Example: Mail-order Company Mail order Company IS Invoicing Windows, standard software IS Order Processing Linux, C++, Oracle IS Accounts Receivable
A Data Centric Approach for Modular Assurance. Workshop on Real-time, Embedded and Enterprise-Scale Time-Critical Systems 23 March 2011
A Data Centric Approach for Modular Assurance The Real-Time Middleware Experts Workshop on Real-time, Embedded and Enterprise-Scale Time-Critical Systems 23 March 2011 Gabriela F. Ciocarlie Heidi Schubert
Vortex White Paper. Simplifying Real-time Information Integration in Industrial Internet of Things (IIoT) Control Systems
Vortex White Paper Simplifying Real-time Information Integration in Industrial Internet of Things (IIoT) Control Systems Version 1.0 February 2015 Andrew Foster, Product Marketing Manager, PrismTech Vortex
MIDDLEWARE 1. Figure 1: Middleware Layer in Context
MIDDLEWARE 1 David E. Bakken 2 Washington State University Middleware is a class of software technologies designed to help manage the complexity and heterogeneity inherent in distributed systems. It is
Combining Service-Oriented Architecture and Event-Driven Architecture using an Enterprise Service Bus
Combining Service-Oriented Architecture and Event-Driven Architecture using an Enterprise Service Bus Level: Advanced Jean-Louis Maréchaux ([email protected]), IT Architect, IBM 28 Mar 2006 Today's business
Using Open Source Software for SOA
Using Open Source Software for SOA Adrian Trenaman, Principal Consultant, IONA Technologies. [email protected] Open source software for SOA IONA Technologies 2005 1 Introduction This presentation
Principles and Foundations of Web Services: An Holistic View (Technologies, Business Drivers, Models, Architectures and Standards)
Principles and Foundations of Web Services: An Holistic View (Technologies, Business Drivers, Models, Architectures and Standards) Michael P. Papazoglou (INFOLAB/CRISM, Tilburg University, The Netherlands)
Service Mediation. The Role of an Enterprise Service Bus in an SOA
Service Mediation The Role of an Enterprise Service Bus in an SOA 2 TABLE OF CONTENTS 1 The Road to Web Services and ESBs...4 2 Enterprise-Class Requirements for an ESB...5 3 Additional Evaluation Criteria...7
VALLIAMMAI ENGNIEERING COLLEGE SRM Nagar, Kattankulathur 603203.
VALLIAMMAI ENGNIEERING COLLEGE SRM Nagar, Kattankulathur 603203. DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING Year & Semester : II / III Section : CSE Subject Code : CP7028 Subject Name : ENTERPRISE
Introduction to Service Oriented Architectures (SOA)
Introduction to Service Oriented Architectures (SOA) Responsible Institutions: ETHZ (Concept) ETHZ (Overall) ETHZ (Revision) http://www.eu-orchestra.org - Version from: 26.10.2007 1 Content 1. Introduction
DDS and SOA Interfaces to ESB
DDS and SOA Interfaces to ESB NCOIC Plenary, VA Beach 29 Mar 2007 Joe Schlesselman NCOIC OS&P WG Chair [email protected] www.rti.com Gerardo Pardo-Castellote CTO & Co-Author DDS Specification [email protected]
A Unified Messaging-Based Architectural Pattern for Building Scalable Enterprise Service Bus
A Unified Messaging-Based Architectural Pattern for Building Scalable Enterprise Service Bus Karim M. Mahmoud 1,2 1 IBM, Egypt Branch Pyramids Heights Office Park, Giza, Egypt [email protected] 2 Computer
Enterprise Service Bus Defined. Wikipedia says (07/19/06)
Enterprise Service Bus Defined CIS Department Professor Duane Truex III Wikipedia says (07/19/06) In computing, an enterprise service bus refers to a software architecture construct, implemented by technologies
AquaLogic ESB Design and Integration (3 Days)
www.peaksolutions.com AquaLogic ESB Design and Integration (3 Days) Audience Course Abstract Designed for developers, project leaders, IT architects and other technical individuals that need to understand
Event-based middleware services
3 Event-based middleware services The term event service has different definitions. In general, an event service connects producers of information and interested consumers. The service acquires events
A standards-based approach to application integration
A standards-based approach to application integration An introduction to IBM s WebSphere ESB product Jim MacNair Senior Consulting IT Specialist [email protected] Copyright IBM Corporation 2005. All rights
Event based Enterprise Service Bus (ESB)
Event based Enterprise Service Bus (ESB) By: Kasun Indrasiri 128213m Supervised By: Dr. Srinath Perera Dr. Sanjiva Weerawarna Abstract With the increasing adaptation of Service Oriented Architecture for
Middleware Lou Somers
Middleware Lou Somers April 18, 2002 1 Contents Overview Definition, goals, requirements Four categories of middleware Transactional, message oriented, procedural, object Middleware examples XML-RPC, SOAP,
Getting Started with Service- Oriented Architecture (SOA) Terminology
Getting Started with - Oriented Architecture (SOA) Terminology Grace Lewis September 2010 -Oriented Architecture (SOA) is a way of designing, developing, deploying, and managing systems it is neither a
What is Middleware? Software that functions as a conversion or translation layer. It is also a consolidator and integrator.
What is Middleware? Application Application Middleware Middleware Operating System Operating System Software that functions as a conversion or translation layer. It is also a consolidator and integrator.
Service-Oriented Architectures
Architectures Computing & 2009-11-06 Architectures Computing & SERVICE-ORIENTED COMPUTING (SOC) A new computing paradigm revolving around the concept of software as a service Assumes that entire systems
Resource Utilization of Middleware Components in Embedded Systems
Resource Utilization of Middleware Components in Embedded Systems 3 Introduction System memory, CPU, and network resources are critical to the operation and performance of any software system. These system
Enterprise Service Bus: Five Keys for Taking a Ride
About this research note: Technology Insight notes describe emerging technologies, tools, or processes as well as analyze the tactical and strategic impact they will have on the enterprise. Enterprise
Using DDS to Enable The Real-Time Enterprise Service Bus (RT-ESB)
Using DDS to Enable The Real-Time Enterprise Service Bus (RT-ESB) Rajive Joshi, Ph. D. Gerardo Pardo-Castellote, Ph.D. Real-Time Innovations, Inc OMG Real-time and Embedded Systems Workshop Arlington,
Service Oriented Architecture Based Integration. Mike Rosen CTO, AZORA Technologies, Inc. [email protected]
Service Oriented Architecture Based Integration Mike Rosen CTO, AZORA Technologies, Inc. [email protected] Mike Rosen ACCESS TO THE EXPERTS Consultant Chief Enterprise Architect for service and
Service Oriented Architecture 1 COMPILED BY BJ
Service Oriented Architecture 1 COMPILED BY BJ CHAPTER 9 Service Oriented architecture(soa) Defining SOA. Business value of SOA SOA characteristics. Concept of a service, Enterprise Service Bus (ESB) SOA
JOURNAL OF OBJECT TECHNOLOGY
JOURNAL OF OBJECT TECHNOLOGY Online at www.jot.fm. Published by ETH Zurich, Chair of Software Engineering JOT, 2008 Vol. 7 No. 7, September-October 2008 Applications At Your Service Mahesh H. Dodani, IBM,
Enterprise Application Integration (EAI) Architectures, Technologies, and Best Practices
Enterprise Application Integration (EAI) Architectures, Technologies, and Best Practices Give Your Business the Competitive Edge IT managers have been under increasing pressure to migrate a portfolio of
CHAPTER 1: OPERATING SYSTEM FUNDAMENTALS
CHAPTER 1: OPERATING SYSTEM FUNDAMENTALS What is an operating? A collection of software modules to assist programmers in enhancing efficiency, flexibility, and robustness An Extended Machine from the users
A Survey Study on Monitoring Service for Grid
A Survey Study on Monitoring Service for Grid Erkang You [email protected] ABSTRACT Grid is a distributed system that integrates heterogeneous systems into a single transparent computer, aiming to provide
Middleware: Past and Present a Comparison
Middleware: Past and Present a Comparison Hennadiy Pinus ABSTRACT The construction of distributed systems is a difficult task for programmers, which can be simplified with the use of middleware. Middleware
Designing an Enterprise Application Framework for Service-Oriented Architecture 1
Designing an Enterprise Application Framework for Service-Oriented Architecture 1 Shyam Kumar Doddavula, Sandeep Karamongikar Abstract This article is an attempt to present an approach for transforming
2 (18) - SOFTWARE ARCHITECTURE Service Oriented Architecture - Sven Arne Andreasson - Computer Science and Engineering.
Service Oriented Architecture Definition (1) Definitions Services Organizational Impact SOA principles Web services A service-oriented architecture is essentially a collection of services. These services
Service Oriented Architecture
Service Oriented Architecture Version 9 2 SOA-2 Overview Ok, now we understand the Web Service technology, but how about Service Oriented Architectures? A guiding analogy Terminology excursion Service,
Enterprise Application Designs In Relation to ERP and SOA
Enterprise Application Designs In Relation to ERP and SOA DESIGNING ENTERPRICE APPLICATIONS HASITH D. YAGGAHAVITA 20 th MAY 2009 Table of Content 1 Introduction... 3 2 Patterns for Service Integration...
Introduction to WebSphere Process Server and WebSphere Enterprise Service Bus
Introduction to WebSphere Process Server and WebSphere Enterprise Service Bus Course materials may not be reproduced in whole or in part without the prior written permission of IBM. 4.0.3 Unit objectives
The Service Revolution software engineering without programming languages
The Service Revolution software engineering without programming languages Gustavo Alonso Institute for Pervasive Computing Department of Computer Science Swiss Federal Institute of Technology (ETH Zurich)
JoramMQ, a distributed MQTT broker for the Internet of Things
JoramMQ, a distributed broker for the Internet of Things White paper and performance evaluation v1.2 September 214 mqtt.jorammq.com www.scalagent.com 1 1 Overview Message Queue Telemetry Transport () is
Integrating Web Messaging into the Enterprise Middleware Layer
The increasing demand for real-time data has companies seeking to stream information to users at their desks via the web and on the go with mobile apps. Two trends are paving the way: o Internet push/streaming
Service Oriented Architectures
8 Service Oriented Architectures Gustavo Alonso Computer Science Department Swiss Federal Institute of Technology (ETHZ) [email protected] http://www.iks.inf.ethz.ch/ The context for SOA A bit of history
SOA Myth or Reality??
IBM TRAINING S04 SOA Myth or Reality Jaqui Lynch IBM Corporation 2007 SOA Myth or Reality?? Jaqui Lynch Mainline Information Systems Email [email protected] Session S04 http://www.circle4.com/papers/s04soa.pdf
An Oracle White Paper November 2009. Oracle Primavera P6 EPPM Integrations with Web Services and Events
An Oracle White Paper November 2009 Oracle Primavera P6 EPPM Integrations with Web Services and Events 1 INTRODUCTION Primavera Web Services is an integration technology that extends P6 functionality and
System types. Distributed systems
System types 1 Personal systems that are designed to run on a personal computer or workstation Distributed systems where the system software runs on a loosely integrated group of cooperating processors
Distributed Objects and Components
Distributed Objects and Components Introduction This essay will identify the differences between objects and components and what it means for a component to be distributed. It will also examine the Java
PERFORMANCE COMPARISON OF COMMON OBJECT REQUEST BROKER ARCHITECTURE(CORBA) VS JAVA MESSAGING SERVICE(JMS) BY TEAM SCALABLE
PERFORMANCE COMPARISON OF COMMON OBJECT REQUEST BROKER ARCHITECTURE(CORBA) VS JAVA MESSAGING SERVICE(JMS) BY TEAM SCALABLE TIGRAN HAKOBYAN SUJAL PATEL VANDANA MURALI INTRODUCTION Common Object Request
Oracle SOA Suite/B2B as a Critical Mission Hub for a High Volume Message Use Case
Oracle SOA Suite/B2B as a Critical Mission Hub for a High Volume Message Use Case Introduction Stop. Think. Ok, in the meanwhile 2 seconds has passed and 250 messages more were processed by a mission critical
The webmethods ESB. The Foundation of your SOA. Jean-Michel Ghyoot, Principal Solution Architect, March 28, 2013
The webmethods ESB The Foundation of your SOA Jean-Michel Ghyoot, Principal Solution Architect, March 28, 2013 2013 Software AG. All rights reserved. 2 2 Agility Process & Integration 3 Integration? INTEGRATION
The Service Availability Forum Specification for High Availability Middleware
The Availability Forum Specification for High Availability Middleware Timo Jokiaho, Fred Herrmann, Dave Penkler, Manfred Reitenspiess, Louise Moser Availability Forum [email protected], [email protected],
SONIC ESB 7. KEY CAPABILITIES > Connects, mediates and controls. KEY BENEFITS > Creates new processes using
CONNECT EVERYTHING. ACHIEVE ANYTHING. TM DATASHEET KEY CAPABILITIES > Connects, mediates and controls services, wherever they are deployed > Fast, dependable and secure communications > Transactional failover
CoSMIC: An MDA Tool Suite for Application Deployment and Configuration
CoSMIC: An MDA Tool Suite for Application Deployment and Configuration Tao Lu, Emre Turkay, Aniruddha Gokhale*, Douglas Schmidt Institute for Software Integrated Systems Vanderbilt University, Nashville
An introduction to SOA and the HP NonStop server environment
Technical white paper An introduction to SOA and the HP NonStop server environment Table of contents About this document SOA is everywhere What is SOA? Why should you care about SOA? What is a service?
The Enterprise Service Bus
1 ESBs: Essential Infrastructure for a Successful SOA March 2005 2 at a glance Customers include world s largest firms! 80% of Global Telecom! 70% of Financial Services in Global 100! Blue Chip System
SOA REFERENCE ARCHITECTURE: WEB TIER
SOA REFERENCE ARCHITECTURE: WEB TIER SOA Blueprint A structured blog by Yogish Pai Web Application Tier The primary requirement for this tier is that all the business systems and solutions be accessible
How To Understand A Services-Oriented Architecture
Introduction to Service Oriented Architecture CSCI-5828 Foundations of Software Engineering Ming Lian March 2012 Executive Summary This Executive Summary gives the straight word to the fresh that have
Chapter 6. CORBA-based Architecture. 6.1 Introduction to CORBA 6.2 CORBA-IDL 6.3 Designing CORBA Systems 6.4 Implementing CORBA Applications
Chapter 6. CORBA-based Architecture 6.1 Introduction to CORBA 6.2 CORBA-IDL 6.3 Designing CORBA Systems 6.4 Implementing CORBA Applications 1 Chapter 6. CORBA-based Architecture Part 6.1 Introduction to
An Oracle White Paper May 2011. Oracle Tuxedo: An Enterprise Platform for Dynamic Languages
An Oracle White Paper May 2011 Oracle Tuxedo: An Enterprise Platform for Dynamic Languages Introduction Dynamic languages, also sometimes known as scripting languages, have been in existence for a long
SONIC ESB: AN ARCHITECTURE AND LIFECYCLE DEFINITION
CONNECT EVERYTHING. ACHIEVE ANYTHING. WHITEPAPER SONIC ESB: AN ARCHITECTURE AND LIFECYCLE DEFINITION Copyright 2005. Sonic Software Corporation. All rights reserved. TABLE OF CONTENTS > 1.0 Introduction
Policy Driven Practices for SOA
Independent Insight for Oriented Practice Policy Driven Practices for SOA Lawrence Wilkes CBDI Forum www.cbdiforum.com Agenda! Enterprise SOA Challenge! SOA Policy Areas! Layered Architecture as a basis
Service Oriented Architecture
Service Oriented Architecture Charlie Abela Department of Artificial Intelligence [email protected] Last Lecture Web Ontology Language Problems? CSA 3210 Service Oriented Architecture 2 Lecture Outline
Redbook Overview Patterns: SOA Design with WebSphere Message Broker and WebSphere ESB
IBM Software for WebSphere Redbook Overview Patterns: SOA Design with WebSphere Message Broker and WebSphere ESB Presenter: Kim Clark Email: [email protected] Date: 27/02/2007 SOA Design with WebSphere
LinuxWorld Conference & Expo Server Farms and XML Web Services
LinuxWorld Conference & Expo Server Farms and XML Web Services Jorgen Thelin, CapeConnect Chief Architect PJ Murray, Product Manager Cape Clear Software Objectives What aspects must a developer be aware
A Quick Introduction to SOA
Software Engineering Competence Center TUTORIAL A Quick Introduction to SOA Mahmoud Mohamed AbdAllah Senior R&D Engineer-SECC [email protected] Waseim Hashem Mahjoub Senior R&D Engineer-SECC Copyright
Creating new university management software by methodologies of Service Oriented Architecture (SOA)
Creating new university management software by methodologies of Service Oriented Architecture (SOA) Tuomas Orama, Jaakko Rannila Helsinki Metropolia University of Applied Sciences, Development manager,
How To Create A C++ Web Service
A Guide to Creating C++ Web Services WHITE PAPER Abstract This whitepaper provides an introduction to creating C++ Web services and focuses on:» Challenges involved in integrating C++ applications with
Infrastructures for Digital Business Ecosystems : the wrong question?
Infrastructures for Digital Business Ecosystems : the wrong question? Maurizio De Cecco http://maurizio.dececco.name/ http://www.linkedin.com/in/mauriziodececco As an independent expert working for the
Monitoring Infrastructure (MIS) Software Architecture Document. Version 1.1
Monitoring Infrastructure (MIS) Software Architecture Document Version 1.1 Revision History Date Version Description Author 28-9-2004 1.0 Created Peter Fennema 8-10-2004 1.1 Processed review comments Peter
SOFT 437. Software Performance Analysis. Ch 5:Web Applications and Other Distributed Systems
SOFT 437 Software Performance Analysis Ch 5:Web Applications and Other Distributed Systems Outline Overview of Web applications, distributed object technologies, and the important considerations for SPE
Information integration platform for CIMS. Chan, FTS; Zhang, J; Lau, HCW; Ning, A
Title Information integration platform for CIMS Author(s) Chan, FTS; Zhang, J; Lau, HCW; Ning, A Citation IEEE International Conference on Management of Innovation and Technology Proceedings, Singapore,
Challenges and Opportunities for formal specifications in Service Oriented Architectures
ACSD ATPN Xi an China June 2008 Challenges and Opportunities for formal specifications in Service Oriented Architectures Gustavo Alonso Systems Group Department of Computer Science Swiss Federal Institute
Enterprise Application Integration (EAI) Architectures, Technologies, and Best Practices
Enterprise Application Integration (EAI) Architectures, Technologies, and Best Practices Give Your Business the Competitive Edge IT managers have been under increasing pressure to migrate a portfolio of
Service Virtualization: Managing Change in a Service-Oriented Architecture
Service Virtualization: Managing Change in a Service-Oriented Architecture Abstract Load balancers, name servers (for example, Domain Name System [DNS]), and stock brokerage services are examples of virtual
A SOA Based Framework for the Palestinian e-government Integrated Central Database
Islamic University of Gaza Deanery of Higher Studies Faculty of Information Technology Information Technology Program A SOA Based Framework for the Palestinian e-government Integrated Central Database
SOA Fundamentals For Java Developers. Alexander Ulanov, System Architect Odessa, 30 September 2008
SOA Fundamentals For Java Developers Alexander Ulanov, System Architect Odessa, 30 September 2008 What is SOA? Software Architecture style aimed on Reuse Growth Interoperability Maturing technology framework
Persistent, Reliable JMS Messaging Integrated Into Voyager s Distributed Application Platform
Persistent, Reliable JMS Messaging Integrated Into Voyager s Distributed Application Platform By Ron Hough Abstract Voyager Messaging is an implementation of the Sun JMS 1.0.2b specification, based on
The Enterprise Service Bus: Making Service-Oriented Architecture Real
The Enterprise Service Bus: Making Service-Oriented Architecture Real M.T. Schmidt et al. Presented by: Mikael Fernandus Simalango SOA in Early Days Introduction Service Requester bind find Service Registry
Emerging Technologies Shaping the Future of Data Warehouses & Business Intelligence
Emerging Technologies Shaping the Future of Data Warehouses & Business Intelligence Service Oriented Architecture SOA and Web Services John O Brien President and Executive Architect Zukeran Technologies
CHAPTER 1 INTRODUCTION
1 CHAPTER 1 INTRODUCTION Internet has revolutionized the world. There seems to be no limit to the imagination of how computers can be used to help mankind. Enterprises are typically comprised of hundreds
Government's Adoption of SOA and SOA Examples
Government's Adoption of SOA and SOA Examples Presented by : Ajay Budhraja, Chief of Enterprise Services ME (Engg), MS (Management), PMP, CICM, CSM, ECM (Master) AIIM, ITIL-F Copyright 2008 Ajay Budhraja
Service-Oriented Architecture and its Implications for Software Life Cycle Activities
Service-Oriented Architecture and its Implications for Software Life Cycle Activities Grace A. Lewis Software Engineering Institute Integration of Software-Intensive Systems (ISIS) Initiative Agenda SOA:
COM 440 Distributed Systems Project List Summary
COM 440 Distributed Systems Project List Summary This list represents a fairly close approximation of the projects that we will be working on. However, these projects are subject to change as the course
How To Integrate With An Enterprise Service Bus (Esb)
Mule ESB Integration Simplified Rich Remington [email protected] Topics Integration, SOA, and ESB What Mule ESB is (and isn t) Mule Architecture & Components Configuration & Deployment Enterprise
IBM Software Group. IBM WebSphere Process Integration Technical Overview
IBM Software Group IBM WebSphere Process Integration Technical Overview Business Flexibility Depends on IT Flexibility Today s IT architectures, arcane as they may be, are the biggest roadblocks most companies
SIF 3: A NEW BEGINNING
SIF 3: A NEW BEGINNING The SIF Implementation Specification Defines common data formats and rules of interaction and architecture, and is made up of two parts: SIF Infrastructure Implementation Specification
Distributed systems. Distributed Systems Architectures
Distributed systems Distributed Systems Architectures Virtually all large computer-based systems are now distributed systems. Information processing is distributed over several computers rather than confined
Architecting Composite Component Systems for Heterogeneous Environments with Open Standards. Derek Dominish
Architecting Composite Component Systems for Heterogeneous s with Open Standards Derek Dominish Aerospace Division Future Information Architectures MilCIS - Canberra 14 th November 2013 wealth of Australia
System Models for Distributed and Cloud Computing
System Models for Distributed and Cloud Computing Dr. Sanjay P. Ahuja, Ph.D. 2010-14 FIS Distinguished Professor of Computer Science School of Computing, UNF Classification of Distributed Computing Systems
Developers Integration Lab (DIL) System Architecture, Version 1.0
Developers Integration Lab (DIL) System Architecture, Version 1.0 11/13/2012 Document Change History Version Date Items Changed Since Previous Version Changed By 0.1 10/01/2011 Outline Laura Edens 0.2
Service Oriented Architecture
Architectural Approaches, Concepts and Methodologies of Service Oriented Architecture Master Thesis submitted in partial satisfaction of the requirements for the degree of Master of Science in Information
emontage: An Architecture for Rapid Integration of Situational Awareness Data at the Edge
emontage: An Architecture for Rapid Integration of Situational Awareness Data at the Edge Soumya Simanta Gene Cahill Ed Morris Motivation Situational Awareness First responders and others operating in
