Reference10:Concept myPBX: Difference between revisions

From innovaphone wiki
Jump to navigation Jump to search
No edit summary
Line 55: Line 55:
== Included open source software ==
== Included open source software ==
The myPBX web application contains the following open source software:
The myPBX web application contains the following open source software:
* '''rc4.js'''
* rc4.js
   * RC4 symmetric cipher encryption/decryption
   * RC4 symmetric cipher encryption/decryption
   * Copyright (c) 2006 by Ali Farhadi.
   * Copyright (c) 2006 by Ali Farhadi.
Line 64: Line 64:
   * Website: http://farhadi.ir/
   * Website: http://farhadi.ir/


* '''sha1.js'''
* sha1.js
   *  Secure Hash Algorithm (SHA1)
   *  Secure Hash Algorithm (SHA1)
   *  http://www.webtoolkit.info/
   *  http://www.webtoolkit.info/


* '''jquery-1.7.2.js'''
* jquery-1.7.2.js
   * jQuery JavaScript Library v1.7.2
   * jQuery JavaScript Library v1.7.2
   * http://jquery.com/
   * http://jquery.com/

Revision as of 15:01, 30 October 2012

Overview

myPBX is the UC client of the innovaphone PBX. It is intended for assisting typical phone users with their everyday tasks. It consists of two parts:

  • A web application that runs in any modern web browser. It provides the functionality needed for audio teleophony, instant messaging, monitoring peoples statuses and more.
  • The myPBX launcher. It's a Windows application that integrates the myPBX web application into the Windows desktop and adds some interesting additional features like video telephony and Outlook integration.

Web application

The main user interface is an HTML5 application that runs in a web browser. It communicates with the PBX using HTTP-Requests (AJAX). The actual session logic is implemented inside the PBX.

The picture shows how call control is done. The myPBX session has access to the phone registration as they are both located in the same PBX. Thus it can monitor and create or modify calls.

myPBX launcher

The launcher is a tool for integrating myPBX into the Windows desktop. It is not needed in order to use myPBX but it adds some convenient functions that are not available otherwise.

  • Automatically open the myPBX web application on startup.
  • Desktop notifications.
  • Video telephony
  • Office2010 Integration
  • Hotkey for dialing numbers out of any Windows application.
  • Set the status depending on user activity.
  • Switch to a standby PBX if the main PBX is down.
  • Write trace files.

Requirements

PBX

  • myPBX license
  • Reporting license (for seeing recent calls in the history)

Web browser

  • Current version
  • JavaScript enabled
  • HTML5 XMLHttpRequest (AJAX) enabled
  • HTML5 Web Storage (DOMStorage) enabled
  • HTML5 Cross-document messaging (postMessage) enabled

Note: The launcher always uses Microsoft Internet Explorer for opening the web application. It does not use the configured standard browser.

Launcher

  • Windows 7
  • .NET 4

Related technology

Appendix

Network traffic

In idle state the web application needs an empty message exchange every 30 seconds in order to keep the session alive. This messages take about 800 bytes. So per session the minimum network traffic is approximately:

  • 1600 B/min
  • 94 kB/h
  • 2.2 MB/d

Included open source software

The myPBX web application contains the following open source software:

  • rc4.js
  * RC4 symmetric cipher encryption/decryption
  * Copyright (c) 2006 by Ali Farhadi.
  * released under the terms of the Gnu Public License.
  * see the GPL for details.
  *
  * Email: ali[at]farhadi[dot]ir
  * Website: http://farhadi.ir/
  • sha1.js
  *  Secure Hash Algorithm (SHA1)
  *  http://www.webtoolkit.info/
  • jquery-1.7.2.js
  * jQuery JavaScript Library v1.7.2
  * http://jquery.com/
  *
  * Copyright 2011, John Resig
  * Dual licensed under the MIT or GPL Version 2 licenses.
  * http://jquery.org/license
  *
  * Includes Sizzle.js
  * http://sizzlejs.com/
  * Copyright 2011, The Dojo Foundation
  * Released under the MIT, BSD, and GPL Licenses.
  *
  * Date: Wed Mar 21 12:46:34 2012 -0700