Final Project - Simple Remote Desktop, SRD
|
|
|
- Amberlynn Warren
- 9 years ago
- Views:
Transcription
1 Final Project - Simple Remote Desktop, SRD Seiya Kawashima December 10, Introduction On this project, I wrote a remote desktop program using some well known codes and my own ideas. As you can see, the architecture of my remote desktop is quite straight forward. The technologies, RMI and RTP make this remote desktop work well over the Internet. I m going to talk about the architecture, the results from some experiments and finally my conclusion.here is an overview of my solution. Figure 1: Overview of Final Project 1
2 2 BEHIND THE SCENE 2 2 Behind the scene There are essential factors that make the remote desktop work, so I show them here as things behind the scene. Remote Method Invocation, RMI This is basically a remote procedure call. When we want to use RMI, we register interfaces that have methods which we want to invoke remotely and put them and their implementations on a place where clients can access anywhere in the world. After these steps, clients access the registry to look up the methods and invoke the methods that they want. These mechanisms make the remote desktop work. Robot class below takes care of the mouse actions and typing characters, but we need a way to send these messages to the server. RMI does the job. So I use RMI to invoke Robot class s methods remotely. Real Time Transport Protocol, RTP This protocol is invented for realtime streaming on the Internet.Real-time streaming means video conferencing and VoIP applications. These applications can t delay to deliver data but drop some data. There is a Java framework called Java Media Framework implementing RTP for the applications. I used the protocol to deliver the server s screen to the client implementing the framework. java.awt.robot, Robot class This class is originally written for automated tests. It means that when we want to test programs, we make a program which implements this class to test them. This class has methods for typing characters, moving the mouse, wheeling the mouse and capture the screen. What the class differentiates from others is about the mouse actions. There are other classes that deal with the position of the mouse on the screen. They also calculate the position, but they don t move the mouse actually. So even though we want to click a button or move the mouse on a test, we can t accomplish the task. Here is a trick about how to move the mouse and type characters on another screen remotely.
3 3 HOW IT LOOKS LIKE 3 3 How it looks like Here is a screen shot of the program. On this figure, the client which has a window (JFrame) is on Mac OS X, and the server which is shown on the window is on Windows Figure 2: Remote desktop screen 4 Results On this section, I show you some interesting data about how much traffic there is before the session, while the session, and while the session with the mouse and keyboard actions. And also there is information about how long it takes to invoke remote methods on the program. With these data, we can find out that how good and bad the performance is. Here is a table for traffic before the session starts (Initial state).
4 4 RESULTS 4 In (download) Traffic/sec Peek/sec Average/sec Total Traffic/sec Peek/sec Average/sec Total 0B 4KB 3KB 24KB 0B 4KB 16KB 4MB Out (updload) 0B 298B 176B 352B 0B 391B 378KB 107MB Table 1: Client on the left, Server on the right Here is a table for traffic when the session initiated (just connected each other). In (download) Traffic/sec Peek/sec Average/sec Total Traffic/sec Peek/sec Average/sec Total 437KB 583KB 349KB 46MB 128B 29KB 16KB 5MB Out (updload) 100B 40KB 13KB 770KB 433KB 536KB 384KB 160MB Table 2: Client on the left, Server on the right Here is a table for typing characters, clicking the mouse and moving the mouse wheel. In (download) Traffic/sec Peek/sec Average/sec Total Traffic/sec Peek/sec Average/sec Total 376KB 583KB 349KB 114MB 10KB 29KB 14KB 5MB Out (updload) 10KB 40KB 10KB 1MB 368KB 536KB 378KB 204MB Table 3: Client on the left, Server on the right Next, I m going to show you how long it takes to do normal actions such as moving the mouse and transferring files. These data helps us to measure the performance.here is a table for how long to move the mouse remotely and transfer a file.
5 5 FUTURE WORK 5 Each Action Time (sec) Mouse movement 0.12 Typing characters 0 (infinitely close to zero) File transfer(size: 61.4KB) 7.45 File transfer(size: 4.97MB) Advantage Table 4: Actions on the session Those results above tell us an advantage of the remote desktop. Moving the mouse and typing characters are fast enough to use in the real world. Of course, there is some latency between invoking the events and being executed, but the performance is good enough. Another advantage is that this is a totally free open-source program, so if people want to modify and/or change some functions and/or extend it however they want. I think that this usability is quite nice. Because I know there are so many people who want to see a sample remote desktop which works good enough to use personally like I do. For them, the point works well, and also I know the fact that there are not so many sample remote desktop programs WITH the source codes in Java for free. 4.2 Disadvantage Transferring files is quite slow. The reason is that to use RMI for transferring data, I construct byte arrays of transferred files on the client and send them as byte arrays to the server.file class that we usually use to deal with files in Java can t be used remotely since File class can only see in the local file system, and but in another one.and then The server reconstructs files from the byte arrays. These processes have to be paid for a price when we want to deal with data transfer using RMI. 5 Future work My solution still lacks of functions that we usually use. On the other hand, the performance can be improved. I list them as future work here.
6 5 FUTURE WORK 6 Pin point Drag and Drop People usually use this function to copy files or directory from one place to another. This function should be implemented correctly in my solution. Since my solution uses File class to make a place where you want to put chosen files, there is no way to the target on runtime.this point should be improved. Drag and Drop directories remotely People use the function not only to cop files but also directories, but my solution doesn t support currently because of using File class. File class can t search for a file or directory remotely. The file or directory that you want to deal with have to be in the file system, but in another file system.that s why it is impossible to implement this function with File class. screen resolution Throughout my experiments, my solution doesn t support wide screen monitors. when I use a wide screen monitor to test the program, I can t move the mouse the very right hand side on the screen. JMF is the core part for taking care of the screen, so I should change the implementation. Through SSL People need to use this protocol to make sure inbound and outbound packets are encrypted. So other people can t actually your raw traffic. My solution doesn t support this function, but it can be done easily using RMI factory with SSL. This function can be implemented soon. Faster transferring Now the program uses byte arrays to transfer files remotely. This has to be done with RMI, but it makes the program work slowly. An alternative can be to use SocketStream for transferring like putting files or directories on the stream and transfer them to the target computer. The way can be a lot faster. More practical with Multimedia Since this solution uses JMF that we can deal with live music and video implementing the gigantic framework. So it means that I could play video/audio streams remotely and then play it locally. If so, managing computers remotely is easier than it is, because people could talk while fixing problems remotely. Interactivity is also important.
7 6 CONCLUSION 7 6 Conclusion Throughout this project, there are many things that I ve learned such as how difficult modifying people s codes, to use RMI for distributing programs, classes that I ve never used and also the limitations of Java.This time I started the project as soon as possible and used a lot of time, so mostly I was on schedule. Demonstrations of what we ve written are as important as presentations are. That s the easiest way to convince people what you ve gotten, written and how your programs work. On this phase, I lost the opportunity. This was a disaster to me and people who were expecting my demos. For the future, I think that testing codes as many times as possible is needed and also checking and testing the environment where you are demonstrating are also what I should do unless my programs won t persuade. This was a good practice for the future, so I will do that. 7 Reference References [1] Generating Live Audio/Video Data ( I used this example to get the screen shots) [2] Transmitting Video over RTP (I modified this example to fit my needs. [3] JMF Java Media Framework documentation [4] Java Swing Marc Loy, Robert Eckstein, Dave Wood, James Elliton & Brian Cole [5] Core Java 2 Volume 1 - Foundamentals Cay S. Horstmann, Gary Cornell [6] Core Java 2 Volume 2 - Advanced Features Cay S. Horstmann, Gary Cornell
8 REFERENCES 8 [7] Introduction to the Java Robot Class in Java
Remote Desktop Gateway. Accessing a Campus Managed Device (Windows Only) from home.
Remote Desktop Gateway Accessing a Campus Managed Device (Windows Only) from home. Contents Introduction... 2 Quick Reference... 2 Gateway Setup - Windows Desktop... 3 Gateway Setup Windows App... 4 Gateway
Aqua Accelerated Protocol (AAP) For Mac User Manual
Aqua Accelerated Protocol (AAP) For Mac User Manual Table of Contents About Aqua Accelerated Protocol...3 System Requirements... 4 Hardware (Client)... 4 Hardware (Server Connecting to)... 4 Software (AAP
GoToMyPC Corporate Advanced Firewall Support Features
F A C T S H E E T GoToMyPC Corporate Advanced Firewall Support Features Citrix GoToMyPC Corporate features Citrix Online s advanced connectivity technology. We support all of the common firewall and proxy
Remote Support. User Guide 7.23
Remote Support User Guide 7.23 Copyright 1997 2011 Cisco and/or its affiliates. All rights reserved. WEBEX, CISCO, Cisco WebEx, the CISCO logo, and the Cisco WebEx logo are trademarks or registered trademarks
Bridgit Conferencing Software: Security, Firewalls, Bandwidth and Scalability
Bridgit Conferencing Software: Security, Firewalls, Bandwidth and Scalability Overview... 3 Installing Bridgit Software... 4 Installing Bridgit Software Services... 4 Creating a Server Cluster... 4 Using
Apple Remote Desktop Basics
Apple Remote Desktop Basics What Is Apple Remote Desktop? Apple Remote Desktop is easy-to-use, powerful, open standards-based, desktop management software for all your networked Macs. IT professionals
The following was taken directly from the ARD (Apple Remote Desktop) operator s manual:
The following was taken directly from the ARD (Apple Remote Desktop) operator s manual: Copying Files Apple Remote Desktop makes it easy to update items on one or more client computers. Copying files works
The all-in-one Unified Communications solution for SMBs.
OpenScape Business The all-in-one Unified Communications solution for SMBs. Improve your performance and take your business to the next level with Unified Communications. Amplifying opportunities The success
Yealink VCS Network Deployment Solution
Yealink VCS Network Deployment Solution Feb. 2015 V10.15 Yealink Network Deployment Solution Table of Contents Table of Contents... iii Network Requirements Overview... 1 Bandwidth Requirements... 1 Bandwidth
LiveTalk Call Center solution
LiveTalk Call Center solution I. Introduction LiveTalk enables real-time interaction between callers and a pool of technical and customer support or sales agents via a completely web based interface. With
idatafax Troubleshooting
idatafax Troubleshooting About idatafax idatafax is a client application that connects back to a server at the PHRI based in Hamilton, Ontario, Canada. It is not known to interfere with any software and
8 Critical Pains with Remote Scanning
keep it simple. 8 Critical Pains with Remote Scanning 2011 tricerat, Inc. All Rights Reserved. www.tricerat.com SCANNING FOR THE LOVE OF TIME, SPACE, AND BUDGET From personal use to enterprise-sized businesses,
WORKING WITH WINDOWS FIREWALL IN WINDOWS 7
WORKING WITH WINDOWS FIREWALL IN WINDOWS 7 Firewall in Windows 7 Windows 7 comes with two firewalls that work together. One is the Windows Firewall, and the other is Windows Firewall with Advanced Security
Web Conferencing Version 8.3 Troubleshooting Guide
System Requirements General Requirements Web Conferencing Version 8.3 Troubleshooting Guide Listed below are the minimum requirements for participants accessing the web conferencing service. Systems which
TalkShow Advanced Network Tips
TalkShow Advanced Network Tips NewTek Workflow Team TalkShow is a powerful tool to expand a live production. While connecting in a TalkShow unit is as simple as plugging in a network cord and an SDI cable,
Fast remote data access for control of TCP/IP network using android Mobile device
RESEARCH ARTICLE OPEN ACCESS Fast remote data access for control of TCP/IP network using android Mobile device Vaibhav Muddebihalkar *, R.M Gaudar** (Department of Computer Engineering, MIT AOE Alandi
Join & Leave Meetings
Join & Leave Meetings There are several ways to join a meeting depending on how you receive the meeting invitation. Joining a meeting doesn t require registration, software installation in advance or configuration.
SMART Bridgit software
Specifications SMART Bridgit software Version 4.5 Product description SMART Bridgit conferencing software is a cost-effective client/server application that lets you easily schedule meetings and connect,
Apple Mac VPN Service Setting up Remote Desktop
Apple Mac VPN Service Setting up Remote Desktop After you have successfully connected via the VPN client to the University network you will then need to make the connection to your machine. To do this
RDM+ Remote Desktop for Android. Getting Started Guide
RDM+ Remote Desktop for Android Getting Started Guide RDM+ (Remote Desktop for Mobiles) is a remote control tool that offers you the ability to connect to your desktop or laptop computer from Android device
How To Get A Phone Service For Free
1900 Wright Place, Suite 250 Carlsbad, CA 92008 (888) 441-4466 The Future of Phone Systems What features to look for in 2015 2014 Business.com Media, Inc. All Rights Reserved. The Future of Phone Systems:
VoIP network planning guide
VoIP network planning guide Document Reference: Volker Schüppel 08.12.2009 1 CONTENT 1 CONTENT... 2 2 SCOPE... 3 3 BANDWIDTH... 4 3.1 Control data 4 3.2 Audio codec 5 3.3 Packet size and protocol overhead
Whitepaper: Microsoft Office Communications Server 2007 R2 and Cisco Unified Communications Manager Integration Options
Whitepaper: Microsoft Office Communications Server 2007 R2 and Cisco Unified Communications Manager Integration Options Document Summary This document provides information on several integration scenarios
Campus VPN. Version 1.0 September 22, 2008
Campus VPN Version 1.0 September 22, 2008 University of North Texas 1 9/22/2008 Introduction This is a guide on the different ways to connect to the University of North Texas Campus VPN. There are several
If you re the unofficial administrator of your home or small
C H A P T E R Monitoring Your Network If you re the unofficial administrator of your home or small office network, I imagine you re already saddled with a fairly long to-do list of network chores: adding
Using Microsoft Lync for Web Conferencing, Training & Support
Using Microsoft Lync for Web Conferencing, Training & Support A Demonstration of Lync Features 28 May 2014 What is Lync? Microsoft Lync is a communications and collaboration tool available to Exchange
12 Key File Sync and Share Advantages of Transporter Over Box for Enterprise
WHITE PAPER 12 Key File Sync and Share Advantages of Transporter Over Box for Enterprise Cloud storage companies invented a better way to manage information that allows files to be automatically synced
From Centralization to Distribution: A Comparison of File Sharing Protocols
From Centralization to Distribution: A Comparison of File Sharing Protocols Xu Wang, Teng Long and Alan Sussman Department of Computer Science, University of Maryland, College Park, MD, 20742 August, 2015
Planning a Responsive Website
Planning a Responsive Website Planning a website is important for both web designers and website owners. Planning your website before you start building it can save you time, keep your site code more accurate
QuickSpecs. Overview. Compaq Remote Insight Lights-Out Edition
Overview M ODELS Remote Insight Lights-Out Edition 157866-001 New Remote Insight Lights-Out Edition provides virtual graphical control using any standard browser to your remote or data centre server, giving
Closing The Application Performance Visibility Gap Inherent To Citrix Environments
Closing The Application Performance Visibility Gap Inherent To Citrix Environments WHITE PAPER: DYNATRACE FOR CITRIX XENAPP/XENDESKTOP Many companies have invested in Citrix XenApp and XenDesktop environments
IBM Web Conferencing: Troubleshooting Guide
IBM Web Conferencing: Troubleshooting Guide JOIN AS A PARTICIPANT What do I need to join a web conference under the Mac Operating System? To attend the Web Conferencing meeting under the Mac OS, you must
Remote Desktop Access Through Android Mobile Phones and Reverse
Reviewed Paper Volume 2 Issue 8 April 2015 Paper International Journal of Informative & Futuristic Research ISSN (Online): 2347-1697 Remote Desktop Access Through Android Mobile Phones and Reverse Paper
RFG Secure FTP. Web Interface
RFG Secure FTP Web Interface Step 1: Getting to the Secure FTP Web Interface: Open your preferred web browser and type the following address: http://ftp.raddon.com After you hit enter, you will be taken
Server Software Installation Guide
Server Software Installation Guide This guide provides information on...... The architecture model for GO!Enterprise MDM system setup... Hardware and supporting software requirements for GO!Enterprise
Built-in Accessibility for Students with Physical Access Challenges Sticky Keys, Slow Keys, Key Repeat and Mouse Keys
Macintosh OSX Universal Access Built-in Accessibility for Students with Physical Access Challenges Sticky Keys, Slow Keys, Key Repeat and Mouse Keys Introduction Although there are specialized programs
The Complete Educator s Guide to Using Skype effectively in the classroom
The Complete Educator s Guide to Using Increasingly, educators globally are transforming their classroom using Skype to create powerful, authentic, motivating learning experiences for their students. From
DEPLOYMENT GUIDE Version 1.1. Configuring BIG-IP WOM with Oracle Database Data Guard, GoldenGate, Streams, and Recovery Manager
DEPLOYMENT GUIDE Version 1.1 Configuring BIG-IP WOM with Oracle Database Data Guard, GoldenGate, Streams, and Recovery Manager Table of Contents Table of Contents Configuring BIG-IP WOM with Oracle Database
Running FileMaker Pro 5.0v3 on Windows 2000 Terminal Services
Running FileMaker Pro 5.0v3 on Windows 2000 Terminal Services 2000 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 www.filemaker.com FileMaker
Top 3 Choices for Internet File Sharing Service Providers
Phone: 404-202-8657 P. O. Box 768122 Fax: 770-552-8392 Roswell, Georgia Email: [email protected] 30076 Top 3 Choices for Internet File Sharing Service Providers Research Report and Recommendations By:
OpenScape Web Collaboration
OpenScape Web Collaboration The quickest and easiest way to collaborate, share and support online Performance-boosting collaboration and secure support from anywhere Issues raised, ideas shared and decisions
CTX OVERVIEW. Ucentrik CTX
CTX FACT SHEET CTX OVERVIEW CTX SDK API enables Independent Developers, VAR s & Systems Integrators and Enterprise Developer Teams to freely and openly integrate real-time audio, video and collaboration
The Ultimate Guide to Gaining Control of the WAN
LAYLAND CONSULTING The Ultimate Guide to Gaining Control of the WAN A TechTarget Document Robin Layland November 2009 The e-book, The Ultimate Guide to Gaining Control of the WAN, explains the drivers
CONNECTING TO LYNC/SKYPE FOR BUSINESS OVER THE INTERNET NETWORK PREP GUIDE
CONNECTING TO LYNC/SKYPE FOR BUSINESS OVER THE INTERNET NETWORK PREP GUIDE Engineering Version 1.3 June 3, 2015 Table of Contents Foreword... 3 Current Network... 4 Understanding Usage/Personas... 4 Modeling/Personas...
HOW TO USE THE File Transfer Protocol SERVER ftp.architekturaibiznes.com.pl
HOW TO USE THE File Transfer Protocol SERVER ftp.architekturaibiznes.com.pl In order to access the A&B server with a view to uploading or downloading materials, any FTP client software can be used. If
EasyConnect. Any application - Any device - Anywhere. Faster, Simpler & Safer Networks
EasyConnect Any application - Any device - Anywhere As cloud computing and mobile devices continue to reshape the way people work, workforces are becoming increasingly mobile. In order to remain competitive,
What's New in Sametime 8.5. Roberto Chiabra IBM Certified IT Specialist
What's New in Sametime 8.5 Roberto Chiabra IBM Certified IT Specialist What's new in Sametime 8.5 Sametime Connect Client Online Meetings Audio / Video W eb Browser Clients & W eb 2.0 APIs Sametime Systems
Cisco WAAS Optimized for Citrix XenDesktop
White Paper Cisco WAAS Optimized for Citrix XenDesktop Cisco Wide Area Application Services (WAAS) provides high performance delivery of Citrix XenDesktop and Citrix XenApp over the WAN. What ou Will Learn
You must download the desktop client before you start, this is found on the Yuuguu page on your Ezereach web portal.
Help using Yuuguu Screen sharing How to host a screen sharing (or web conferencing) session You must download the desktop client before you start, this is found on the Yuuguu page on your Ezereach web
Conditions affecting performance of a WebEx session.
Conditions affecting performance of a WebEx session. WebEx Network Bandwidth White Paper The performance of a WebEx session depends on many factors. While vendors like Cisco can control some of these factors,
Java Remote Desktop. Java Remote Desktop. The Manual of Java Remote Desktop 1.12. J3PSoftware Revision 2.0 1
Java Remote Desktop The Manual of Java Remote Desktop 1.12 J3PSoftware Revision 2.0 1 1.I About Java Remote Desktop 1.II About this manual 2 Java Remote Desktop Versions 2.1 Java Remote Desktop 2.2 Java
Getting Started with Microsoft Office Live Meeting. Published October 2007 Last Update: August 2009
Getting Started with Microsoft Office Live Meeting Published October 2007 Last Update: August 2009 Information in this document, including URL and other Internet Web site references, is subject to change
Getting Started with Microsoft Office Live Meeting. Published October 2007
Getting Started with Microsoft Office Live Meeting Published October 2007 Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless
Personal Cloud. Support Guide for Windows Mobile Devices
Personal Cloud Support Guide for Windows Mobile Devices Storing and sharing your content 2 Getting started 2 How to use the application 2 Managing your content 2 Adding content manually 2 Viewing statistics
How To Understand The Architecture Of An Ulteo Virtual Desktop Server Farm
ULTEO OPEN VIRTUAL DESKTOP V4.0.2 ARCHITECTURE OVERVIEW Contents 1 Introduction 2 2 Servers Roles 3 2.1 Session Manager................................. 3 2.2 Application Server................................
Answer: Can be used on smart phones/ipad/tablets OR can be used anywhere that has an internet connection. Do not mention anything to do with cost
Give the main use of VOIP Technology Answer: Speaking/Talking/Video over the internet Identify one benefit of using VOIP Technology Answer: Can be used on smart phones/ipad/tablets OR can be used anywhere
PLA Series. User s Guide. Quick Start Guide. Powerline Ethernet Adapters. PLA4101, PLA4111, PLA4201, PLA4201 v2, PLA5205, PLA5215, PLA5206, PLA5405
PLA Series Powerline Ethernet Adapters PLA4101, PLA4111, PLA4201, PLA4201 v2, PLA5205, PLA5215, PLA5206, PLA5405 Utility Version 7.0.1 Edition 1, 05/2014 Default Network Name: HomePlugAV Quick Start Guide
Terminal Server Software and Hardware Requirements. Terminal Server. Software and Hardware Requirements. Datacolor Match Pigment Datacolor Tools
Terminal Server Software and Hardware Requirements Datacolor Match Pigment Datacolor Tools January 21, 2011 Page 1 of 8 Introduction This document will provide preliminary information about the both the
Network Performance: Networks must be fast. What are the essential network performance metrics: bandwidth and latency
Network Performance: Networks must be fast What are the essential network performance metrics: bandwidth and latency Transmission media AS systems Input'signal'f(t) Has'bandwidth'B System'with'H(-) Output'signal'g(t)
Foot Locker Web Conferencing Service Guide
Foot Locker Web Conferencing Service Guide For Assistance Call: 1-800-688-9137 Reservation Line: (800) 688-9137 1 WebEx Users Guide This guide provides tips and techniques that you can use to conduct effective
Remote Access and Control of the. Programmer/Controller. Version 1.0 9/07/05
Remote Access and Control of the Programmer/Controller Version 1.0 9/07/05 Remote Access and Control... 3 Introduction... 3 Installing Remote Access Viewer... 4 System Requirements... 4 Activate Java console...
Rev. 1.04 Technology Document
Rev. 1.04 Technology Document Table of Contents 1. ABOUT THE AREL ICP PLATFORM...1 2. SYSTEM COMPONENTS AND ARCHITECTURE...2 3. AUDIO AND VIDEO...3 4. TRANSPORT LAYER...4 5. FIREWALLS & PROXIES...5 5.1.
Microsoft Office Communicator 2007 Frequently Asked Questions. Published: July, 2007
Microsoft Office Communicator 2007 Frequently Asked Questions Published: July, 2007 Information in this document, including URL and other Internet Web site references, is subject to change without notice.
Trans-Soft Datacenter Administration Guide
Trans-Soft Datacenter Administration Guide Copyright 2009 Trans-Soft, Inc. Introduction We would like to take a moment and welcome you the Trans-Soft Datacenter. We appreciate your business and are dedicated
Wazza s QuickStart 1. Leopard Server - Install & Configure DNS
Wazza s QuickStart 1. Leopard Server - Install & Configure DNS About this Document This document is the first in a series of documents describing the process of installing and configuring a Mac OS X 10.5
MICROSOFT OFFICE 365 MIGRATION 2013/05/13
MICROSOFT OFFICE 365 MIGRATION 2013/05/13 WHAT IS OFFICE 365 Office 365 provides virtually anywhere access to familiar Office tools Word WEB App Excel WEB App PowerPoint WEB App Enterprise-grade email
[VIRTUAL PBX OVERVIEW]
Powered by: [VIRTUAL PBX OVERVIEW] The following document contains program details for 3NG s Hosted IP PBX Solution. Please contact your Account Manager for a System Demo Introduction 3NG Networks owns
RADMIN remote control software. Product Overview. What is Radmin? Innovative screen capture technology
What is Radmin? Radmin is a secure and reliable Windows-based remote control program, which allows you to work on several computers through a simple and familiar graphical interface. Radmin allows a user
Installing the Citrix Receiver Client
USC Marshall School of Business Marshall Information Services Virtual Lab Applications Installing the Citrix Receiver Client for Macs You can use Citrix Virtual Lab applications either through MyMarshall
lesson 1 An Overview of the Computer System
essential concepts lesson 1 An Overview of the Computer System This lesson includes the following sections: The Computer System Defined Hardware: The Nuts and Bolts of the Machine Software: Bringing the
Virtual Mouse Using a Webcam
1. INTRODUCTION Virtual Mouse Using a Webcam Since the computer technology continues to grow up, the importance of human computer interaction is enormously increasing. Nowadays most of the mobile devices
Smoking and any food or drinks are not permitted in the Applications Lab!
220 Lab C Introduction to Cisco IP Telephony Pre-Lab Activities: None Purpose of the experiment: To explore the Cisco IP Telephony System configuration options, and its use. Smoking and any food or drinks
LYNC 2010 USER GUIDE
LYNC 2010 USER GUIDE D O C U M E N T R E V I S O N H I S T O R Y DOCUMENT REVISION HISTORY Version Date Description 1.0 6/25/2013 Introduction of the Lync 2010 to product line. 2 Lync 2010 User Guide 401
Why SSL is better than IPsec for Fully Transparent Mobile Network Access
Why SSL is better than IPsec for Fully Transparent Mobile Network Access SESSION ID: SP01-R03 Aidan Gogarty HOB Inc. [email protected] What are we all trying to achieve? Fully transparent network access
Create stunning flash movies online in minutes with the easiest flash maker in the world! Try the world's best online flash movie maker.
Toufee Flash Builder http://apps.toufee.com/flash_builder.html Create stunning flash movies online in minutes with the easiest flash maker in the world! Try the world's best online flash movie maker. Creating
Seagate Business Storage 1-Bay, 2-Bay, and 4-Bay NAS User Guide
Seagate Business Storage 1-Bay, 2-Bay, and 4-Bay NAS User Guide Seagate Business Storage NAS User Guide 2013 Seagate Technology LLC. All rights reserved. Seagate, Seagate Technology, the Wave logo, and
Frequently Asked Questions
Frequently Asked Questions Minimum System Requirements What do I need to host or attend a meeting using Microsoft Windows? What do I need to host or attend a meeting using Mac OS? What do I need to host
Remote MasterMind for Mobility 2.5. Mobile Device Management Software
Remote MasterMind for Mobility 2.5 Mobile Device Management Software Remote MasterMind for Mobility 2.5 You have mobility devices in locations all across the area, state, or country. They are constantly
FUGU - SFTP FOR MACS- REFERENCE GUIDE
Information Technology FUGU - SFTP FOR MACS- REFERENCE GUIDE INTRODUCTION This document assumes that Fugu is already installed on your computer. If you don t have Fugu, CSUN faculty, staff and students
User Tutorial on Changing Frame Size, Window Size, and Screen Resolution for The Original Version of The Cancer-Rates.Info/NJ Application
User Tutorial on Changing Frame Size, Window Size, and Screen Resolution for The Original Version of The Cancer-Rates.Info/NJ Application Introduction The original version of Cancer-Rates.Info/NJ, like
INTERNATIONAL JOURNAL OF COMPUTER ENGINEERING & TECHNOLOGY (IJCET)
INTERNATIONAL JOURNAL OF COMPUTER ENGINEERING & TECHNOLOGY (IJCET) International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print), ISSN 0976 6367(Print) ISSN 0976 6375(Online)
Biba Datasheet. Biba is a mobile collaboration tool that provides:
Biba Datasheet WHAT IS BIBA? Biba is a mobile collaboration tool that provides: The biggest thing for us has been Biba AutoCall it makes a tremendous difference when the system takes care of when you join
UC-One. Epik. UC-One Quick Guide. Quick Guide For Apps. Why we love UC-One
Quick Guide For Apps Epik UC-One UC-One is part of our Epik suite enabling you to access all your communication services, telephony, video, IM and presence from any supported device. Contact Integration
Internet Desktop Video Conferencing
Pekka Isto 13.11.1998 1(8) Internet Desktop Video Conferencing ABSTRACT: This is report outlines possible use of Internet desktop videoconferencing software in a distributed engineering project and presents
The Desktop Sharing Handbook. Brad Hards
Brad Hards 2 Contents 1 Introduction 5 2 The Remote Frame Buffer protocol 6 3 Using Desktop Sharing 7 3.1 Managing Desktop Sharing invitations.......................... 9 3.2 Quit Desktop Sharing....................................
White paper. Business Applications of Wide Area Ethernet
White paper Business Applications of Wide Area Ethernet 1 Introduction When enterprises use Ethernet as a wide area networking solution, they have the potential to realize significant gains in network
WAN optimization and acceleration products reduce cost and bandwidth requirements while speeding throughput.
BUSINESS SOLUTIONS Pumping up the WAN WAN optimization and acceleration products reduce cost and bandwidth requirements while speeding throughput. Today s data center managers are looking for improvement
White Paper. Anywhere, Any Device File Access with IT in Control. Enterprise File Serving 2.0
White Paper Enterprise File Serving 2.0 Anywhere, Any Device File Access with IT in Control Like it or not, cloud- based file sharing services have opened up a new world of mobile file access and collaborative
Measuring Wireless Network Performance: Data Rates vs. Signal Strength
EDUCATIONAL BRIEF Measuring Wireless Network Performance: Data Rates vs. Signal Strength In January we discussed the use of Wi-Fi Signal Mapping technology as a sales tool to demonstrate signal strength
WebEx. Remote Support. User s Guide
WebEx Remote Support User s Guide Version 6.5 Copyright WebEx Communications, Inc. reserves the right to make changes in the information contained in this publication without prior notice. The reader should
Http://www.passcert.com
Http://www.passcert.com Exam : 70-337 Title : Enterprise Voice & Online Services with Microsoft Lync Server 2013 Version : DEMO 1 / 18 Topic 1, Litware, Inc Case A Overview Litware, Inc., is an international
Access Instructions for United Stationers ECDB (ecommerce Database) 2.0
Access Instructions for United Stationers ECDB (ecommerce Database) 2.0 Table of Contents General Information... 3 Overview... 3 General Information... 3 SFTP Clients... 3 Support... 3 WinSCP... 4 Overview...
Installation and User Guide. MQLink Version 3.0 (Java)
Installation and User Guide MQLink Version 3.0 (Java) MQLink V3.0 (Java) User Guide Table of Contents 1 Introduction... 2 2 Installation... 2 2.1 Available from 2.2 Where to install 2.3 Installation Pre-requisites
