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

Size: px
Start display at page:

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

Transcription

1 ACS 3907 E-Commerce Instructor: Kerry Augustine February 6 th Pearson Education, Inc. Publishing as Prentice Hall 1

2 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

3 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

4 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

5 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

6 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

7 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

8 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

9 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

10 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

11 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

12 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

13 Three-Tier Architecture RPC RPC 2014 Pearson Education, Inc. Publishing as Prentice Hall 13

14 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

15 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

16 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

17 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

18 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

19 Table 4.4, Page Pearson Education, Inc. Publishing as Prentice Hall 19

20 Basic tools Site Management 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 WebTrends Analytics 10, Google Analytics 2014 Pearson Education, Inc. Publishing as Prentice Hall 20

21 WebTrends Analytics 2014 Pearson Education, Inc. Publishing as Prentice Hall 21

22 Dynamic Page Generation Tools Dynamic page generation: Contents stored in database and fetched when needed Common tools: CGI, ASP, JSP, ODBC (Open Database Connectivity) Advantages Lowers menu costs Permits easy online market segmentation Enables cost-free price discrimination Enables content management system (CMS) 2014 Pearson Education, Inc. Publishing as Prentice Hall 22

23 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 23

24 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 24

25 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 25

26 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 26

27 EC Suites: SiteCore 11 (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 27

28 EC Suites: IBM WebSphere Commerce Express: ~$7000 Professional: ~$100K Enterprise: ~$200K 2014 Pearson Education, Inc. Publishing as Prentice Hall 28

29 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 29

30 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 30

31 Scalability: Right-Sizing Your Hardware Platform: The Supply Side 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 31

32 Factors in Web Site Optimization Figure 4.10, Page Pearson Education, Inc. Publishing as Prentice Hall 32

33 Table 4.8, Page Pearson Education, Inc. Publishing as Prentice Hall 33

34 Table 4.9, Page Pearson Education, Inc. Publishing as Prentice Hall 34

35 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 35

36 GSM Cellular system: GSM vs CDMA 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 36

37 3GPP Cellular system: 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 37

38 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 38

39 Architecture of the GSM system GSM is a PLMN (Public Land Mobile Network) Components MS (mobile station/ mobile equipment) Subscriber Identity Module (SIM) BTS (base transceiver station) MSC (mobile switching center) HLR (home location register) VLR (visited location register) EIR (equipment identify register) AUC (authentication centre) Subsystems BSS (base station subsystem) GSM Inter-Working Unit (GIWU): enables users to alternate between speech and data during the same call RSS (radio subsystem): covers all radio aspects NSS (network and switching subsystem): call forwarding, handover, switching OSS (operation subsystem): n/w management 2014 Pearson Education, Inc. Publishing as Prentice Hall 39

40 Architecture of the GSM system "Gsm structures" by Tsaitgaist 2014 Pearson Education, Inc. Publishing as Prentice Hall 40

41 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 41

42 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 42

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

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

ACS 3907 E-Commerce. E-Commerce Design Architecture Part 1. Client/Server Architecture. Instructor: Kerry Augustine February 7 th 2019 ACS 3907 E-Commerce Instructor: Kerry Augustine February 7 th 2019 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

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

Understanding Carrier Wireless Systems

Understanding Carrier Wireless Systems Understanding Course Description This course provides a detailed scope of modern mobile and cellular network technologies used for second generation, 2G+, 3G and 4G networks. It provides an understanding

More information

Basics of GSM in depth

Basics of GSM in depth This document will be helpful for the telecom engineers who deal with GSM as well as for the fresher /interested readers. This document has some advantages over other GSM texts in that it quickly gets

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

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

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

Chapter 2 The 3G Mobile Communications

Chapter 2 The 3G Mobile Communications Chapter 2 The 3G Mobile Communications 2.1 The Vision for Third Generation (3G) Mobile Communication Systems: The vision for the emerging mobile and personal communication services for the new century

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

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

Cellular Communication

Cellular Communication Cellular Communication Cellular Communication Cellular communication is designed to provide communications between two moving units, or between one mobile unit and one stationary phone or land unit (PSTN).

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

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

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

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

Rab Nawaz Jadoon. Cellular Systems - II DCS. Assistant Professor. Department of Computer Science. COMSATS Institute of Information Technology

Rab Nawaz Jadoon. Cellular Systems - II DCS. Assistant Professor. Department of Computer Science. COMSATS Institute of Information Technology Cellular Systems - II Rab Nawaz Jadoon DCS Assistant Professor COMSATS IIT, Abbottabad Pakistan COMSATS Institute of Information Technology Mobile Communication UMTS Architecture A UMTS network consist

More information

Hands-On Modern Mobile and Long Term Evolution LTE

Hands-On Modern Mobile and Long Term Evolution LTE Hands-On LTE Course Description With 3G mobile technologies already rolled out by over 200 operators in over 80 countries, standards bodies, manufacturers and operators are looking towards the next generation

More information

GSM and Mobile Telephony Trends

GSM and Mobile Telephony Trends Review Article AJTL 2018,1:4 American Journal of Transportation and Logistics (DOI:10.28933/AJTL) GSM and Mobile Telephony Trends Damilola Fowora*, Oludele Awodele, Olakunle Olayinka and Oyebode Aduragbemi

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

Dimensioning, configuration and deployment of Radio Access Networks. part 1: General considerations. Mobile Telephony Networks

Dimensioning, configuration and deployment of Radio Access Networks. part 1: General considerations. Mobile Telephony Networks Dimensioning, configuration and deployment of Radio Access Networks. part 1: General considerations Mobile Telephony Networks 1 The Evolution of Mobile Telephony 1st Generation 2nd 3rd 4th Analogue Voice

More information

Security of Cellular Networks: Man-in-the Middle Attacks

Security of Cellular Networks: Man-in-the Middle Attacks Security of Cellular Networks: Man-in-the Middle Attacks Mario Čagalj University of Split 2013/2014. Security in the GSM system by Jeremy Quirke, 2004 Introduction Nowadays, mobile phones are used by 80-90%

More information

E1-E2 UPGRADATION COURSE CONSUMER MOBILITY. 3G Concept

E1-E2 UPGRADATION COURSE CONSUMER MOBILITY. 3G Concept E1-E2 UPGRADATION COURSE CONSUMER MOBILITY 3G Concept Page 1 CHAPTER-TWO 3 G CONCEPT UMTS and the information society Rapid advancements in Information and Communications Technology (ICT) have already

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

AQU Information Systems Fundamentals Spring 2012 Pg. 9.1

AQU Information Systems Fundamentals Spring 2012 Pg. 9.1 AQU Information Systems Fundamentals Spring 2012 Pg. 9.1 c h a p t e r 9 THE INTERNET & THE NEW INFORMATION TECHNOLOGY INFRASTRUCTURE 9.1 LEARNING OBJECTIVES Describe features of infrastructure & connectivity

More information

WELCOME Mobile Applications Testing. Copyright

WELCOME Mobile Applications Testing. Copyright WELCOME Mobile Applications Testing 1 Mobile Applications Testing List of MUST HAVE to survive this class Required Google Drive account Google email Flash Drive Mobile Phone (iphone/android) Desired Have

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

WIRELESS SYSTEM AND NETWORKING

WIRELESS SYSTEM AND NETWORKING LECTURE 6 WIRELESS SYSTEM AND NETWORKING References: Rappaport (Chapter 9 and 10) Bernhard (Chapter 3, 4 and 5) Garg (Chapter 8 and 9) Kaarenen (Chapter 1-5 and 9) WIRELESS EVOLUTION Japan Europe Americas

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

Client Server Programming and GSM Networking Protocols (SS7 Signaling)

Client Server Programming and GSM Networking Protocols (SS7 Signaling) Client Server Programming and GSM Networking Protocols (SS7 Signaling) Synopsis Getting the Right Knowledge to the Right People at the Right Time Our interactive, accelerated learning experience teaches

More information

GLOBAL SYSTEM FOR MOBILE COMMUNICATION (2) ETI2511 Friday, 31 March 2017

GLOBAL SYSTEM FOR MOBILE COMMUNICATION (2) ETI2511 Friday, 31 March 2017 GLOBAL SYSTEM FOR MOBILE COMMUNICATION (2) ETI2511 Friday, 31 March 2017 1 SYLLABUS GSM General architecture and interfaces of cellular system and the PSTN and Internet networks: BTS, MSC, Internetworking,

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

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

GPRS and UMTS T

GPRS and UMTS T GPRS and UMTS T-110.2100 Global Packet Radio Service GPRS uses the time slots not used for circuit switched services Data rate depends on the availability of free time slots GPRS uses the multislot technique,

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

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

wireless networks and mobile computing (COMMON TO CSE AND CS) CONTENTS Classification of Wireless Networks

wireless networks and mobile computing (COMMON TO CSE AND CS) CONTENTS Classification of Wireless Networks i wireless networks and mobile computing FOR m.tech (jntu - hyderabad) i year Ii semester (COMMON TO CSE AND CS) CONTENTS UNIT - I [CH. H. - 1] ] [WIRELESS NETWORKS]... 1.1-1.24 1.1 WIRELESS NETWORK...

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

Client/Server-Architecture

Client/Server-Architecture Client/Server-Architecture Content Client/Server Beginnings 2-Tier, 3-Tier, and N-Tier Architectures Communication between Tiers The Power of Distributed Objects Managing Distributed Systems The State

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

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

Nexus8610 Traffic Simulation System. Intersystem Handover Simulation. White Paper

Nexus8610 Traffic Simulation System. Intersystem Handover Simulation. White Paper Traffic Simulation System Intersystem Handover Simulation White Paper Notice Every effort has been made to ensure that the information in this document was accurate at the time of printing. However, the

More information

Chapter 3 GSM and Similar Architectures

Chapter 3 GSM and Similar Architectures CSF645 Mobile Computing 行動計算 Chapter 3 GSM and Similar Architectures 吳俊興 國立高雄大學資訊工程學系 Chapter 3 GSM and Similar Architectures 3.1 GSM Services and System Architecture 3.2 Radio Interfaces 3.3 Protocols

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

GSM. Course requirements: Understanding Telecommunications book by Ericsson (Part D PLMN) + supporting material (= these slides) GPRS

GSM. Course requirements: Understanding Telecommunications book by Ericsson (Part D PLMN) + supporting material (= these slides) GPRS GSM Example of a PLMN (Public Land Mobile Network) At present most successful cellular mobile system (over 200 million subscribers worldwide) Digital (2 nd Generation) cellular mobile system operating

More information

Magnolia Community Edition vs. Enterprise Edition. Non-Functional Features. Magnolia EE. Magnolia CE. Topic. Good value for money.

Magnolia Community Edition vs. Enterprise Edition. Non-Functional Features. Magnolia EE. Magnolia CE. Topic. Good value for money. Community Edition vs. Enterprise Edition Non-Functional Features Good value for money Enterprise Edition is based on an Open Source business model that minimizes sales effort and cost without sacrificing

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

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

Evolution from GSM to UMTS

Evolution from GSM to UMTS 2 Evolution from GSM to UMTS Evolution is one of the most common terms used in the context of UMTS. Generally it is understood to mean the technical evolution, i.e. how and what kind of equipment and in

More information

Advanced Computer Networks Exercise Session 4. Qin Yin Spring Semester 2013

Advanced Computer Networks Exercise Session 4. Qin Yin Spring Semester 2013 Advanced Computer Networks 263-3501-00 Exercise Session 4 Qin Yin Spring Semester 2013 1 Administration If you haven't received any email about your submission We got your solutions for A1 & A2 About solutions

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

Cellular Mobile Systems and Services (TCOM1010) GSM Architecture

Cellular Mobile Systems and Services (TCOM1010) GSM Architecture GSM Architecture 1 GSM NETWORK INFRASTRUCTURE...2 2 NETWORK SWITCHING SUBSYSTEM (NSS)...3 2.1 Home Location Register...4 2.2 Mobile Switching Center and Visitor Location Register...4 2.3 Authentication

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

Talk 4: WLAN-GPRS Integration for Next-Generation Mobile Data Networks

Talk 4: WLAN-GPRS Integration for Next-Generation Mobile Data Networks Talk 4: WLAN-GPRS Integration for Next-Generation Mobile Data Networks IEEE Wireless Communication, Oct. 2002 Presented by Prof. Yuh-Shyan Chen Department of Computer Science and Information Engineering

More information

Mobile and Sensor Systems

Mobile and Sensor Systems Mobile and Sensor Systems Lecture 2: Mobile Medium Access Control Protocols and Wireless Systems Dr Cecilia Mascolo In this lecture We will describe medium access control protocols and wireless systems

More information

Overview of GPRS and UMTS

Overview of GPRS and UMTS CHAPTER 1 This chapter briefly introduces the 2.5G General Packet Radio Service (GPRS) and the 3G Universal Mobile Telecommunications System (UMTS) technologies, and their implementation in Cisco Gateway

More information

E2-E3: CONSUMER MOBILITY. CHAPTER-5 CDMA x OVERVIEW (Date of Creation: )

E2-E3: CONSUMER MOBILITY. CHAPTER-5 CDMA x OVERVIEW (Date of Creation: ) E2-E3: CONSUMER MOBILITY CHAPTER-5 CDMA 2000 1x OVERVIEW (Date of Creation: 01-04.2011) Page: 1 CDMA 2000 1X Overview Introduction CDMA (code division multiple access) is a mobile digital radio technology

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

IBM WebSphere Commerce Suite

IBM WebSphere Commerce Suite Tools to build a powerful e-commerce site IBM WebSphere Commerce Suite Highlights Helps get e-commerce sites up and running quickly through a store creation wizard and teambased Web development tools Provides

More information

Telecommunication Services Engineering Lab

Telecommunication Services Engineering Lab Logistics Instructor Office: EV006-227, Tel: 1-514-8482424 ext 5846, Email: Glitho@ciiseconcordiaca URL: http://wwwececoncordiaca/~glitho/ Office hours: Friday: 3 pm 5 pm Time: Friday, 17h45-20h15 Room

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

Last time?! Block 3: Lecture 1! Wireless networks! Ingredients 2: Antennas! Ingredients 1: Mobile Phones, PDAs & Co.! 20/05/14. Part 3: lecture 3!

Last time?! Block 3: Lecture 1! Wireless networks! Ingredients 2: Antennas! Ingredients 1: Mobile Phones, PDAs & Co.! 20/05/14. Part 3: lecture 3! 20/05/14 Last time? WiFi Block 3: Lecture 1 Part 3: lecture 3 Wireless s Speed and ranges and channels Specifications DCF mechanisms WiMax Mobile s Ingredients 1: Mobile Phones, PDAs & Co. Ingredients

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

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

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

Architecture. Outline. Review - Alibris. Announcements. What is Architecture? TIM 50 - Business Information Systems. How do you architect a solution?

Architecture. Outline. Review - Alibris. Announcements. What is Architecture? TIM 50 - Business Information Systems. How do you architect a solution? Outline TIM 50 - Business Information Systems Lecture 10 Instructor: Terry Allen UC Santa Cruz 10/28/2011 Announcements Review Alibris Case Study Information Technology Student Presentations -Server Architecture

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

Mastering SOA Challenges more cost-effectively. Bodo Bergmann Senior Software Engineer Ingres Corp.

Mastering SOA Challenges more cost-effectively. Bodo Bergmann Senior Software Engineer Ingres Corp. Mastering SOA Challenges more cost-effectively Bodo Bergmann Senior Software Engineer Ingres Corp. 1 Contents Tell me why? SOA INGRES and SOA SOA Challenges Mastering selected challenges 2 Service-Oriented

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

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

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

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

Mobile Devices & Wireless Security. Jack Jania Director Field Marketing Mobile Communications

Mobile Devices & Wireless Security. Jack Jania Director Field Marketing Mobile Communications Mobile Devices & Wireless Security Jack Jania Director Field Marketing Mobile Communications Agenda Wireless technology trends Smart phone capabilities Converging communication technologies Wireless Network

More information

Mobile Security / /

Mobile Security / / Mobile Security 96-835 / 18-639 / 14-829 Patrick Tague 2 Sept 2010 Class #4 Overview of Mobile/Cellular Systems Agenda Overview of mobile cellular systems System architecture and overview 2G, 2.5G, 2.75G,

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

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

Cellular Networks and Mobility

Cellular Networks and Mobility Cellular Networks and Mobility Daniel Zappala CS 460 Computer Networking Brigham Young University Cellular Networks GSM 2G/3G Architecture 3/20 2G Standard 4/20 GSM: combined FDM/TDM divide into 200 khz

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

Hosting DesktopNow in Amazon Web Services. Ivanti DesktopNow powered by AppSense

Hosting DesktopNow in Amazon Web Services. Ivanti DesktopNow powered by AppSense Hosting DesktopNow in Amazon Web Services Ivanti DesktopNow powered by AppSense Contents Purpose of this Document... 3 Overview... 3 1 Non load balanced Amazon Web Services Environment... 4 Amazon Web

More information

VoLTE: The Next Generation of Voice

VoLTE: The Next Generation of Voice VoLTE: The Next Generation of Voice Introduction Voice over LTE (VoLTE) is no longer just a buzz word in the telecom community but is quickly becoming reality, with implementations appearing around the

More information

NGN: The Evolution of Wireless Networks

NGN: The Evolution of Wireless Networks NGN: The Evolution of Wireless Networks Research Brief Abstract: Operators of mobile phone networks are already working through the financial and technical challenges of their own next generation of networks.

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

About Database Adapters

About Database Adapters About Database Adapters Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. Part No: 820 5069 07/08/08 Copyright 2007 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, CA 95054

More information

Alcatel-Lucent 1357 ULIS

Alcatel-Lucent 1357 ULIS Unified Lawful Interception Suite The adds lawful interception functions to Alcatel-Lucent products, adapting their internal interfaces to the standard lawful interception interfaces of law enforcement

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

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

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

Learning Objectives: Transactions, Systems, and Cost of Ownership. Dell Computer stock price. DELL vs Compaq (1-year)

Learning Objectives: Transactions, Systems, and Cost of Ownership. Dell Computer stock price. DELL vs Compaq (1-year) s, Systems, and Cost of Ownership Copyright IS MBA Core Faculty, 2002 Fundamentals of IT and E-Commerce Fall 2002 - Session 2a Prof. Foster Provost 1 Learning Objectives: Discuss ways IT adds value and

More information

Data Protection for Virtualized Environments

Data Protection for Virtualized Environments Technology Insight Paper Data Protection for Virtualized Environments IBM Spectrum Protect Plus Delivers a Modern Approach By Steve Scully, Sr. Analyst February 2018 Modern Data Protection for Virtualized

More information

OPTIMISING BUILDING PERFORMANCE. 4G-enabled advanced building control systems. Offices. Airports and Hospitals. Warehouses.

OPTIMISING BUILDING PERFORMANCE. 4G-enabled advanced building control systems. Offices. Airports and Hospitals. Warehouses. Solution Partners OPTIMISING BUILDING PERFORMANCE 4G-enabled advanced building control systems Offices Airports and Hospitals Warehouses Manufacturing CONNECT CONTROL COMMUNICATE Building Automation Asset

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

Pertemuan 7 GSM Network. DAHLAN ABDULLAH

Pertemuan 7 GSM Network. DAHLAN ABDULLAH Pertemuan 7 GSM Network DAHLAN ABDULLAH Email : dahlan.unimal@gmail.com Contents GSM-Introduction Architecture Technical Specification & Operation Frame Structure Channels Call Routing Security Characteristics

More information

Publication of specifications for the mobile network interfaces offered by Wind

Publication of specifications for the mobile network interfaces offered by Wind interfaces offered by Wind Page 1/10 Publication of specifications for the mobile network interfaces offered by Wind interfaces offered by Wind Page 2/10 TABLE OF CONTENTS 1. INTRODUCTION 3 2. SCOPE...

More information

SAFEGUARDING YOUR VIRTUALIZED RESOURCES ON THE CLOUD. May 2012

SAFEGUARDING YOUR VIRTUALIZED RESOURCES ON THE CLOUD. May 2012 SAFEGUARDING YOUR VIRTUALIZED RESOURCES ON THE CLOUD May 2012 THE ECONOMICS OF THE DATA CENTER Physical Server Installed Base (Millions) Logical Server Installed Base (Millions) Complexity and Operating

More information

IBM To Resell Cisco Systems MDS 9000 Multilayer Switch and Director Family of Intelligent Storage Networking Products

IBM To Resell Cisco Systems MDS 9000 Multilayer Switch and Director Family of Intelligent Storage Networking Products Hardware Announcement February 17, 2003 IBM To Resell Cisco Systems MDS 9000 Multilayer Switch and Director Family of Intelligent Storage Networking Products Overview IBM announces the availability of

More information

Signaling System 7 (SS7) By : Ali Mustafa

Signaling System 7 (SS7) By : Ali Mustafa Signaling System 7 (SS7) By : Ali Mustafa Contents Types of Signaling SS7 Signaling SS7 Protocol Architecture SS7 Network Architecture Basic Call Setup SS7 Applications SS7/IP Inter-working VoIP Network

More information

Chapter 2 Distributed Information Systems Architecture

Chapter 2 Distributed Information Systems Architecture 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