A Multi-Tenant Framework for Multimedia Conference System

Size: px
Start display at page:

Download "A Multi-Tenant Framework for Multimedia Conference System"

Transcription

1 2013 8th International Conference on Communications and Networking in China (CHINACOM) A Multi-Tenant Framework for Multimedia Conference System Wang Shaofeng,Shang Yanlei,Tian Yue The State Key Lab of Networking and Switching Beijing University of Posts and Telecommunications Beijing,China wangshaofeng1996@gmail.com,shangyl@bupt.edu.cn,tianyue525@gmail.com Abstract Multimedia conference system is becoming increasingly popular among enterprises and government departments by right of its efficiency and cost-saving features. It supports people in different places share audio, video and documents to achieve real-time communication. However, traditional multimedia conference system can t meet users personal and individual needs. Multi-tenancy has been proposed as a solution to the problem. It allows multiple tenants to share a single application instance securely. With a multi-tenant architecture, each tenant works with a customized virtual application instance. In this paper, we design and implement a multi-tenant architecture which supports the system with customizability and scalability. Keywords-multi-tenant; multimedia conference system; SaaS; OpenStack I. INTRODUCTION With the rapid development of economy and the globalization of trade, cross-regional cooperation and communication become more and more frequent. Multimedia conference system well satisfies such demands of people s daily life. It supports individuals or organizations in different places to share audio, video and documents through transmission network and multimedia devices and provides real-time communication. Multimedia conference system has obtained the rapid development with the help of the maturity of Internet application service and the wide spreading of broadband access technology. The existing multimedia conference systems usually support the following functions such as video and audio sharing, chatting, cooperative document handling, electronic whiteboards, desktop sharing, multi point file transfer, and particularly a multicasting communication facility. Our multimedia conference system supports multiple types of terminals, for example, the conference television, telephone, SIP terminal and mobile terminal using different operating system including Symbian, Windows Mobile, MAC OS and Android[1]. With the popularity of the multimedia conference system, more and more users from different fields come to use the multimedia conference system in their daily life. People work in different fields require for personalized and particular services. The unified service system can t satisfy such demands. Multi-tenant technology has been proposed as a solution to the above problem. Multi-tenant is an architecture in which a single instance of a software application serves multiple customers. Each customer is called a tenant. What s important, each customer may include a number of users. Tenants may be given the ability to customize some parts of the application, such as the subscribing the different services of our multimedia conference system, including video and audio sharing, cooperative document handling and so on. There have been a lot of efforts to build multi-tenant frameworks. Motivated by the success of SaaS[2], multi-tenant has wide traction. The multi-tenant approach brings in lots of benefits. With a multi-tenant architecture, service providers have the ability to ensure the lowest cost of service delivery. A multi-tenant infrastructure makes it easy to increase capacity when more horsepower is required, which resulting in improved profit margin for service provider through reduced delivery costs and decreased service subscription costs for clients. This paper design and implement a multi-tenant framework for multimedia conference system. The primary contributions of this paper are the decoupling of the system s modules, which plays as the prerequisite of the system being customized, and the design and implementation of the multi-tenant architecture that enables multiple users to consume their customized services. Rest of the paper is organized as follows. The next section discusses some related works. Section III presents the architecture of the multi-tenant frame in detail. Following Section IV presents the implementation of the system in detail. Some analysis and results in section V. And finally the Section VI concludes the paper. II. RELATED WORK Multi-tenant was first proposed in late 1960s, companies rented space and processing power to reduce computing expenses and they also reused their existing applications, with a separate entry field which can specify their customer account ID. Actually, it s what the Application Service Providers [3] had done make multi-tenant first came to most people's attention. Multi-tenant application is a more mature architecture which enables a similar service with lower operational cost. In a multi-tenant environment, all clients and their users consume the service, running on the same operating IEEE

2 system, on the same hardware, with the same data-storage mechanism. The four-level SaaS maturity model[4] is one of the first discussions that made a significant effect on multi-tenant research. It s used to determine the configurability, multitenant efficiency, and scalability of the application[5]. In Level 1, each tenant has a dedicated server running its instance of the application and is able to customize the installation in the same way as self-hosted applications. While in level 2, the application serves configurable instances to different tenants. Each tenant could configure their own instance. Multi-tenant efficiency to a SaaS application is introduced and emphasized in the Level 3. Each tenant is served by a single instance. Same applications are served to multiple customers who can customize these through configuring a self-service tool. It uses separate metadata to tailor the application that satisfied the needs of each tenant. Level 4 adds scalability to level 3 offering. A load balancer is introduced to maximize the utilization of storage and processing power in this level. It allows creation of new instances and adds them to the dynamic pool of instances, in which way it achieves the target of being scalable. In a multi-tenant enabled service environment, requests from different tenants are served simultaneously by one or more hosted application instances that based on the shared hardware and software infrastructure [6]. There exist two kinds of multi-tenant patterns: multi-tenant as single instance and multiple instances [7]; the former serves many users using the same instance. It supports all tenants by a single shared application instance over various hosting resources whereas the latter serves users by running multiple instance. It supports each tenant with its customized application instance over the same operating system, a shared hardware or a middleware server in a hosting environment. Our proposed solution falls under the multiple instances. III. ARCHITECTURE OF MULTIMEDIA CONFERENCE SYSTEM We have designed and implemented a multi-tenant architecture for multimedia conference system. The framework supports customization, scalability, and sharing of computing resources as showed in Figure 1. We analysis the architecture from the three aspects. Figure1 The architecture of multimedia conference system A. The VM Calculator This model comprises three approaches which take advantage of the multi-tenant nature of SaaS applications in order to improve the workload distribution and instantiate the number of cloud resources that are really needed. The first approach is the authentication which verifies the users legitimacy. The second approach is the customization which provides users a subscription interface to execute the customization. The third approach would be the VM allocation. We have developed and implemented a mechanism to figure out which VM instance tenants should link to, by given a list of instances and their capability details. The Authentication Get the access point for a SaaS platform and its deployed applications is the first step before we could consume the service. We have developed a web application with specific characteristics for managing authentication, security and access list control. Once the user has been authenticated using username and password, the web application creates a session cookie with all this information and stores it within the user session. In this way, each user is linked to this information session and all subsequent requests are identified through this session cookie. The Customization Once the users have been authenticated, they arrive at the customization module, which presented two choices: create a conference or join in an existing conference. In this module, users could custom the services they need by specific metadata or join in a customized conference. The more details will be showed in the next section. The VM allocation Each tenant has its own service requirements depending on the number of its active users and the applications that are accessed. In order to assign values for virtual machine (VM) allocation, a profile-based approach, which was first proposed by Y. Jie[8], is used in our system. The profile describes the topology and characteristics of the deployed virtual instance cloud and server cluster. Based on the metadata that tenant has submitted, we could calculate what characteristics the virtual machine should contain, and then locate the specific instance provides the service tenant wants to custom according to the profile. B. The Instance Manager Layer OpenStack is an Infrastructure as a Service (IaaS) cloud computing project that is free open source software released under the terms of the Apache License. The project aims to deliver solutions for all types of clouds by being simple to implement, massively scalable, and feature rich. The technology consists of a series of interrelated projects delivering various components for a cloud infrastructure solution. This cloud platform will allow create on-demand virtual machines over a hardware infrastructure and deploy the system presented previously. The multimedia conference system is a Tomcat-based architecture, so it is possible to distribute one Tomcat instance per VM thus enabling scalability based on the number of users. It is 162

3 necessary to create on demand VMs for each Tomcat instance we want to deploy. Thus, it a VM image was created with the multimedia conference system to be deployed within each VM. This creation was performed through OpenStack API. Also, OpenStack provide the interface to manage all the VMs, users could custom their horizon using the dashboard module provided by OpenStack. C. The Data Store Layer There are two types of data involved in our system, the metadata and the business data. The metadata is used to tailor the instance to the needs of each tenant while the business data is produced and needed during the conferencing time. IV. IMPLEMENTATION OF THE MULTIMEDIA CONFERENCE SYSTEM The multi-tenant architecture of multimedia conference system is implemented by the two part of work: the implementation of the core web application and the conference servers cluster management. A. The Core Web Application The core web application is a web application with specific characteristics for managing tenant-based authentication, security and access list control. It creates tenant-level granularity and separates execution contexts for different tenants. It contains three modules as described above. When user comes to register and use our system, he will experience the states as showed in Figure 2. Figure 2 the state user experiences a) Login View: This is the first view of the system. User comes to the login page and enters the username, password and verification code, and then requests for authorization. When the server receives the request, it queries the database to get the user s authority. Once the user verified to be valid, the server will create a session cookie with all this information and store it within the user session cookie. All the user s subsequent requests would be identified through this session cookie. b) Welcome View: When user has been signed, he comes to this page. This module provides create a conference and join in a conference functions. Users can select create a conference to book a conference. By selecting join a conference users can check the database to get the conference information. c) Customization View: If user clicks the button to create a conference, the customization view showed in Figure 3 appears. Figure 3 View of the customization There are many parameters users need to assign in the customization form. Some of them effect the allocation of the VM. That s the so-called metadata, including the screensize, screenresolution, resolutiondetail, confstyle, requiredatashare, datasharestyle, requirechat. Users custom their special services by selecting different metadata. What should be noted is that the participants of the customized conference are also provided. As we know, a tenant is a customer that uses or provides a SaaS application. In our system, a tenant is a customer of conference service. It includes all the members of the conference including the chairman and participants. d) VM Allocation: This is the core module of the web application. First, we read out the data send by users and then pick out the metadata. We could find out users requirement about the VM capability according to the metadata. An important thing we should do in the preparatory period is that we should have figured out the capability of each VM instance. Actually, we maintain a table called instanceinfo in the database. It contains the information of all VM instances in our cluster. Each record represents one instance and it is identified by a unique id. The record also contains the following fields: the VM location and the capability of the instance. In this way, we can check all the information in database. We compare the result that figure out by the metadata and the capability of each instance listed in instanceinfo table. And then, we could get one record that matches user s requirement best. Finally, we send the value of the VM location field to user as a response. e) Query Conf Msg: When user clicks the button to join an existing conference, he sends a request to the server to check whether he is contained by an active conference. If he is, the server would response the VM location. Otherwise, the server would return none. As described in section c), When some customs a conference, he select the participants at the same time. And the list of the participants would store in database when the server 163

4 executes the VM allocation. The list is needed in this module. When users choose to join a conference, they would firstly query the database by his unique Id to know whether they are contained in an active conference. If they are, they could locate the conference Id and which VM it belongs to, and then they just need to link to the VM and join in the conference. No matter user chooses creating a conference or joining into a conference, he will receive a string contains the instance location. And then the user simply redirects to the instance and consumes the subsequent conference services offered by the correct VM instance. B. The Conference Servers Custer Management We use OpenStack as the management portal. We have deployed the OpenStack environment and tested the multimedia conference system. There are 4 servers in our cluster, a controller node, a network node and two computer nodes. The network node manages the network of the cluster while the controller node manages all the nodes. We have created several VM instances over the computer nodes. Each instance runs a particular multimedia conference system application. We have also installed the dashboard provided by the OpenStack on the controller node. The dashboard module is a reference implementation of a Django site that uses the horizon app to provide web-based interactions with the various OpenStack projects. Figure4 shows the default horizon after we login the dashboard. It supports user create, start, suspend, shutdown, remove an instance whenever it s needed. Figure 4 The dashboardview of OpenStack V. EXPERIMENTS AND EVALUATION After setting up the tenant-based components and deploying them into the Tomcat container, we have conducted a series of experiments. We analysis and evaluate the result in the two ways: the data interaction analysis and the conference interface demonstrate. A. The Data Interaction Analysis The purpose of the data interaction analysis is to verify the effect of the customization module. We analysis the interaction from the three aspects: HTTP connect, data transmit and receive. We could check the data flow from users request to the server s response in the help of the chrome debugger. We send a request to custom a conference to the server, and get the information showed in Figure4. Figure 5The data interaction of customization It can be seen from the Headers tab that the HTTP connection has been established normally, and the Form Data is what we have subscribed in the customization view. When the server receive that request, it read out the form data and format the response, which we have discussed in the formal section, and then response to user. The Response tab shows the data we received from the server. The data is in consistency with the result we are looking forward. It is the location of the VM instance in which our scheduled conference was. When we send a request to join in a conference, we also get the similar information as above. Hence we can make sure that the customization module is working smoothly. B. The Conference Interface Demonstrate Users custom the conference successfully and they do get the important information about the conference location as described above. But whether they are serviced by the correct VM instance is not sure. The purpose of the experiments is to demonstrate users are services by the correct instance they ask for. Two types of customizations are showed in Figure 6. Figure 6The different customizations of conference 164

5 The two pictures are captured during conferences time. The left has big video screen size and the screen is split into 6 sections while the right has a small video screen and its screen is split into 4 sections. What s more, the right one also contains a data share field, where users can share documents and desktop and draw something free on the electronic whiteboard cooperatively. The two customizations use the metadata as showed in table1. screen size TABLE1 THE METADATA CHOICE screen resolution conf style require datashare require chat left big high 6split no yes right small standard 4split yes yes Different customization is corresponding to different services. Figure6 just list two of them. We have designed a series of customizations and deployed them over the OpenStack platform. We have designed and implemented a multi-tenant architecture supports with configurability and scalability. Users can custom services on-demand and developers can easily extend the system to meet users special requirements. VI. CONCLUSION Multimedia conference technology has made a great success and multimedia conference system provides a quick and convenient communication way, but the existing multimedia conference can t meet the demands of individuation. In this paper, we have designed and implemented a multi-tenant architecture based on multimedia conference system which supports the system with customizability and scalability. A key promise of multi-tenant is improved utilization. In order to achieve optimal utilization it is necessary for the system to scale elastically. In our work, we make good use of the feature of OpenStack being simple to implement, massively scalable and easy to manage and maintain, which optimally improved the utilization. Resource allocation has a significant impact in cloud computing, especially in pay-per-use deployments where the number of resources is charged to application providers. As further research of the multi-tenant architecture based on the multimedia conference system, we recommend some work to be done to improve and continue validating the proposed solution. It is recommendable to add a load balancer module into the core web application. What s more, not only the capacity of the VM, but also other kind of resources can be defined to be metered to load balance such as bandwidth, storage, transferred data or database connectivity. ACKNOWLEDGMENT We would like to thank Zhang Yundu, Weng Meizhen, Yang Nan and Lei Xiaojiang for their assistance and comments. The work presented in this paper is supported by the National Grand Fundamental Research 973 Program of China (2011CB302506), the National Key Technology Research and Development Program of China Research on the mobile community cultural service aggregation supporting technology (2012BAH94F02), and the Novel Mobile Service Control Network Architecture and Key Technologies (2010ZX ). REFERENCES [1] Jingjing, Ha, et al. "The Design and Implementation of Multimedia Conference Mobile Terminal Application." Wireless Communications Networking and Mobile Computing (WiCOM), th International Conference on. IEEE, [2] M. Turner, D. Budgen, and P. Brereton, Turning software into a service, Computer, pp , [3] L.Tao, Shifting Paradigms with the Application Service Provider Model, IEEE Computer Society. Computer, vol. 34,pp [4] Chong, Frederick, and Gianpaolo Carraro. "Architecture strategies for catching the long tail." MSDN Library, Microsoft Corporation (2006): [5] Pathirage, Milinda, et al. "A multi-tenant architecture for business process executions." Web Services (ICWS), 2011 IEEE International Conference on. IEEE, [6] Guo, Chang Jie, et al. "A framework for native multi-tenancy application development and management." E-Commerce Technology and the 4th IEEE International Conference on Enterprise Computing, E-Commerce, and E-Services, CEC/EEE The 9th IEEE International Conference on. IEEE, 2007 [7] Espadas, Javier, et al. "A tenant-based resource allocation model for scaling Software-as-a-Service applications over cloud computing infrastructures." Future Generation Computer Systems 29.1 (2013): [8] Jie, Yang, Qiu Jie, and Li Ying. "A profile-based approach to just-intime scalability for cloud applications." Cloud Computing, CLOUD'09. IEEE International Conference on. IEEE,

Multitenant Software as a Service: Application Development Approach

Multitenant Software as a Service: Application Development Approach Multitenant Software as a Service: Application Development Approach Suhas Gajakosh 1, Mukta Takalikar 2 Abstract Software as a Service (SaaS) is bringing new revolution to IT industry. SaaS has changed

More information

Abstract. Keywords. 1. Introduction. Suhas Gajakosh 1,Mukta Takalikar 2

Abstract. Keywords. 1. Introduction. Suhas Gajakosh 1,Mukta Takalikar 2 Multitenant Software as a Service: Application Development Approach Suhas Gajakosh 1,Mukta Takalikar 2 Abstract Software as a Service (SaaS) is bringing new revolution to IT industry. SaaS has changed

More information

CHEM-E Process Automation and Information Systems: Applications

CHEM-E Process Automation and Information Systems: Applications CHEM-E7205 - Process Automation and Information Systems: Applications Cloud computing Jukka Kortela Contents What is Cloud Computing? Overview of Cloud Computing Comparison of Cloud Deployment Models Comparison

More information

Bringing OpenStack to the Enterprise. An enterprise-class solution ensures you get the required performance, reliability, and security

Bringing OpenStack to the Enterprise. An enterprise-class solution ensures you get the required performance, reliability, and security Bringing OpenStack to the Enterprise An enterprise-class solution ensures you get the required performance, reliability, and security INTRODUCTION Organizations today frequently need to quickly get systems

More information

Course Overview This five-day course will provide participants with the key knowledge required to deploy and configure Microsoft Azure Stack.

Course Overview This five-day course will provide participants with the key knowledge required to deploy and configure Microsoft Azure Stack. [MS20537]: Configuring and Operating a Hybrid Cloud with Microsoft Azure Stack Length : 5 Days Audience(s) : IT Professionals Level : 300 Technology : Azure Delivery Method : Instructor-led (Classroom)

More information

Security Guide Zoom Video Communications Inc.

Security Guide Zoom Video Communications Inc. Zoom unifies cloud video conferencing, simple online meetings, group messaging, and a softwaredefined conference room solution into one easy-to-use platform. Zoom offers the best video, audio, and wireless

More information

Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager

Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager Setting Up Resources in VMware Identity Manager (SaaS) You can find the most up-to-date technical documentation

More information

<Placeholder cover we will adjust> Microsoft Azure Stack Licensing Guide (end customers)

<Placeholder cover we will adjust> Microsoft Azure Stack Licensing Guide (end customers) Microsoft Azure Stack Licensing Guide (end customers) August 2017 Introduction This licensing guide is for people who would like to gain a basic understanding of how

More information

Network Implications of Cloud Computing Presentation to Internet2 Meeting November 4, 2010

Network Implications of Cloud Computing Presentation to Internet2 Meeting November 4, 2010 Network Implications of Cloud Computing Presentation to Internet2 Meeting November 4, 2010 Lou Topfl Director, New Technology Product Development Engineering AT&T Agenda What is the Cloud? Types of Cloud

More information

Deployment Scheme of Video Conferencing MCU Based on OpenStack Haifeng Han a, Jianxin Song b

Deployment Scheme of Video Conferencing MCU Based on OpenStack Haifeng Han a, Jianxin Song b 2nd International Conference on Computer Engineering, Information Science & Application Technology (ICCIA 2017) Deployment Scheme of Video Conferencing MCU Based on OpenStack Haifeng Han a, Jianxin Song

More information

Authentication and Authorization of End User in Microservice Architecture

Authentication and Authorization of End User in Microservice Architecture Journal of Physics: Conference Series PAPER OPEN ACCESS Authentication and Authorization of End User in Microservice Architecture To cite this article: Xiuyu He and Xudong Yang 2017 J. Phys.: Conf. Ser.

More information

Construction and Application of Cloud Data Center in University

Construction and Application of Cloud Data Center in University International Conference on Logistics Engineering, Management and Computer Science (LEMCS 2014) Construction and Application of Cloud Data Center in University Hong Chai Institute of Railway Technology,

More information

TECHNICAL WHITE PAPER DECEMBER 2017 VMWARE HORIZON CLOUD SERVICE ON MICROSOFT AZURE SECURITY CONSIDERATIONS. White Paper

TECHNICAL WHITE PAPER DECEMBER 2017 VMWARE HORIZON CLOUD SERVICE ON MICROSOFT AZURE SECURITY CONSIDERATIONS. White Paper TECHNICAL WHITE PAPER DECEMBER 2017 VMWARE HORIZON CLOUD SERVICE ON MICROSOFT AZURE SECURITY CONSIDERATIONS White Paper Table of Contents Executive Summary... 3 Audience.... 3 Introduction.... 3 Architecture....

More information

Software as a Service (SaaS) Platform as a Service (PaaS) Infrastructure as a Service (IaaS)

Software as a Service (SaaS) Platform as a Service (PaaS) Infrastructure as a Service (IaaS) Cloud computing is the present fast developing purpose built architecture created to support computer users. The cloud addresses three main areas of operation: Software as a Service (SaaS) Platform as

More information

Multi-Tenant SQL. Presented by Eddy Kleinjan. How to handle multi-tenancy in applications. Are you ready to take your application to the next level?

Multi-Tenant SQL. Presented by Eddy Kleinjan. How to handle multi-tenancy in applications. Are you ready to take your application to the next level? Multi-Tenant SQL Presented by Eddy Kleinjan How to handle multi-tenancy in applications. Are you ready to take your application to the next level? SaaS: Software as a Service "Software deployed as a hosted

More information

A NOVEL MULTI-TENANT ARCHITECTURE DESIGN FOR SOFTWARE AS A SERVICE APPLICATIONS

A NOVEL MULTI-TENANT ARCHITECTURE DESIGN FOR SOFTWARE AS A SERVICE APPLICATIONS A NOVEL MULTI-TENANT ARCHITECTURE DESIGN FOR SOFTWARE AS A SERVICE APPLICATIONS Haitham Yaish, Madhu Goyal and George Feuerlicht 1,2 1 Faculty of Engineering and Information Technology, University of Technology,

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

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

Sentinet for Microsoft Azure SENTINET

Sentinet for Microsoft Azure SENTINET Sentinet for Microsoft Azure SENTINET Sentinet for Microsoft Azure 1 Contents Introduction... 2 Customer Benefits... 2 Deployment Topologies... 3 Cloud Deployment Model... 3 Hybrid Deployment Model...

More information

Introduction to Cloud Computing. [thoughtsoncloud.com] 1

Introduction to Cloud Computing. [thoughtsoncloud.com] 1 Introduction to Cloud Computing [thoughtsoncloud.com] 1 Outline What is Cloud Computing? Characteristics of the Cloud Computing model Evolution of Cloud Computing Cloud Computing Architecture Cloud Services:

More information

Vendor: HP. Exam Code: HP0-D31. Exam Name: Designing HP Data Center and Cloud Solutions. Version: Demo

Vendor: HP. Exam Code: HP0-D31. Exam Name: Designing HP Data Center and Cloud Solutions. Version: Demo Vendor: HP Exam Code: HP0-D31 Exam Name: Designing HP Data Center and Cloud Solutions Version: Demo QUESTION 1 Which tool uses what-if scenarios and price-to-performance tradeoffs to provide valid, supported

More information

The Design Of Private Cloud Platform For Colleges And Universities Education Resources Based On Openstack. Guoxia Zou

The Design Of Private Cloud Platform For Colleges And Universities Education Resources Based On Openstack. Guoxia Zou 4th National Conference on Electrical, Electronics and Computer Engineering (NCEECE 2015) The Design Of Private Cloud Platform For Colleges And Universities Education Resources Based On Openstack Guoxia

More information

Chapter 4. Fundamental Concepts and Models

Chapter 4. Fundamental Concepts and Models Chapter 4. Fundamental Concepts and Models 4.1 Roles and Boundaries 4.2 Cloud Characteristics 4.3 Cloud Delivery Models 4.4 Cloud Deployment Models The upcoming sections cover introductory topic areas

More information

ZeroStack Quick Start Guide

ZeroStack Quick Start Guide Self Driving Cloud @ZeroStackInc sales@zerostack.com www.zerostack.com ZeroStack Quick Start Guide Version 2.0 Copyright 2016 ZeroStack, Inc. All rights reserved. This product is protected by U.S. and

More information

Cloud Computing and Cloud Networking

Cloud Computing and Cloud Networking Cloud Computing and Cloud Networking Dr. Adel Nadjaran Toosi Cloud Computing and Distributed Systems (CLOUDS) Laboratory, School of Computing and Information Systems The University of Melbourne, Australia

More information

Open Telekom Cloud Tutorial: Getting Started. Date published: Estimated reading time: 20 minutes Authors: Editorial Team

Open Telekom Cloud Tutorial: Getting Started. Date published: Estimated reading time: 20 minutes Authors: Editorial Team Date published: 03.08.2018 Estimated reading time: 20 minutes Authors: Editorial Team The bookmarks and navigation in this tutorial are optimized for Adobe Reader. Getting Started 1. Introduction 2. Prerequisites

More information

Switch to Parallels Remote Application Server and Save 60% Compared to Citrix XenApp

Switch to Parallels Remote Application Server and Save 60% Compared to Citrix XenApp Switch to Parallels Remote Application Server and Save 60% Compared to Citrix XenApp White Paper Parallels Remote Application Server 2017 Table of Contents Executive Summary... 3 Introduction... 4 Who

More information

OPENSTACK PRIVATE CLOUD WITH GITHUB

OPENSTACK PRIVATE CLOUD WITH GITHUB OPENSTACK PRIVATE CLOUD WITH GITHUB Kiran Gurbani 1 Abstract Today, with rapid growth of the cloud computing technology, enterprises and organizations need to build their private cloud for their own specific

More information

Cloud Computing introduction

Cloud Computing introduction Cloud and Datacenter Networking Università degli Studi di Napoli Federico II Dipartimento di Ingegneria Elettrica e delle Tecnologie dell Informazione DIETI Laurea Magistrale in Ingegneria Informatica

More information

Building a Secure and Compliant Cloud Infrastructure. Ben Goodman Principal Strategist, Identity, Compliance and Security Novell, Inc.

Building a Secure and Compliant Cloud Infrastructure. Ben Goodman Principal Strategist, Identity, Compliance and Security Novell, Inc. Building a Secure and Compliant Cloud Infrastructure Ben Goodman Principal Strategist, Identity, Compliance and Security Novell, Inc. Why Are We Here? Expanded Enterprise Data access anywhere, anytime

More information

Introduction to Cloud Computing

Introduction to Cloud Computing Introduction to Cloud Computing Nabil Abdennadher nabil.abdennadher@hesge.ch 2017/2018 1 Plan Context Definition Market Cloud service models Cloud deployments models Key drivers to adopting the Cloud Barriers

More information

Massive Scalability With InterSystems IRIS Data Platform

Massive Scalability With InterSystems IRIS Data Platform Massive Scalability With InterSystems IRIS Data Platform Introduction Faced with the enormous and ever-growing amounts of data being generated in the world today, software architects need to pay special

More information

The End of Storage. Craig Nunes. HP Storage Marketing Worldwide Hewlett-Packard

The End of Storage. Craig Nunes. HP Storage Marketing Worldwide Hewlett-Packard The End of Storage as you Know It Craig Nunes HP Storage Marketing Worldwide Hewlett-Packard CLOUD: NOT IF BUT WHEN MASSIVE POTENTIAL MARKET POTENTIALLY DISRUPTIVE Cloud Services Market Traditional infrastructure

More information

What is MobiKEY? Definitions

What is MobiKEY? Definitions MAP User Guide Table of Contents What is MobiKEY?... 4 Definitions... 4 MAP: Setting up IT Administration for Success... 5 Benefits of MAP... 5 MAP Reports Module... 5 Setting up your MAP Account... 6

More information

IaaS Integration Guide

IaaS Integration Guide FUJITSU Software Enterprise Service Catalog Manager V16.1.0 IaaS Integration Guide Windows(64) B1WS-1259-02ENZ0(00) September 2016 Preface Purpose of This Document This document explains the introduction

More information

5.6 WEB CONFERENCING SERVICE (WCS) (L )

5.6 WEB CONFERENCING SERVICE (WCS) (L ) 5.6 WEB CONFERENCING SERVICE (WCS) (L.34.1.5) Qwest s Networx WCS uses a simple online interface to conduct live interactive meetings and deliver high-impact presentations, demonstrations and training

More information

Demystifying the Cloud With a Look at Hybrid Hosting and OpenStack

Demystifying the Cloud With a Look at Hybrid Hosting and OpenStack Demystifying the Cloud With a Look at Hybrid Hosting and OpenStack Robert Collazo Systems Engineer Rackspace Hosting The Rackspace Vision Agenda Truly a New Era of Computing 70 s 80 s Mainframe Era 90

More information

5.6 WEB CONFERENCING SERVICE (WCS) (L )

5.6 WEB CONFERENCING SERVICE (WCS) (L ) 5.6 WEB CONFERENCING SERVICE (WCS) (L.34.1.5) Qwest s Networx WCS uses a simple online interface to conduct live interactive meetings and deliver high-impact presentations, demonstrations and training

More information

XenApp 7.x on Oracle Cloud Infrastructure

XenApp 7.x on Oracle Cloud Infrastructure 2018-032 XenApp 7.x on Oracle Cloud Infrastructure OUT OF BAND DEPLOYMENT GUIDE CITRIX SYSTEMS, INC. Citrix.com 1 Deploying Citrix Cloud XenApp and XenDesktop Service with Oracle Cloud Infrastructure Deploying

More information

eservices Multitenancy and Load Balancing Guide eservices 8.1.4

eservices Multitenancy and Load Balancing Guide eservices 8.1.4 eservices Multitenancy and Load Balancing Guide eservices 8.1.4 5/4/2018 Table of Contents eservices Multi-tenancy and Load Balancing Guide 3 Multi-Tenancy 4 Configuration 5 Limitations 7 Load Balancing

More information

SOFTWARE ANALYSIS FOR SETTING UP A UNIFIED COMMUNICATION SYSTEM

SOFTWARE ANALYSIS FOR SETTING UP A UNIFIED COMMUNICATION SYSTEM Int. J. Chem. Sci.: 14(S3), 2016, 710-718 ISSN 0972-768X www.sadgurupublications.com SOFTWARE ANALYSIS FOR SETTING UP A UNIFIED COMMUNICATION SYSTEM LAVIN KHANDELWAL and K. V. N. KAVITHA * School of Electronics

More information

Computer Life (CPL) ISSN: Simulation and Implementation of Cloud Computing Based on CloudSim

Computer Life (CPL) ISSN: Simulation and Implementation of Cloud Computing Based on CloudSim Computer Life (CPL) ISSN: 1819-4818 DELIVERING QUALITY SCIENCE TO THE WORLD Simulation and Implementation of Cloud Computing Based on CloudSim Wenjie Xu a, *, Longye Tang College of Science, Shandong Jiaotong

More information

Course Description. Audience. Prerequisites. At Course Completion

Course Description. Audience. Prerequisites. At Course Completion Module Title : Course 20336A: Core Solutions of Microsoft Lync Server 2013 Duration : 5 days Course Description This instructor-led course teaches IT professionals how to plan, design, deploy, configure,

More information

ANALYSIS OF SaaS MULTI-TENANT DATABASE IN A CLOUD ENVIRONMENT

ANALYSIS OF SaaS MULTI-TENANT DATABASE IN A CLOUD ENVIRONMENT ANALYSIS OF SaaS MULTI-TENANT DATABASE IN A CLOUD ENVIRONMENT Maram Hassan AlAlwan Alalwan.maram@gmail.com Soha S. Zaghloul smekki@ksu.edu.sa College of Computer and Information Science Department of Computer

More information

Journey to the Cloud Next Generation Infrastructure for the future workforce.

Journey to the Cloud Next Generation Infrastructure for the future workforce. Journey to the Cloud Next Generation Infrastructure for the future workforce. Steven J. Davis Managing Director Infrastructure Consulting ASEAN Accenture What is the Internet & Cloud The Internet traditionally

More information

A Fast and High Throughput SQL Query System for Big Data

A Fast and High Throughput SQL Query System for Big Data A Fast and High Throughput SQL Query System for Big Data Feng Zhu, Jie Liu, and Lijie Xu Technology Center of Software Engineering, Institute of Software, Chinese Academy of Sciences, Beijing, China 100190

More information

VMware Identity Manager Cloud Deployment. Modified on 01 OCT 2017 VMware Identity Manager

VMware Identity Manager Cloud Deployment. Modified on 01 OCT 2017 VMware Identity Manager VMware Identity Manager Cloud Deployment Modified on 01 OCT 2017 VMware Identity Manager You can find the most up-to-date technical documentation on the VMware Web site at: https://docs.vmware.com/ The

More information

VMware Identity Manager Cloud Deployment. DEC 2017 VMware AirWatch 9.2 VMware Identity Manager

VMware Identity Manager Cloud Deployment. DEC 2017 VMware AirWatch 9.2 VMware Identity Manager VMware Identity Manager Cloud Deployment DEC 2017 VMware AirWatch 9.2 VMware Identity Manager You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Setting Up Resources in VMware Identity Manager (On Premises) Modified on 30 AUG 2017 VMware AirWatch 9.1.1

Setting Up Resources in VMware Identity Manager (On Premises) Modified on 30 AUG 2017 VMware AirWatch 9.1.1 Setting Up Resources in VMware Identity Manager (On Premises) Modified on 30 AUG 2017 VMware AirWatch 9.1.1 Setting Up Resources in VMware Identity Manager (On Premises) You can find the most up-to-date

More information

<Placeholder cover we will adjust> Microsoft Azure Stack Licensing Guide (Hosters and service providers)

<Placeholder cover we will adjust> Microsoft Azure Stack Licensing Guide (Hosters and service providers) Microsoft Azure Stack Licensing Guide (Hosters and service providers) Introduction This licensing guide is for people who would like to gain a basic understanding of

More information

Part2: Let s pick one cloud IaaS middleware: OpenStack. Sergio Maffioletti

Part2: Let s pick one cloud IaaS middleware: OpenStack. Sergio Maffioletti S3IT: Service and Support for Science IT Cloud middleware Part2: Let s pick one cloud IaaS middleware: OpenStack Sergio Maffioletti S3IT: Service and Support for Science IT, University of Zurich http://www.s3it.uzh.ch/

More information

VMware Identity Manager Administration. MAY 2018 VMware Identity Manager 3.2

VMware Identity Manager Administration. MAY 2018 VMware Identity Manager 3.2 VMware Identity Manager Administration MAY 2018 VMware Identity Manager 3.2 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

Elastic Load Balance. User Guide. Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD.

Elastic Load Balance. User Guide. Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 01 Date 2018-04-30 HUAWEI TECHNOLOGIES CO., LTD. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of

More information

5 OAuth Essentials for API Access Control

5 OAuth Essentials for API Access Control 5 OAuth Essentials for API Access Control Introduction: How a Web Standard Enters the Enterprise OAuth s Roots in the Social Web OAuth puts the user in control of delegating access to an API. This allows

More information

for Higher Education Video Streaming & Digital Content Management

for Higher Education Video Streaming & Digital Content Management R for Higher Education Video Streaming & Digital Content Management www.inventivetec.com MediaCAST Platform How Does It Work? MediaCAST centralizes and manages the storage and delivery of your existing

More information

"Charting the Course to Your Success!" MOC B Core Solutions of Microsoft Lync Server 2013 Course Summary

Charting the Course to Your Success! MOC B Core Solutions of Microsoft Lync Server 2013 Course Summary MOC 20336 B Core Solutions of Microsoft Lync Course Summary Description This instructor-led course teaches IT professionals how to plan, design, deploy, configure, and administer a Microsoft Lync solution.

More information

20537A: Configuring and Operating a Hybrid Cloud with Microsoft Azure Stack

20537A: Configuring and Operating a Hybrid Cloud with Microsoft Azure Stack 20537A: Configuring and Operating a Hybrid Cloud with Course Details Course Code: Duration: Notes: 20537A 5 days Elements of this syllabus are subject to change. About this course This five-day course

More information

5 OAuth EssEntiAls for APi AccEss control layer7.com

5 OAuth EssEntiAls for APi AccEss control layer7.com 5 OAuth Essentials for API Access Control layer7.com 5 OAuth Essentials for API Access Control P.2 Introduction: How a Web Standard Enters the Enterprise OAuth s Roots in the Social Web OAuth puts the

More information

Core Solutions of Microsoft Lync Server 2013

Core Solutions of Microsoft Lync Server 2013 Course 20336B: Core Solutions of Microsoft Lync Server 2013 Page 1 of 8 Core Solutions of Microsoft Lync Server 2013 Course 20336B: 4 days; Instructor-Led Introduction This instructor-led course teaches

More information

Orchestrating the Cloud Infrastructure using Cisco Intelligent Automation for Cloud

Orchestrating the Cloud Infrastructure using Cisco Intelligent Automation for Cloud Orchestrating the Cloud Infrastructure using Cisco Intelligent Automation for Cloud 2 Orchestrate the Cloud Infrastructure Business Drivers for Cloud Long Provisioning Times for New Services o o o Lack

More information

Using the IBM DS8870 in an OpenStack Cloud Environment IBM Redbooks Solution Guide

Using the IBM DS8870 in an OpenStack Cloud Environment IBM Redbooks Solution Guide Using the IBM DS8870 in an OpenStack Cloud Environment IBM Redbooks Solution Guide OpenStack is being developed as an industry standard cloud-computing project. It was started by Rackspace Cloud and NASA

More information

Keep Calm and Call On! IBM Sametime Communicate Softphone Made Simple. Frank Altenburg, IBM

Keep Calm and Call On! IBM Sametime Communicate Softphone Made Simple. Frank Altenburg, IBM Keep Calm and Call On! IBM Sametime Communicate Softphone Made Simple Frank Altenburg, IBM Agenda Voice and Video an effective way to do business! Sametime Softphone Computer is your phone! Sametime Voice

More information

A Design of the Conceptual Architecture for a Multitenant SaaS Application Platform

A Design of the Conceptual Architecture for a Multitenant SaaS Application Platform A Design of the Conceptual Architecture for a Multitenant SaaS Application Platform Sungjoo Kang 1, Sungwon Kang 2, Sungjin Hur 1 Software Service Research Team, Electronics and Telecommunications Research

More information

Assistant Professor, School of Computer Applications,Career Point University,Kota, Rajasthan, India Id

Assistant Professor, School of Computer Applications,Career Point University,Kota, Rajasthan, India  Id International Journal of Scientific Research in Computer Science, Engineering and Information Technology 2018 IJSRCSEIT Volume 3 Issue 7 ISSN : 2456-3307 An Architectural Framework of Cloud Computing behind

More information

VMware Identity Manager Connector Installation and Configuration (Legacy Mode)

VMware Identity Manager Connector Installation and Configuration (Legacy Mode) VMware Identity Manager Connector Installation and Configuration (Legacy Mode) VMware Identity Manager This document supports the version of each product listed and supports all subsequent versions until

More information

Genomics on Cisco Metacloud + SwiftStack

Genomics on Cisco Metacloud + SwiftStack Genomics on Cisco Metacloud + SwiftStack Technology is a large component of driving discovery in both research and providing timely answers for clinical treatments. Advances in genomic sequencing have

More information

Service Graph Design with Cisco Application Centric Infrastructure

Service Graph Design with Cisco Application Centric Infrastructure White Paper Service Graph Design with Cisco Application Centric Infrastructure 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public Information. Page 1 of 101 Contents Introduction...

More information

HC Skype for Business Product Datasheet

HC Skype for Business Product Datasheet HOSTING CONTROLLER CLOUD AUTOMATION SOLUTION HC Skype for Business Product Datasheet 01 What is HC Skype for Business? HC Skype for Business provides an all-inclusive web interface to the provisioning

More information

Cloud + Big Data Putting it all Together

Cloud + Big Data Putting it all Together Cloud + Big Data Putting it all Together Even Solberg 2009 VMware Inc. All rights reserved 2 Big, Fast and Flexible Data Big Big Data Processing Fast OLTP workloads Flexible Document Object Big Data Analytics

More information

Microsoft Core Solutions of Microsoft Lync Server 2013

Microsoft Core Solutions of Microsoft Lync Server 2013 1800 ULEARN (853 276) www.ddls.com.au Microsoft 20336 - Core Solutions of Microsoft Lync Server 2013 Length 5 days Price $4290.00 (inc GST) Version B Overview This instructor-led course teaches IT professionals

More information

EnterpriseLink Benefits

EnterpriseLink Benefits EnterpriseLink Benefits GGY a Moody s Analytics Company 5001 Yonge Street Suite 1300 Toronto, ON M2N 6P6 Phone: 416-250-6777 Toll free: 1-877-GGY-AXIS Fax: 416-250-6776 Email: axis@ggy.com Web: www.ggy.com

More information

Introduction To Cloud Computing

Introduction To Cloud Computing Introduction To Cloud Computing What is Cloud Computing? Cloud computing is a model for enabling ubiquitous, convenient, on-demand network access to a shared pool of configurable computing resources (e.g.,

More information

Foundations and Concepts. 04 December 2017 vrealize Automation 7.3

Foundations and Concepts. 04 December 2017 vrealize Automation 7.3 Foundations and Concepts 04 December 2017 vrealize Automation 7.3 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about

More information

The Design and Implementation of Disaster Recovery in Dual-active Cloud Center

The Design and Implementation of Disaster Recovery in Dual-active Cloud Center International Conference on Information Sciences, Machinery, Materials and Energy (ICISMME 2015) The Design and Implementation of Disaster Recovery in Dual-active Cloud Center Xiao Chen 1, a, Longjun Zhang

More information

Authentication, authorisation and accounting in distributed multimedia content delivery system.

Authentication, authorisation and accounting in distributed multimedia content delivery system. Authentication, authorisation and accounting in distributed multimedia content delivery system. Mirosław Czyrnek, Marcin Luboński, Cezary Mazurek Poznań Supercomputing and Networking Center (PSNC), ul.

More information

Cisco Cloud Architecture with Microsoft Cloud Platform Peter Lackey Technical Solutions Architect PSOSPG-1002

Cisco Cloud Architecture with Microsoft Cloud Platform Peter Lackey Technical Solutions Architect PSOSPG-1002 Cisco Cloud Architecture with Microsoft Cloud Platform Peter Lackey Technical Solutions Architect PSOSPG-1002 Agenda Joint Cisco and Microsoft Integration Efforts Introduction to CCA-MCP What is a Pattern?

More information

Overview. SUSE OpenStack Cloud Monitoring

Overview. SUSE OpenStack Cloud Monitoring Overview SUSE OpenStack Cloud Monitoring Overview SUSE OpenStack Cloud Monitoring Publication Date: 08/04/2017 SUSE LLC 10 Canal Park Drive Suite 200 Cambridge MA 02141 USA https://www.suse.com/documentation

More information

Article Summary of: Understanding Cloud Computing Vulnerabilities. Michael R. Eldridge

Article Summary of: Understanding Cloud Computing Vulnerabilities. Michael R. Eldridge Article Summary of: Understanding Cloud Computing Vulnerabilities Michael R. Eldridge April 14, 2016 2 Introduction News stories abound about the almost daily occurrence of break-ins and the stealing of

More information

The office for the anywhere worker!!! Your LCB SOFTPHONE: A powerful new take on the all-in-one for a more immersive experience.

The office for the anywhere worker!!! Your LCB SOFTPHONE: A powerful new take on the all-in-one for a more immersive experience. The office for the anywhere worker!!! Your LCB SOFTPHONE: A powerful new take on the all-in-one for a more immersive experience. LCB SOFTPHONE FOR SALESFORCE Combine real-time communications and tracking

More information

vrealize Business Standard User Guide

vrealize Business Standard User Guide User Guide 7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this

More information

Vulnerability Scan Service. User Guide. Issue 20 Date HUAWEI TECHNOLOGIES CO., LTD.

Vulnerability Scan Service. User Guide. Issue 20 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 20 Date 2018-08-30 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Deploying enterprise applications on Dell Hybrid Cloud System for Microsoft Cloud Platform System Standard

Deploying enterprise applications on Dell Hybrid Cloud System for Microsoft Cloud Platform System Standard Deploying enterprise applications on Dell Hybrid Cloud System for Microsoft Cloud Platform System Standard Date 7-18-2016 Copyright This document is provided as-is. Information and views expressed in this

More information

Zoom User Manual. developed. Gary P. Davis. and. David J. Ayersman. for. Students and Employees of New River Community and Technical College

Zoom User Manual. developed. Gary P. Davis. and. David J. Ayersman. for. Students and Employees of New River Community and Technical College Zoom User Manual developed by Gary P. Davis and David J. Ayersman for Students and Employees of Zoom manual.docx Page 1 of 35 Last Updated: August 13, 2018 PREFACE AND OVERVIEW For the fall 2018 term,

More information

VMWARE HORIZON 7. End-User Computing Today. Horizon 7: Delivering Desktops and Applications as a Service

VMWARE HORIZON 7. End-User Computing Today. Horizon 7: Delivering Desktops and Applications as a Service DATASHEET VMWARE 7 AT A GLANCE 7 delivers virtualized or hosted desktops and applications through a single platform to end users. These desktop and application services including Remote Desktop Services

More information

Management Intranet: Integrating Web-based Network Management Applications

Management Intranet: Integrating Web-based Network Management Applications Management Intranet: Integrating Web-based Network Management Applications Jim Turner Cisco Systems Inc. 125 Rio Robles San Jose, CA 95134 USA jiturner@cisco.com Swami Jayaraman Cisco Systems Inc. 125

More information

CDW LLC 200 North Milwaukee Avenue, Vernon Hills, IL

CDW LLC 200 North Milwaukee Avenue, Vernon Hills, IL Coordinating Conferencing and Collaboration Vital unified communications capabilities offer a solid foundation for an integrated view of the collaborative environment. To make the most of the opportunities

More information

Top five Docker performance tips

Top five Docker performance tips Top five Docker performance tips Top five Docker performance tips Table of Contents Introduction... 3 Tip 1: Design design applications as microservices... 5 Tip 2: Deployment deploy Docker components

More information

How to use Video Conferencing & Desktop Sharing on Magnet Voice

How to use Video Conferencing & Desktop Sharing on Magnet Voice How to use Video Conferencing & Desktop Sharing on Magnet Voice Video Conferencing and Collaboration CONTENTS User Guide... 1 1. How to set up a video session... 2. Running a video conference... 4 3. Screen

More information

Storage Made Easy. Mirantis

Storage Made Easy. Mirantis Storage Made Easy Providing an Enterprise File Fabric for Mirantis STORAGE MADE EASY ENTERPRISE FILE FABRIC FOR MIRANTIS The File Fabric is a comprehensive multi-cloud data security solution built on top

More information

Empower your teams with more video meeting options.

Empower your teams with more video meeting options. v-concert Cloud Based Video Services ENTERPRISE VIDEOCONFERENCING WITHOUT THE BIG INVESTMENT Empower your teams with more video meeting options. v-concert is a cloud-based suite of video collaboration

More information

Distributed Systems. 31. The Cloud: Infrastructure as a Service Paul Krzyzanowski. Rutgers University. Fall 2013

Distributed Systems. 31. The Cloud: Infrastructure as a Service Paul Krzyzanowski. Rutgers University. Fall 2013 Distributed Systems 31. The Cloud: Infrastructure as a Service Paul Krzyzanowski Rutgers University Fall 2013 December 12, 2014 2013 Paul Krzyzanowski 1 Motivation for the Cloud Self-service configuration

More information

Skype for Business. How-to Guide

Skype for Business. How-to Guide Skype for Business How-to Guide Fall 2016 Get to Know Skype for Business Contents Contacts... 1 Searching For and Adding Contacts... 1 Creating Contact Groups... 2 Tagging a Contact... 3 Instant Messaging

More information

Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging. Quick-Start Manual

Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging. Quick-Start Manual Mobiketa Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging Quick-Start Manual Overview Mobiketa Is a full-featured Bulk SMS and Voice SMS marketing script that gives you control over your

More information

Middle East Technical University. Jeren AKHOUNDI ( ) Ipek Deniz Demirtel ( ) Derya Nur Ulus ( ) CENG553 Database Management Systems

Middle East Technical University. Jeren AKHOUNDI ( ) Ipek Deniz Demirtel ( ) Derya Nur Ulus ( ) CENG553 Database Management Systems Middle East Technical University Jeren AKHOUNDI (1836345) Ipek Deniz Demirtel (1997691) Derya Nur Ulus (1899608) CENG553 Database Management Systems * Introduction to Cloud Computing * Cloud DataBase as

More information

Load Balancing in Cloud Computing System

Load Balancing in Cloud Computing System Rashmi Sharma and Abhishek Kumar Department of CSE, ABES Engineering College, Ghaziabad, Uttar Pradesh, India E-mail: abhishek221196@gmail.com (Received on 10 August 2012 and accepted on 15 October 2012)

More information

271 Waverley Oaks Rd. Telephone: Suite 206 Waltham, MA USA

271 Waverley Oaks Rd. Telephone: Suite 206 Waltham, MA USA Contacting Leostream Leostream Corporation http://www.leostream.com 271 Waverley Oaks Rd. Telephone: +1 781 890 2019 Suite 206 Waltham, MA 02452 USA To submit an enhancement request, email features@leostream.com.

More information

XFINITY Welcome Packet

XFINITY Welcome Packet XFINITY Welcome Packet Welcome! Your building comes with a fast, reliable property-wide WiFi network as well as access to our popular XFINITY TV video streaming service for university students. In the

More information

Cloud Computing: Concepts, Architecture and Applied Research Yingjie Wang1-2,a

Cloud Computing: Concepts, Architecture and Applied Research Yingjie Wang1-2,a 4th International Conference on Mechatronics, Materials, Chemistry and Computer Engineering (ICMMCCE 2015) Cloud Computing: Concepts, Architecture and Applied Research Yingjie Wang1-2,a 1 College of Information

More information

Deploying Voice Workloads for Skype for Business Online and Server 2015

Deploying Voice Workloads for Skype for Business Online and Server 2015 Deploying Voice Workloads for Skype for Business Online and Server 2015 Duration: 5 Days Course Code: M40409 Version: A Delivery Method: Virtual and Classroom Overview: This five-day instructor-led course

More information

YOUR APPLICATION S JOURNEY TO THE CLOUD. What s the best way to get cloud native capabilities for your existing applications?

YOUR APPLICATION S JOURNEY TO THE CLOUD. What s the best way to get cloud native capabilities for your existing applications? YOUR APPLICATION S JOURNEY TO THE CLOUD What s the best way to get cloud native capabilities for your existing applications? Introduction Moving applications to cloud is a priority for many IT organizations.

More information