ACS 3907 E-Commerce. E-Commerce Design Architecture Part 1. Client/Server Architecture. Instructor: Kerry Augustine February 7 th 2019

Size: px
Start display at page:

Download "ACS 3907 E-Commerce. E-Commerce Design Architecture Part 1. Client/Server Architecture. Instructor: Kerry Augustine February 7 th 2019"

Transcription

1 ACS 3907 E-Commerce Instructor: Kerry Augustine February 7 th Pearson Education, Inc. Publishing as Prentice Hall 1 E-Commerce Design Architecture Part 1 Client/server architecture Two-tier vs. three-tier architecture Four-tier architecture Web server software/ Site management tools E-Commerce merchant server platform Hardware platform E-Commerce site tools/ Personalization tools Mobile Commerce (M-Commerce) architecture Cloud Computing 2014 Pearson Education, Inc. Publishing as Prentice Hall 2 Client/Server Architecture Model of computing where roles and responsibilities are distributed between servers and clients Two-Tier Architecture (1) Client (2) Server + Database (1) Client (2) Server (3) Database Three-Tier Architecture 2014 Pearson Education, Inc. Publishing as Prentice Hall 3 1

2 Client/ Server Architecture Front-end (client) systems are those processes with which a user interfaces, and over which a customer can exert some control. For an ebusiness, front-end systems are the Web site processes that customers use to view information and purchase products and services Pearson Education, Inc. Publishing as Prentice Hall 4 Client/ Server Architecture Back-end (server) systems are those processes that are not directly accessed by customers. Back-end systems include the business s TPS and MIS systems that handle the accounting and budgeting, manufacturing, marketing, inventory management, distribution, order-tracking, and customer support processes Pearson Education, Inc. Publishing as Prentice Hall 5 Client/Server Architecture (cont.) Strictly speaking, clients and servers refer to software Client s tasks: Sends requests to servers Display results from server to user Server s responsibilities: Satisfies requests May consult other sources May fail to satisfy requests Servers cannot initiate dialog with clients May exist on same physical machine or separate machines 2014 Pearson Education, Inc. Publishing as Prentice Hall 6 2

3 Client/Server Architecture (cont.) Servers may respond to multiple clients Clients may send requests to multiple servers Examples of servers: Mail server manages Database server stores info on customers, products, prices Web server delivers HTML content to clients Ad server maintains web-enabled DB of ad banners, allowing customized/personalized display of ads based on customer behaviour and characteristics User application components: presentation, processing, data How to divide up components in architecture? 2014 Pearson Education, Inc. Publishing as Prentice Hall 7 Advantages of Client/Server Architecture Scalability Increase/decrease computing capacity easily by adding more clients or servers Interoperability Clients, servers, database can be run on different operating systems Reliability Failure of one component in network most likely does not shut down whole system More elaborate GUIs Can dedicate clients computing resources solely for GUI management 2014 Pearson Education, Inc. Publishing as Prentice Hall 8 Disadvantages of Client/Server Architecture Complexity Many machines must work together to communicate and coordinate; Systems must be designed carefully Need for specialized training Development and support staff require specialized knowledge and experience Network management tools less robust These tools are still new relative to other technologies 2014 Pearson Education, Inc. Publishing as Prentice Hall 9 3

4 Considerations for Choosing Architecture Design System-related: Complexity of the application Level of integration required Process-related: Development time required Flexibility and maintenance of system Client/Users-related: Number of users User s geographical dispersion Nature of networks and transaction needs of the application Response times 2014 Pearson Education, Inc. Publishing as Prentice Hall 10 Two-Tier Architecture Most common implementation: Client: presentation, processing Server: processing, data Client responsible for functionality and business logic Server handles data-intensive tasks via database engine (integrity checks, querying) Most common language of communication: SQL Requires tight linkage between server and client 2014 Pearson Education, Inc. Publishing as Prentice Hall 11 Three-Tier Architecture Clients are responsible for presentation only Middle-tier servers: Handle data processing Act as clients and send requests to other servers Back-end server dedicated to data Communication via remote procedure calls (RPC) Can be accomplished in Java, C, etc. Client requests specify parameters and return data structures, and do not need to speak the server s language 2014 Pearson Education, Inc. Publishing as Prentice Hall 12 4

5 Three-Tier Architecture RPC RPC 2014 Pearson Education, Inc. Publishing as Prentice Hall 13 Advantages 2-Tier Fast application development; low initial development efforts required 2-tier tools are extremely robust Good for iterative prototyping and rapid application development techniques 3-Tier Development expertise can be more focused to specific tiers Separation allow parallel development Data and process changes do not affect clients Middle-tier servers help decrease and localize network traffic Reduce data needs (memory, processing, disk storage) for clients Modularity, leading to higher code reuse, lower maintenance and migration costs when switching client applications Lower subsequent development efforts 2014 Pearson Education, Inc. Publishing as Prentice Hall 14 Disadvantages 2-Tier Not suited for dispersed, heterogeneous environments (e.g. cross-departments, cross-platforms) Not suited for environments with rapidly changing business rules Difficulties with version control and redistribution of client application Proliferation of end-user query tools can compromise database server security (could amend via middleware) Client tools and SQL middleware are proprietary Higher subsequent development efforts High migration costs for client tools 3-Tier 3-tier tools/platforms are more complex; require more planning More complicated code, thus, increases chance of system failure Requires network traffic management, server load balancing, fault tolerance High initial development effort needed 2014 Pearson Education, Inc. Publishing as Prentice Hall 15 5

6 Four-Tier Architecture The Web server is physically separated from the application server. This is often done for security reasons, where the Web server is deployed into a perimeter network and accesses the application server located on a different subnet. In this scenario, you might implement a firewall between the client and the Web tier, and another firewall between the Web tier and the application or business logic tier. Consider the 4-tier pattern if security requirements dictate that business logic cannot be deployed to the perimeter network, or you have application code that makes heavy use of resources on the server and you want to offload that functionality to another server Pearson Education, Inc. Publishing as Prentice Hall 16 Example - Four-Tier Architecture Client Tier Web Tier Application Tier Database Tier Internet Website: This application is used with popular and recent browsers on desktop and mobile devices and is structured in 4 layers: client (browser), UI (Web), Application logic (Services) and Database. Intranet Application: this application is used on the current corporate browser (Internet Explorer 8) and is also structured in 4 layers. Desktop Application: this application is deployed directly to the desktop using Click Once and connects to a service layer for application logic and then a database layer. These will be internal applications only Pearson Education, Inc. Publishing as Prentice Hall 17 Web Server Software Apache Leading Web server software (60% of market) Works with UNIX, Linux operating systems Microsoft s Internet Information Server (IIS) Second major Web server software (20% of market) Windows-based 2014 Pearson Education, Inc. Publishing as Prentice Hall 18 6

7 Table 4.4, Page Pearson Education, Inc. Publishing as Prentice Hall 19 Site Management Tools Basic tools Included in all Web servers Verify that links on pages are still valid Identify orphan files Third-party software for advanced management Monitor customer purchases, marketing campaign effectiveness, and so on 2014 Pearson Education, Inc. Publishing as Prentice Hall 20 Web Site Management Services 24/7 server monitoring & rescue Response to alerts Security monitoring Initial system tuning & hardening Regular server updates 911 patching Backup monitoring & audits Security audits & hardening 24/7 on-demand support Infrastructure design & setup Website maintenance Small website fixes Server/App migrations Mail error fixes Performance tuning Hardware fault resolution Website monitoring & rescue 2014 Pearson Education, Inc. Publishing as Prentice Hall

8 Application Servers Web application servers: Provide specific business functionality required for a Web site Type of middleware Isolate business applications from Web servers and databases Single-function applications being replaced by integrated software tools that combine all functionality needed for e- commerce site 2014 Pearson Education, Inc. Publishing as Prentice Hall 22 E-commerce Merchant Server Software Provides basic functionality for sales Online catalog List of products available on Web site Shopping cart Allows shoppers to set aside, review, edit selections, and then make purchase Credit card processing Typically works in conjunction with shopping cart Verifies card and puts through credit to company s account at checkout 2014 Pearson Education, Inc. Publishing as Prentice Hall 23 Merchant Server Software Packages Integrated environment that includes most of functionality needed Key factors in selecting a package Functionality Support for different business models Business process modeling tools Visual site management and reporting Performance and scalability Connectivity to existing business systems Compliance with standards Global and multicultural capability Local sales tax and shipping rules 2014 Pearson Education, Inc. Publishing as Prentice Hall 24 8

9 Web Services and Open-Source Options Options for small firms Hosted e-commerce sites Offer site building tools and templates Example: Yahoo s Merchant Solutions Open-source merchant server software Enables you to build truly custom sites Requires programmer with expertise, time 2014 Pearson Education, Inc. Publishing as Prentice Hall 25 EC Suites: SiteCore (Formally MS Commerce Server 2009 Acquired Nov-2013) Developer edition: ~$7K Enterprise edition: ~$120K Both templates contain a contemporary presentation skin for the out-of-the-box default Web site and mobile site integrated into MS SharePoint, with optional sample data. Allows for different marketing campaigns for different brands or different customer segments or both. Comes with built-in discounts, advertisement management, and a direct mailer, with expression-based lists; all with multi-lingual support. Offers an integrated data warehouse across customer profile, catalog, order, marketing, and Web log data Pearson Education, Inc. Publishing as Prentice Hall 26 EC Suites: IBM WebSphere Commerce * Express: ~$7000 Professional: ~$100K Enterprise: ~$200K * HCL Technologies to Acquire Select IBM Software Products for $1.8B 2014 Pearson Education, Inc. Publishing as Prentice Hall 27 9

10 The Hardware Platform Hardware platform: Underlying computing equipment needed for e-commerce functionality Objective: Enough platform capacity to meet peak demand without wasting money Important to understand the factors that affect speed, capacity, and scalability of a site 2014 Pearson Education, Inc. Publishing as Prentice Hall 28 Right-Sizing Your Hardware Platform: The Demand Side Customer demand: Most important factor affecting speed of site Factors in overall demand: Number of simultaneous users in peak periods Nature of customer requests (user profile) Type of content (dynamic vs. static Web pages) Required security Number of items in inventory Number of page requests Speed of legacy applications 2014 Pearson Education, Inc. Publishing as Prentice Hall 29 Right-Sizing Your Hardware Platform: The Supply Side Scalability: Ability of site to increase in size as demand warrants Ways to scale hardware: Vertically Increase processing power of individual components Horizontally Employ multiple computers to share workload Improve processing architecture 2014 Pearson Education, Inc. Publishing as Prentice Hall 30 10

11 Factors in Web Site Optimization Figure 4.10, Page Pearson Education, Inc. Publishing as Prentice Hall 31 Table 4.8, Page Pearson Education, Inc. Publishing as Prentice Hall 32 Table 4.9, Page Pearson Education, Inc. Publishing as Prentice Hall 33 11

12 Mobile Commerce (M-Commerce) Takes traditional EC models onto wireless platform Already popular in Asia and Europe Wireless technologies: 4G = fourth-generation wireless wifi = wireless local area networks Bluetooth = short range radio frequency web devices Ultrawide band = wireless USB technology Allows large file transfers over short distances Zigbee = connect devices to each other but at longer range and with lower power requirement than Bluetooth 2014 Pearson Education, Inc. Publishing as Prentice Hall 34 Cellular System: GSM vs CDMA GSM formerly: Groupe Spéciale Mobile (founded 1982) developed by the European Telecommunications Standards Institute (ETSI) now: Global System for Mobile Communication As of 2014 it has become the default global standard for mobile communications - with over 90% market share, operating in over 219 countries and territories AT&T and T-Mobile GSM carriers put customer information on a removable SIM card CDMA Code Division Multiple Access U.S., Sprint, Verizon and U.S. Cellular owned by chipmaker Qualcomm CDMA carriers use network-based white lists to verify their subscribers 2014 Pearson Education, Inc. Publishing as Prentice Hall 35 Cellular System: 3GPP 3GPP 3rd Generation Partnership Project (3GPP) seven 3GPP Organizational Partners are from Asia, Europe and North America. Their aim is to determine the general policy and strategy of 3GPP 2014 Pearson Education, Inc. Publishing as Prentice Hall 36 12

13 Cellular System: LTE LTE 3rd Long-Term Evolution, commonly marketed as 4G LTE, is a standard for wireless communication of highspeed data for mobile phones and data terminals. based on the GSM/EDGE (Enhanced Data rates for GSM Evolution) and UMTS (Universal Mobile Telecommunications System) /HSPA (High Speed Packet Access) network technologies, increasing the capacity and speed using a different radio interface together with core network improvements. standard is developed by the 3GPP (3rd Generation Partnership Project) 2014 Pearson Education, Inc. Publishing as Prentice Hall 37 Cellular System: 5G 5G is the latest generation of cellular mobile communications. It succeeds the 4G (LTE/WiMax), 3G (UMTS) and 2G (GSM) systems. 5G performance targets high data rate, reduced latency, energy saving, cost reduction, higher system capacity, and massive device connectivity. The first phase of 5G specifications in Release-15 will be completed by April 2019 to accommodate the early commercial deployment. The second phase in Release-16 is due to be completed by April 2020 for submission to the International Telecommunication Union (ITU) as a candidate of IMT technology. [Source] 2014 Pearson Education, Inc. Publishing as Prentice Hall 38 Cellular System: 5G 2014 Pearson Education, Inc. Publishing as Prentice Hall 39 13

14 Cellular System: 5G 2014 Pearson Education, Inc. Publishing as Prentice Hall 40 Cloud Computing Software and storage provided as an internet service and accessed within a web browser Example: , Data storage, skydrive, tax software, flicker, facebook. Radically reduces costs of: Building and operating Web sites Infrastructure, IT support Hardware, software 2014 Pearson Education, Inc. Publishing as Prentice Hall 45 Cloud Computing Advantages to Businesses Outsourcing Resources Saves on system design, installation, and maintenance Provides an ability to access corporate systems from any Internet-connected device Increases the data storage capabilities of the firm Data safeguarding responsibility of service provider 2014 Pearson Education, Inc. Publishing as Prentice Hall 46 14

15 Google Cloud Centre 2014 Pearson Education, Inc. Publishing as Prentice Hall 47 15

ACS 3907 E-Commerce. Instructor: Kerry Augustine February 6 th 2018

ACS 3907 E-Commerce. Instructor: Kerry Augustine February 6 th 2018 ACS 3907 E-Commerce Instructor: Kerry Augustine February 6 th 2018 2014 Pearson Education, Inc. Publishing as Prentice Hall 1 E-Commerce Design Architecture Part 1 Client/server architecture Two-tier vs.

More information

E-commerce. business. technology. society. Kenneth C. Laudon Carol Guercio Traver. Sixth Edition

E-commerce. business. technology. society. Kenneth C. Laudon Carol Guercio Traver. Sixth Edition E-commerce business. technology. society. Sixth Edition Kenneth C. Laudon Carol Guercio Traver Copyright 2010 2009 Pearson Education, Inc. Slide 4-1 Building an E-commerce Web Site Copyright 2010 2009

More information

Sixth Edition. Building an E-commerce Web Site. Building an E-commerce Site: A Systematic Approach. Most important management challenges:

Sixth Edition. Building an E-commerce Web Site. Building an E-commerce Site: A Systematic Approach. Most important management challenges: E-commerce business. technology. society. Sixth Edition Chapter 4 Kenneth C. Laudon Carol Guercio Traver Building an E-commerce Web Site Copyright 2009 Pearson Education, Inc. Education, Inc. Slide 4-1

More information

BUS Chapter 4 Building an E-commerce Presence: Web Sites, Mobile Sites, and Apps

BUS Chapter 4 Building an E-commerce Presence: Web Sites, Mobile Sites, and Apps BUS 168 - Chapter 4 Building an E-commerce Presence: Web Sites, Mobile Sites, and Apps Imagine Your E-commerce Presence What s the idea? Vision Mission statement Target audience Intended market space Strategic

More information

Chapter 3 Building an E-commerce Presence

Chapter 3 Building an E-commerce Presence Chapter 3 Building an E-commerce Presence Copyright 2017 Pearson Education Ltd. Learning Objectives Understand the questions you must ask and answer, and the steps you should take, in developing an e-commerce

More information

System Analysis & design

System Analysis & design Assiut University Faculty of Computers and Information System Analysis & design Year 2 Academic Year 2014/ 2015 Term (2) Copyright 2014 Dr. Hossam Ragab 8 A n important component of the design phase is

More information

Web Serving Architectures

Web Serving Architectures Web Serving Architectures Paul Dantzig IBM Global Services 2000 without the express written consent of the IBM Corporation is prohibited Contents Defining the Problem e-business Solutions e-business Architectures

More information

Using Red Hat Network Satellite to dynamically scale applications in a private cloud

Using Red Hat Network Satellite to dynamically scale applications in a private cloud Using Red Hat Network Satellite to dynamically scale applications in a private cloud www.redhat.com Abstract Private cloud infrastructure has many clear advantages, not the least of which is the decoupling

More information

Chapter. IT Infrastructure: Hardware and Software

Chapter. IT Infrastructure: Hardware and Software Chapter 4 IT Infrastructure: Hardware and Software My First Love! Year: 1985 My Heart Beats Still IT Infrastructure: Computer Hardware IT infrastructure: provides platform for supporting all information

More information

SCALEFAST COMMERCE CLOUD INFRASTRUCTURE

SCALEFAST COMMERCE CLOUD INFRASTRUCTURE SCALEFAST COMMERCE CLOUD INFRASTRUCTURE ALWAYS-ON, GLOBAL ECOMMERCE INFRASTRUCTURE Scalefast provides the highest level of availability, performance and security for your online store. We take care of

More information

WHITE PAPER. Mobility Services Platform (MSP) Using MSP in Wide Area Networks (Carriers)

WHITE PAPER. Mobility Services Platform (MSP) Using MSP in Wide Area Networks (Carriers) WHITE PAPER Mobility Services Platform (MSP) Using MSP in Wide Area Networks (Carriers) Table of Contents About This Document... 1 Chapter 1 Wireless Data Technologies... 2 Wireless Data Technology Overview...

More information

Big Picture. ~10 years between generations

Big Picture. ~10 years between generations Big Picture ~10 years between generations 7 Who is Who? Mobile Operators ITU Members ITU GSM, W-CDMA, UMTS IS-95), IS-41, IS- 2000, IS-835 Third Generation Patnership Project (3GPP) CWTS (China) Third

More information

Campus Network Design

Campus Network Design Modular Network Design Campus Network Design Modules are analogous to building blocks of different shapes and sizes; when creating a building, each block has different functions Designing one of these

More information

E-Commerce Business Technology Society Chapter 04

E-Commerce Business Technology Society Chapter 04 SIMPLE VERSUS MULTI-TIERED WEB SITE ARCHITECTURE System Architecture The arrangement of soft-ware, machinery, and tasks in an information system needed to achieve a specific functionality Two-Tier Architecture

More information

Wireless Communication

Wireless Communication Wireless Communication Hwajung Lee Key Reference: Prof. Jong-Moon Chung s Lecture Notes at Yonsei University Wireless Communications Bluetooth Wi-Fi Mobile Communications LTE LTE-Advanced Mobile Communications

More information

Campus Network Design. 2003, Cisco Systems, Inc. All rights reserved. 2-1

Campus Network Design. 2003, Cisco Systems, Inc. All rights reserved. 2-1 Campus Network Design 2003, Cisco Systems, Inc. All rights reserved. 2-1 Design Objective Business Requirement Why do you want to build a network? Too often people build networks based on technological,

More information

Glossary 1. ARPU or Average Revenue per User A method of measuring revenue associated with the delivery of mobile commerce services by MNOs.

Glossary 1. ARPU or Average Revenue per User A method of measuring revenue associated with the delivery of mobile commerce services by MNOs. Glossary 321 Glossary 1 2G or 2nd Generation The currently available digital communication networks for voice and data communication (e.g., GSM, CDMA, PDC). 2.5G or 2.5th Generation Represents an upgrade

More information

Wireless Communication

Wireless Communication Wireless Communication Hwajung Lee Key Reference: Prof. Jong-Moon Chung s Lecture Notes at Yonsei University Wireless Communications Bluetooth Wi-Fi Mobile Communications LTE LTE-Advanced Mobile Communications

More information

Modern Systems Analysis and Design Sixth Edition. Jeffrey A. Hoffer Joey F. George Joseph S. Valacich

Modern Systems Analysis and Design Sixth Edition. Jeffrey A. Hoffer Joey F. George Joseph S. Valacich Modern Systems Analysis and Design Sixth Edition Jeffrey A. Hoffer Joey F. George Joseph S. Valacich Designing Distributed and Internet Systems Learning Objectives Define the key terms client/server architecture,

More information

Expert Reference Series of White Papers. Understanding Data Centers and Cloud Computing

Expert Reference Series of White Papers. Understanding Data Centers and Cloud Computing Expert Reference Series of White Papers Understanding Data Centers and Cloud Computing 1-800-COURSES www.globalknowledge.com Understanding Data Centers and Cloud Computing Paul Stryer, Global Knowledge

More information

4G Mobile Communications

4G Mobile Communications 4G Mobile Communications Welcome to 4G The term 4G is used broadly to include several types of broadband wireless access communication systems, not only cellular telephone systems. One of the terms to

More information

QM Chapter 1 Database Fundamentals Version 10 th Ed. Prepared by Dr Kamel Rouibah / Dept QM & IS

QM Chapter 1 Database Fundamentals Version 10 th Ed. Prepared by Dr Kamel Rouibah / Dept QM & IS QM 433 - Chapter 1 Database Fundamentals Version 10 th Ed Prepared by Dr Kamel Rouibah / Dept QM & IS www.cba.edu.kw/krouibah Dr K. Rouibah / dept QM & IS Chapter 1 (433) Database fundamentals 1 Objectives

More information

Rab Nawaz Jadoon DCS. Assistant Professor. Department of Computer Science. COMSATS Institute of Information Technology. Mobile Communication

Rab Nawaz Jadoon DCS. Assistant Professor. Department of Computer Science. COMSATS Institute of Information Technology. Mobile Communication Rab Nawaz Jadoon DCS Assistant Professor COMSATS IIT, Abbottabad Pakistan COMSATS Institute of Information Technology Mobile Communication Motivation 2 LTE World Wide Adoption of LTE technology as of December

More information

Managed Hosting Services

Managed Hosting Services PRODUCT OVERVIEW Managed Hosting Services A Portfolio of Managed Hardware, Application and Monitoring Services Tailored to Your Unique IT Requirements 1 CenturyLink VoIP Solutions 2 PRODUCT OVERVIEW Managed

More information

COPYRIGHTED MATERIAL. Introduction. Harri Holma and Antti Toskala. 1.1 WCDMA in Third-Generation Systems

COPYRIGHTED MATERIAL. Introduction. Harri Holma and Antti Toskala. 1.1 WCDMA in Third-Generation Systems 1 Introduction Harri Holma and Antti Toskala 1.1 WCDMA in Third-Generation Systems Analog cellular systems are commonly referred to as first-generation systems. The digital systems, such as Global System

More information

Scalable Test Automation using DCqaf framework for a leading US plus-size Fashion Retailer ATTENTION. ALWAYS.

Scalable Test Automation using DCqaf framework for a leading US plus-size Fashion Retailer ATTENTION. ALWAYS. Scalable Test Automation using DCqaf framework for a leading US plus-size Fashion Retailer ATTENTION. ALWAYS. OUR CLIENT Our client is a leading American plus-size apparel and home goods company based

More information

Glossary. xii. Marina Yue Zhang and Mark Dodgson Downloaded from Elgar Online at 02/04/ :16:01PM via free access

Glossary. xii. Marina Yue Zhang and Mark Dodgson Downloaded from Elgar Online at 02/04/ :16:01PM via free access Glossary 2.5G Second-and-a-half Generation mobile communications system 3G Third Generation mobile communications system 3GPP The Third Generation Partnership Project ADSL Asymmetric Digital Subscriber

More information

Our Wireless Advantage

Our Wireless Advantage Americas Summit Our Wireless Advantage Wireless is The Foundation in Innovation, Development and Commercialization RAJESH PANKAJ, Senior Vice President, Engineering 1 The Fundamental Reason to Buy Smart

More information

OBJECTIVES DEFINITIONS CHAPTER 1: THE DATABASE ENVIRONMENT AND DEVELOPMENT PROCESS. Figure 1-1a Data in context

OBJECTIVES DEFINITIONS CHAPTER 1: THE DATABASE ENVIRONMENT AND DEVELOPMENT PROCESS. Figure 1-1a Data in context OBJECTIVES CHAPTER 1: THE DATABASE ENVIRONMENT AND DEVELOPMENT PROCESS Modern Database Management 11 th Edition Jeffrey A. Hoffer, V. Ramesh, Heikki Topi! Define terms! Name limitations of conventional

More information

Cisco MDS 9000 Port Analyzer Adapter, Enhanced: New version improves performance monitoring

Cisco MDS 9000 Port Analyzer Adapter, Enhanced: New version improves performance monitoring Hardware Announcement April 27, 2004 Cisco MDS 9000 Port Analyzer Adapter, Enhanced: New version improves performance monitoring Overview The Cisco MDS 9000 family is designed to offer investment protection,

More information

Glossary. ADO.NET ActiveX Data Objects for.net. A set of data access technologies included in the.net Framework class libraries.

Glossary. ADO.NET ActiveX Data Objects for.net. A set of data access technologies included in the.net Framework class libraries. 308 Glossary Glossary 1G Developed in the 70s and 80s, the first generation (1G) wireless communications technology refers to the analog cellular technology. Popular 1G technology includes AMPS. 2G The

More information

Network Services. Product Catalog

Network Services. Product Catalog Network Services Product Catalog Massive increases in data traffic, mobile devices and cloud-based applications are constantly changing the way your customers do business. AT&T Internet Access Fast, affordable

More information

Convergence of IP and Mobile Communications. Albert Coronel RedLink Communications Co., Ltd. MMNOG, November 21, 2015

Convergence of IP and Mobile Communications. Albert Coronel RedLink Communications Co., Ltd. MMNOG, November 21, 2015 Convergence of IP and Mobile Communications Albert Coronel RedLink Communications Co., Ltd. MMNOG, November 21, 2015 Mobile terminals Netgear Skype phone first released 2007 Makes and receives Skype calls

More information

When (and how) to move applications from VMware to Cisco Metacloud

When (and how) to move applications from VMware to Cisco Metacloud White Paper When (and how) to move applications from VMware to Cisco Metacloud What You Will Learn This white paper will explain when to migrate various applications running in VMware virtual machines

More information

WHITE PAPER. The 450 MHz Band Ecosystem

WHITE PAPER. The 450 MHz Band Ecosystem WHITE PAPER The 450 MHz Band Ecosystem Introduction M2M communications, in which everyday objects and devices are online and able to interact with each other, have seen significant growth in recent years.

More information

Insights Into the SMS Industry and Market Trends

Insights Into the SMS Industry and Market Trends Insights Into the SMS Industry and Market Trends Stewart A. Skomra Director Business Development Qualcomm Enterprise Services E-Mail: sskomra@qualcomm.com Mobile: 858-740-4643 February 29, 2008 Wireless

More information

How Parallels RAS Enhances Microsoft RDS. White Paper Parallels Remote Application Server

How Parallels RAS Enhances Microsoft RDS. White Paper Parallels Remote Application Server How Parallels RAS Enhances Microsoft RDS White Paper Parallels Remote Application Server Table of Contents Introduction... 3 Overview of Microsoft Remote Desktop Services... 3 Microsoft RDS Pain Points...

More information

Understanding Today s Mobile Device Shopper. Google/Compete, U.S. Mar 2011

Understanding Today s Mobile Device Shopper. Google/Compete, U.S. Mar 2011 Understanding Today s Mobile Device Shopper Google/Compete, U.S. Mar 2011 Methodology This study was based on understanding the attitudes of online users who identified themselves as wireless purchasers

More information

STRATEGIC WHITE PAPER. Securing cloud environments with Nuage Networks VSP: Policy-based security automation and microsegmentation overview

STRATEGIC WHITE PAPER. Securing cloud environments with Nuage Networks VSP: Policy-based security automation and microsegmentation overview STRATEGIC WHITE PAPER Securing cloud environments with Nuage Networks VSP: Policy-based security automation and microsegmentation overview Abstract Cloud architectures rely on Software-Defined Networking

More information

IBM Ultrium TB Data Cartridge Models 014, 015, 034, and 035 nearly double the capacity of the previous generation of IBM LTO Ultrium cartridges

IBM Ultrium TB Data Cartridge Models 014, 015, 034, and 035 nearly double the capacity of the previous generation of IBM LTO Ultrium cartridges Announcement ZG10-0098, dated April 12, 2010 IBM Ultrium 5 1.5 TB Data Cartridge Models 014, 015, and 035 nearly double the capacity of the previous generation of IBM LTO Ultrium cartridges Table of contents

More information

Figure 1-1a Data in context. Context helps users understand data

Figure 1-1a Data in context. Context helps users understand data Chapter 1: The Database Environment Modern Database Management 9 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Heikki Topi 2009 Pearson Education, Inc. Publishing as Prentice Hall 1 Definition of terms

More information

INTRODUCTION TO Object Oriented Systems BHUSHAN JADHAV

INTRODUCTION TO Object Oriented Systems BHUSHAN JADHAV INTRODUCTION TO Object Oriented Systems 1 CHAPTER 1 Introduction to Object Oriented Systems Preview of Object-orientation. Concept of distributed object systems, Reasons to distribute for centralized objects.

More information

IBM TotalStorage FAStT Storage Servers provides support for IBM systems running the Linux for Power operating system

IBM TotalStorage FAStT Storage Servers provides support for IBM systems running the Linux for Power operating system Hardware Announcement April 27, 2004 IBM TotalStorage FAStT Storage Servers provides support for IBM systems running the Linux for Power operating system Overview IBM TotalStorage FAStT Storage Servers

More information

Faculté Polytechnique

Faculté Polytechnique Faculté Polytechnique INFORMATIQUE PARALLÈLE ET DISTRIBUÉE CHAPTER 7 : CLOUD COMPUTING Sidi Ahmed Mahmoudi sidi.mahmoudi@umons.ac.be 13 December 2017 PLAN Introduction I. History of Cloud Computing and

More information

Technical Overview. Access control lists define the users, groups, and roles that can access content as well as the operations that can be performed.

Technical Overview. Access control lists define the users, groups, and roles that can access content as well as the operations that can be performed. Technical Overview Technical Overview Standards based Architecture Scalable Secure Entirely Web Based Browser Independent Document Format independent LDAP integration Distributed Architecture Multiple

More information

Cloud Computing: Making the Right Choice for Your Organization

Cloud Computing: Making the Right Choice for Your Organization Cloud Computing: Making the Right Choice for Your Organization A decade ago, cloud computing was on the leading edge. Now, 95 percent of businesses use cloud technology, and Gartner says that by 2020,

More information

Over Cellular. Jim Weikert Strategic Marketing Manager ProSoft Technology Technical Track

Over Cellular.  Jim Weikert Strategic Marketing Manager ProSoft Technology Technical Track Accessing EtherNet/IP Networks Over Cellular www.odva.org Jim Weikert Strategic Marketing Manager ProSoft Technology Technical Track Introduction Pervasiveness of Cellular 100% annual increase in iphone

More information

IBM WebSphere Business Integration Event Broker and Message Broker V5.0

IBM WebSphere Business Integration Event Broker and Message Broker V5.0 Software Announcement May 20, 2003 IBM Event Broker and Message Broker V5.0 Overview WebSphere MQ is the leader in enterprise messaging, offering reliable, once and once only delivery between the broadest

More information

IBM i operating system Value Pack offers software and vouchers for IBM Power 570 and 595 servers

IBM i operating system Value Pack offers software and vouchers for IBM Power 570 and 595 servers IBM United States Announcement 208-080, dated April 8, 2008 IBM i operating system Value Pack offers software and vouchers for IBM Power 570 and 595 servers Description...2 Offering Information...3 Publications...

More information

IBM AIX Solution Editions for the Power 710, 720, 730, and 740 servers

IBM AIX Solution Editions for the Power 710, 720, 730, and 740 servers IBM United States Hardware Announcement 112-071, dated April 24, 2012 IBM AIX Solution Editions for the Power 710, 720, 730, and 740 servers Table of contents 1 Overview 8 Publications 2 Key prerequisites

More information

Cloud Computing. January 2012 CONTENT COMMUNITY CONVERSATION CONVERSION

Cloud Computing. January 2012 CONTENT COMMUNITY CONVERSATION CONVERSION Cloud Computing January 2012 CONTENT COMMUNITY CONVERSATION CONVERSION Purpose and Methodology Survey Sample Field Work December 20, 2011 January 9, 2012 Total Respondents 554 Margin of Error +/- 4.2%

More information

IBM WebSphere Commerce Suite

IBM WebSphere Commerce Suite Tools to build dynamic e-commerce solutions IBM WebSphere Commerce Suite Tools HTML authoring Catalog management Site development Rules development Merchandising Administration Customers expect fast, reliable,

More information

MISTRAL WORKSHOP #1 Trends on future train-to-wayside communications Barcelona, 07/07/2017

MISTRAL WORKSHOP #1 Trends on future train-to-wayside communications Barcelona, 07/07/2017 MISTRAL WORKSHOP #1 Trends on future train-to-wayside communications Barcelona, 07/07/2017 INDEX Introduction: MISTRAL Project Future technological trends for train-to-wayside communications Future economic

More information

The HR Avatar Testing Platform

The HR Avatar Testing Platform The HR Avatar Testing Platform Purpose This document is intended to provide a high level overview of the HR Avatar testing platform what makes it different from other, legacy testing platforms. Overview

More information

Networking Strategy and Optimization Services (NSOS) 2010 IBM Corporation

Networking Strategy and Optimization Services (NSOS) 2010 IBM Corporation Networking Strategy and Optimization Services (NSOS) Agenda Network Strategy and Optimization Services (NSOS) Overview IBM NSOS NAO Offerings Model IBM NSOS NIO Offerings Model Why IBM Lot of specialist

More information

Microsoft IT Leverages its Compute Service to Virtualize SharePoint 2010

Microsoft IT Leverages its Compute Service to Virtualize SharePoint 2010 Microsoft IT Leverages its Compute Service to Virtualize SharePoint 2010 Published: June 2011 The following content may no longer reflect Microsoft s current position or infrastructure. This content should

More information

NEC Virtualized Evolved Packet Core vepc

NEC Virtualized Evolved Packet Core vepc TE-524262 NEC Virtualized Evolved Packet Core vepc Design Concepts and Benefits INDEX Leading the transformation into Mobile Packet Core Virtualization P.3 vepc System Architecture Overview P.4 Elastic

More information

Dossier. Version 6.2 IT Planning Manual ARSENAULT. Associates. Fleet Asset Maintenance Management Software. Since

Dossier. Version 6.2 IT Planning Manual ARSENAULT. Associates. Fleet Asset Maintenance Management Software. Since Dossier Fleet Asset Maintenance Management Software Version 6.2 IT Planning Manual ARSENAULT Associates Since 1979 www.arsenault.com Fleet Maintenance Software Dossier IT Planning Manual Version 6.2 By

More information

Symantec System Recovery 2013 Management Solution FAQ

Symantec System Recovery 2013 Management Solution FAQ WHITE PAPER: SYMANTEC SYSTEM RECOVERY 2013 MANAGEMENT.............. SOLUTION......... FAQ................. Symantec System Recovery 2013 Management Solution FAQ Who should read this paper This paper answers

More information

Mobile e-health with HL7

Mobile e-health with HL7 Mobile e-health with HL7 CAS 757 Modern Software Technology for ehealth Term 2, Winter 2010 Dr. Kamran Sartipi Jianhui (Jeffrey) Lei Yao (Aaron) Song Agenda Wireless Concepts and Technologies Mobile e-health

More information

version 3.3 Wireless Network Engineering Software Prediction and Measurement-based Planning and Optimisation Advanced 5G Capabilities

version 3.3 Wireless Network Engineering Software Prediction and Measurement-based Planning and Optimisation Advanced 5G Capabilities Wireless Network Engineering Software version 3.3 Advanced 5G Capabilities Prediction and Measurement-based Planning and Optimisation Multi-RAT Network Modelling In-built Customisation Capabilities High

More information

Protecting Your Investment in Java SE

Protecting Your Investment in Java SE Software platform maintenance and patching is one of the greatest challenges of managing business critical applications. Oracle Java SE Subscription combines license and support into a simple subscription

More information

Wireless Network Virtualization: Ensuring Carrier Grade Availability

Wireless Network Virtualization: Ensuring Carrier Grade Availability AN INTEL COMPANY Wireless Network Virtualization: Ensuring Carrier Grade Availability WHEN IT MATTERS, IT RUNS ON WIND RIVER EXECUTIVE SUMMARY The wireless industry s battle to acquire new subscribers

More information

The Next Opportunity in the Data Centre

The Next Opportunity in the Data Centre The Next Opportunity in the Data Centre Application Centric Infrastructure Soni Jiandani Senior Vice President, Cisco THE NETWORK IS THE INFORMATION BROKER FOR ALL APPLICATIONS Applications Are Changing

More information

APPLICATIONS. Manufacturers: Operators:

APPLICATIONS. Manufacturers: Operators: spirent 8100 MOBILE DEVICE TEST SYSTEM Fast, comprehensive performance testing of mobile device voice, data and location technologies with fully automated, customizable turn-key solutions for R&D, operator

More information

Technical Overview. Elastic Path Commerce

Technical Overview. Elastic Path Commerce Technical Overview Elastic Path Commerce Extensible, Easy-to-Integrate, Scalable and More 7 Reasons Why Elastic Path Commerce Is The Best Fit For Your Unique Business 1. API is the Core of Digital Commerce

More information

WebSphere 4.0 General Introduction

WebSphere 4.0 General Introduction IBM WebSphere Application Server V4.0 WebSphere 4.0 General Introduction Page 8 of 401 Page 1 of 11 Agenda Market Themes J2EE and Open Standards Evolution of WebSphere Application Server WebSphere 4.0

More information

The Express Portfolio is revised with an additional System x3500 model

The Express Portfolio is revised with an additional System x3500 model , dated March 3, 2009 The Express Portfolio is revised with an additional System x3500 model Table of contents 1 Overview 2 Services 1 Planned availability date 3 Technical information 1 Description 4

More information

Networking for a smarter data center: Getting it right

Networking for a smarter data center: Getting it right IBM Global Technology Services October 2011 Networking for a smarter data center: Getting it right Planning the network needed for a dynamic infrastructure 2 Networking for a smarter data center: Getting

More information

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. reserved. Insert Information Protection Policy Classification from Slide 8

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. reserved. Insert Information Protection Policy Classification from Slide 8 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material,

More information

THE BASICS OF 5G: WHAT, WHEN AND WHY

THE BASICS OF 5G: WHAT, WHEN AND WHY THE BASICS OF 5G: WHAT, WHEN AND WHY Francis (Fran) O BRIEN, Jr., Ph.D. November 21, 2013 TIA Beyond 2020: A Vision of 5G Networks WHAT IS 5G? 5G not yet been defined by any recognized standards body or

More information

Seagate Info Architecture Planning and Deployment for ASPs

Seagate Info Architecture Planning and Deployment for ASPs Seagate Info Architecture Planning and Deployment for ASPs Overview Contents This document is a guide to help customers prepare for their implementation of Seagate Info. It helps you to successfully implement

More information

Standardization Trend for Super 3G (LTE)

Standardization Trend for Super 3G (LTE) : NGN Mobile Communication Technologies for Standardization Trend for Super (LTE) Sadayuki Abeta and Minami Ishii Abstract Super (also known as Long Term Evolution (LTE)) expands upon the HSDPA/HSUPA (high-speed

More information

Certkiller.P questions

Certkiller.P questions Certkiller.P2140-020.59 questions Number: P2140-020 Passing Score: 800 Time Limit: 120 min File Version: 4.8 http://www.gratisexam.com/ P2140-020 IBM Rational Enterprise Modernization Technical Sales Mastery

More information

Meltem Özturan misprivate.boun.edu.tr/ozturan/mis515

Meltem Özturan misprivate.boun.edu.tr/ozturan/mis515 Meltem Özturan misprivate.boun.edu.tr/ozturan/mis515 1 2 1 Selecting the Best Alternative Major Activities in the Analysis Phase Gather information Define system requirements Prototype for feasibility

More information

IBM System Storage DS8000 series (Machine types 2421, 2422, 2423, and 2424) delivers new security, scalability, and business continuity capabilities

IBM System Storage DS8000 series (Machine types 2421, 2422, 2423, and 2424) delivers new security, scalability, and business continuity capabilities , dated February 10, 2009 IBM System Storage DS8000 series (Machine types 2421, 2422, 2423, and 2424) delivers new security, scalability, and business continuity capabilities Table of contents 1 At a glance

More information

Selected IBM System p servers offer new optional cryptographic coprocessor and other new functions

Selected IBM System p servers offer new optional cryptographic coprocessor and other new functions Hardware Announcement July 25, 2006 Selected IBM System p servers offer new optional cryptographic coprocessor and other new functions Overview The PCI-X Cryptographic (#4764) for selected System p servers

More information

Chapter Outline. Chapter 2 Distributed Information Systems Architecture. Layers of an information system. Design strategies.

Chapter Outline. Chapter 2 Distributed Information Systems Architecture. Layers of an information system. Design strategies. Prof. Dr.-Ing. Stefan Deßloch AG Heterogene Informationssysteme Geb. 36, Raum 329 Tel. 0631/205 3275 dessloch@informatik.uni-kl.de Chapter 2 Distributed Information Systems Architecture Chapter Outline

More information

Cisco CloudCenter Solution Use Case: Application Migration and Management

Cisco CloudCenter Solution Use Case: Application Migration and Management Cisco CloudCenter Solution Use Case: Application Migration and Management Application migration and management Cloud computing is here to stay. According to recent Gartner research 1, from 2011 to 2014

More information

Whitepaper. IoT Protocols. PAASMER Support for Protocols. Website:

Whitepaper. IoT Protocols. PAASMER Support for Protocols. Website: Whitepaper IoT Protocols PAASMER Support for Protocols Website: www.mobodexter.com www.paasmer.co 1 Table of Contents 1. Introduction 3 2. IoT Protocols 4 3. Connectivity Protocols 5 4. Application Layer

More information

Building a government cloud Concepts and Solutions

Building a government cloud Concepts and Solutions Building a government cloud Concepts and Solutions Dr. Gabor Szentivanyi, ULX Open Source Consulting & Distribution Background Over 18 years of experience in enterprise grade open source Based in Budapest,

More information

UMTS Forum Operators Group. Operators HSPA experience and path towards LTE. Peter Zidar, M.Sc.

UMTS Forum Operators Group. Operators HSPA experience and path towards LTE. Peter Zidar, M.Sc. Operators HSPA experience and path towards LTE Peter Zidar, M.Sc. Chairman of Operators Group, UMTS Forum Head of standardization office, Mobitel, d. d., Slovenia Mobile operators can: UMTS Forum Operators

More information

4G Demystified: The Plain Truth About LTE and WiMAX. Business Planning Considerations

4G Demystified: The Plain Truth About LTE and WiMAX. Business Planning Considerations 4G Demystified: The Plain Truth About LTE and WiMAX Business Planning Considerations Randall Schwartz Principal Consultant WiMAX.Com Webinar October 7, 2010 10/19/201008/08/10 Copyright Wireless 20/20,

More information

IBM WebSphere MQ Hypervisor Edition accelerates deployment of private cloud messaging

IBM WebSphere MQ Hypervisor Edition accelerates deployment of private cloud messaging IBM United States Software Announcement 211-088, dated April 5, 2011 IBM WebSphere MQ Hypervisor Edition accelerates deployment of private cloud messaging Table of contents 1 Overview 3 Technical information

More information

Overview. M-commerce vs. E-commerce

Overview. M-commerce vs. E-commerce M-COMMERCE Overview What is M-Commerce? M-commerce vs. E-commerce Classes of M-Commerce Applications Benefits of M-commerce Advantages of M-Commerce Disadvantages of M-Commerce Mobile Computing: Content,

More information

xiii A. Hayden Lindsey IBM Distinguished Engineer and Director, Studio Tools Foreword

xiii A. Hayden Lindsey IBM Distinguished Engineer and Director, Studio Tools Foreword Foreword Business applications are increasingly leveraging Web technologies. Naturally this is true for Internet applications, but it is also true for intranet and extranet applications applications that

More information

IBM WebSphere Business Integration Adapter for DTS Protocol extends legacy mainframe integration

IBM WebSphere Business Integration Adapter for DTS Protocol extends legacy mainframe integration Software Announcement January 25, 2005 IBM WebSphere Business Integration Adapter for DTS Protocol extends legacy mainframe integration Overview WebSphere Business Integration Adapters help you integrate

More information

CAS 703 Software Design

CAS 703 Software Design Dr. Ridha Khedri Department of Computing and Software, McMaster University Canada L8S 4L7, Hamilton, Ontario Acknowledgments: Material based on Software by Tao et al. (Chapters 9 and 10) (SOA) 1 Interaction

More information

Advanced Concepts 5G

Advanced Concepts 5G Advanced Concepts 5G Background Applications & Requirements Radio Technology Candidates Networking Trends Status and Timeline Parts of the presentation are taken from material that has been provided by

More information

TABLE OF CONTENTS 1. INTRODUCTION DEFINITIONS Error! Bookmark not defined REASON FOR ISSUE 2 3. RELATED DOCUMENTS 2 4.

TABLE OF CONTENTS 1. INTRODUCTION DEFINITIONS Error! Bookmark not defined REASON FOR ISSUE 2 3. RELATED DOCUMENTS 2 4. TABLE OF CONTENTS 1. INTRODUCTION 1 1.1 DEFINITIONS Error! Bookmark not defined. - 2 2. REASON FOR ISSUE 2 3. RELATED DOCUMENTS 2 4. OVERVIEW 2-3 5. HARDWARE ARCHITECTURE 3 6. SUPPORTED CONFIGURATIONS

More information

WHITESTEIN. Agents in a J2EE World. Technologies. Stefan Brantschen. All rights reserved.

WHITESTEIN. Agents in a J2EE World. Technologies. Stefan Brantschen. All rights reserved. WHITESTEIN Technologies 1 Agents in a J2EE World Stefan Brantschen ttt.info.j2ee v1.6 2002-02-10 SBR Copyright 2002 by Whitestein Technologies AG, Switzerland Goal and Outline Goal Present how J2EE EJB

More information

CLOUD COMPUTING ABSTRACT

CLOUD COMPUTING ABSTRACT Ruchi Saraf CSE-VII Sem CLOUD COMPUTING By: Shivali Agrawal CSE-VII Sem ABSTRACT Cloud computing is the convergence and evolution of several concepts from virtualization, distributed application design,

More information

INTRODUCTION TO LTE. ECE MOBILE COMMUNICATION Monday, 25 June 2018

INTRODUCTION TO LTE. ECE MOBILE COMMUNICATION Monday, 25 June 2018 INTRODUCTION TO LTE ECE 2526 - MOBILE COMMUNICATION Monday, 25 June 2018 1 WHAT IS LTE? 1. LTE stands for Long Term Evolution and it was started as a project in 2004 by the Third Generation Partnership

More information

Mobile Middleware Course. Mobile Platforms and Middleware. Sasu Tarkoma

Mobile Middleware Course. Mobile Platforms and Middleware. Sasu Tarkoma Mobile Middleware Course Mobile Platforms and Middleware Sasu Tarkoma Role of Software and Algorithms Software has an increasingly important role in mobile devices Increase in device capabilities Interaction

More information

The Voice over Mobile Broadband (VoMBB) Market:

The Voice over Mobile Broadband (VoMBB) Market: Brochure More information from http://www.researchandmarkets.com/reports/2155773/ The Voice over Mobile Broadband (VoMBB) Market: 2012 - Description: A relatively new term, Voice over Mobile Broadband

More information

Agilent E7478A GPRS Drive Test System

Agilent E7478A GPRS Drive Test System Agilent E7478A GPRS Drive Test System Product Overview Quickly deploy your GPRS networks and manage multiformat environments Our drive test solution doesn t just uncover problems on your GPRS network it

More information

Cloud Infrastructure and Operations Chapter 2B/8 Page Main concept from which Cloud Computing developed

Cloud Infrastructure and Operations Chapter 2B/8 Page Main concept from which Cloud Computing developed Cloud Infrastructure and Operations Chapter 2B/8 Page 1 Chapter 2: Cloud Layer Setup and Maintenance Topics covered: 2.1 Basic Cloud Computing Concept 2.2 Benefits of Cloud Computing 2.3 Main concept from

More information

Migration and Building of Data Centers in IBM SoftLayer

Migration and Building of Data Centers in IBM SoftLayer Migration and Building of Data Centers in IBM SoftLayer Advantages of IBM SoftLayer and RackWare Together IBM SoftLayer offers customers the advantage of migrating and building complex environments into

More information

Chapter Outline. Chapter 2 Distributed Information Systems Architecture. Distributed transactions (quick refresh) Layers of an information system

Chapter Outline. Chapter 2 Distributed Information Systems Architecture. Distributed transactions (quick refresh) Layers of an information system Prof. Dr.-Ing. Stefan Deßloch AG Heterogene Informationssysteme Geb. 36, Raum 329 Tel. 0631/205 3275 dessloch@informatik.uni-kl.de Chapter 2 Distributed Information Systems Architecture Chapter Outline

More information

Fusion Registry 9 SDMX Data and Metadata Management System

Fusion Registry 9 SDMX Data and Metadata Management System Registry 9 Data and Management System Registry 9 is a complete and fully integrated statistical data and metadata management system using. Whether you require a metadata repository supporting a highperformance

More information