Universal User Interface for IMS clients

Size: px
Start display at page:

Download "Universal User Interface for IMS clients"

Transcription

1 Universal User Interface for IMS clients Do Van Thanh a, Ivar Jørstad b, Pål Løkstad c, Dao van Tran d & Do Van Thuan e a thanh-van.do@telenor.com Telenor R&D NTNU - Snarøyveien 30, NO-1331 Fornebu Norway b ivar@ubisafe.no Ubisafe - Gamleveien 252, NO-2624 Lillehammer Norway c pal.lokstad@telenor.com Telenor R&D - Snarøyveien 30, NO-1331 Fornebu Norway d dao.van.tran@telenor.com Telenor R&D - Snarøyveien 30, NO-1331 Fornebu Norway e t.do@linus.no Linus - Martin Lingesvei 15-25, NO-1367 Snarøya Norway Abstract This paper presents a solution that provides a uniform user experience over a large set of heterogeneous IMS client devices. The idea is to remove IMS client UI from the user IMS device and place it in a network server accessible everywhere in the world. The paper starts with a description of the state-of-the art IMS clients. Next, the proposed solution will be presented and the benefits in terms of flexibility and user-friendliness will be analysed carefully. The additional security features are also explained. Last but not least, a proof-of-concept implementation will be described. Keywords: IMS client, IMS client User Interface, Uniform user experience 1 Introduction One of the key success factors of IMS (IP Multimedia Subsystem) [1] is not only the availability of the IMS clients but also the user experience that the clients offer. To deploy IMS in fixed-mobile convergent environments requires a larger range of usable IMS clients for both fixed and mobile devices. The challenge lies in the fact that the diversity in terms of dimensions (e.g. display size, resolution, key board, etc.), capabilities (e.g. processing, storage, battery life, etc.) and technologies (Wireless, wired, etc.) poses serious problems for the construction of good IMS clients. In addition, it is difficult to provide a uniform user experience across a large set of heterogeneous devices. This paper presents a solution called Universal User Interface that overcomes all the mentioned issues by separating the user interface from the IMS client and moving it to a network server. The paper starts with a description of the state-of-the art IMS clients. Next, the proposed solution will be presented and the benefits in terms of flexibility and user-friendliness will be analysed carefully. The additional security features are also explained. Last but not least, a proof-of-concept implementation will be described. 2 State-of-the art IMS client Although there is no universal standard for IMS clients there are currently many activities focusing in the specification of IMS client such as the Java Community Process JSR-281 [2], Open Mobile Terminal Platform (OMTP) IMS Functional Requirements work item [3], Eurescom study P1656 Definition of an open and extendible IMS Client Framework and they all result to a quite identical architecture for the IMS client framework. Non-IMS (e.g. Browsing) Non IMS API Non-IMS Service Enablers Non-IMS Related Prot Combined Non-IMS &IMS IMS Client Framework Non-Standard (e.g. IMS based Game) Core APIs Combined (e.g.ims base Game + PoC) IMS Core (Session, QoS Mgmt, Basic Messaging, Registration & Authentication) Services APIs Standard (e.g. PoC, IM) IMS Service Enablers (Presence, IM, PoC, XDM) IMS Related Protocols & Stacks (RTP, SIP, SDP, XCAP) APIs OS Level Hardware Platform Figure 1 Architecture of an IMS enabled mobile phone proposed by Eurescom P1656 As shown in Figure 1, the IMS client framework architecture (proposed by Eurescom P1656) is structured in four main layers: Hardware Platform: This layer comprises all the hardware elements (e.g. Camera, Display, UICC (Universal Integrated Circuit Card), etc.) available on the device. OS Level: This layer gathers all the software modules built on top of the hardware platform. Its main responsibility is implementing the functionality needed in order to offer mobile services. This level includes also the IMS Service Enablers that offers functionality to the end-to-end services. APIs: The API layer exposes the functionality implemented in the OS Level via a programmatic interface that makes possible application development. Although the API layer has been represented as a single module for the sake of the

2 simplicity it is also possible to have different API sets (e.g. Java, C++, etc.) using a single OS Level Framework. This layer includes IMS Core APIs, IMS service APIs and also non-ims APIs. : This layer comprises all the applications available on the device in order to offer a service to end-user (e.g. a game, an Instant Messaging Client, etc.). The user interface is also included in this layer. There is no doubt that the proposed IMS client framework will alleviate the construction of IMS client since all the necessary IMS functions are made available through the standardised IMS Core APIs and IMS service APIs. In addition, the portability of the clients is considerably improved but some modifications are still required to adapt the user interface to the specific physical dimension of the devices like screen size, resolution, keyboard, pointing device, etc. With the diversity of IMS devices this can be a tedious task. 3 The Universal user interface solution The most direct way to circumvent the problem of user interface is to remove it completely from the IMS user device. Indeed, we propose to move the user interface of the IMS client to a network server. Browser Non IMS API Non-IMS Service Enablers Non-IMS Prot IMS Core API IMS Core http App. level IMS Service Enablers IMS Related Protocols & Stacks Hardware Platform User Mobile phones PCs Services APIs OS level Internet IP Network IMS Client User Interface Web Server IMS Service Enabler Server IMS CORE Figure 2 Overall architecture of the Universal user interface IMS API As shown in Figure 2, there will be no IMS client application offering interface to the user. Instead, a regular browser e.g. Opera, Internet explorer, Mozilla, Nokia, etc. is used to communicate with an IMS Client User Interface Server. After proper login and authentication, the Client User Interface Server will generate IMS Client Web pages that are tailored to fit both the browser in use and the preferences of the user. In fact, the IMS Client Web pages are acting as an intelligent IMS Client which is capable to adapt itself. The customisation for the user can be done according to: o The functionality of the IMS Client o The look and feel of the IMS Client 3.1 Dynamic User Interface To achieve high level of dynamicity, JSP (Java Server Page)[6] is used to match cascading style sheets (CSS) [7] to different user agents or browsers. The style and layout information of a document is specified according to CSS rules and stored in a separate document called style sheet. To change the look and feel of a document in a browser, one just needs to alter the CSS style sheet or preferably use another style sheet. This feature is very useful in the mobile world where mobile phones have very varied characteristics such as screen size, resolution, etc. To obtain best presentation of a given content on a mobile device, a CSS style sheet is made for it. To illustrate how JSP matches CSS style sheet for a browser let us consider three browsers: Nokia's mobile phone browsers, Sony Ericsson's mobile phone browsers and desktop Web browsers The CSS style sheet for Nokia is as follows: h1 { font-weight: normal; text-align: center For Sony Ericsson the heading should be displayed in bold type and aligned left as follows: h1 { font-weight: bold; text-align: left As desktop computers have large screens, the text shall be displayed in extra large as follows: size.body { font-size: x-large The sample JSP code demonstrating how to match CSS cascading style sheets to different client browsers by detecting the user agent when the XHTML document is requested is shown in Figure 3. The following sequence of actions has been executed: 1. The user-agent HTTP header value is obtained and is assigned to the variable uaheader. String uaheader = request.getheader("useragent"); 2. The variable uaheader is checked to see whether it contains the words "Nokia", "SonyEricsson" or "Mozilla". The indexof(string str) method of the

3 String object returns the index of the first occurrence of the str substring. If str is not found, -1 is returned by the indexof(string str) method. In other words, if str is found, the return value will not be -1. If the variable uaheader contains "Nokia", it means the user agent is a Nokia mobile phone browser and the URL of the external cascading style sheet is changed to nokia.css. <?xml version="1.0"?> <!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" " <html xmlns=" <head> String uaheader = request.getheader("user-agent"); if (uaheader.indexof("nokia")!= -1){ <link href="nokia.css" else if (uaheader.indexof("sonyericsson")!= -1){ <link href="sonyericsson.css" else if (uaheader.indexof("mozilla")!= - 1){ <link href="webbrowser.css" <title>ims CLIENT PROTOTYPE</title> </head> <body> <h1>hello, welcome to our IMS Client.</h1> <hr/> <p> Function Menu:<br/> IMS Function 1<br/> IMS Function 2<br/> IMS Function 3<br/> </p> </body> </html> Figure 3 Sample of JSP code to match CSS cascading style sheets to different client browsers if (uaheader.indexof("nokia")!= -1){ <link href="nokia.css" Otherwise if the variable uaheader contains "SonyEricsson", it means the user agent is a Sony Ericsson mobile phone browser and the URL of the external cascading style sheet is changed to sonyericsson.css. else if (uaheader.indexof("sonyericsson")!= -1){ <link href="sonyericsson.css" Otherwise if the variable uaheader contains "Mozilla", it means the user agent is a desktop web browser (like IE, Firefox and Mozilla) and the URL of the external cascading style sheet is changed to webbrowser.css. else if (uaheader.indexof("mozilla")!= - 1){ <link href="webbrowser.css" Note that we have to check for the word "Mozilla" in the last "else if" statement since the user-agent header value of some mobile phone browsers may contain the word "Mozilla" and this can lead to a wrong identification. 3.2 Interfacing with IMS The IMS Client User Interface server is communicating to the IMS Service Enabler Server on the network side via IMS APIs which are implemented as a Web service APIs (Application Programme Interface). This interface enables the establishment of IMS sessions by enabling the invocation of appropriate IMS methods upon the user s request. The following IMS APIs are implemented:

4 o o o Call Handling: o makecall: This operation requests to setup a voice call between two addresses, calling Party and called Party, provided that the invoking application is allowed to connect them. o getcallinformation: This operation retrieves the current status, call Information of the call identified by CallIdentifier. o endcall: This operation terminates the call identified by callidentifier. o cancelcall: This operation cancels the previously requested call identified by callidentifier. Presence Handling: o publishpresence: This operation provides presence information to the Presence server o subscribepresence: This operation enables a watcher to subscribe and receive presence information state changes of a presentity Push to Talk: o initializepttservice: This operation initializes the PTT service o PTTcalling: This operation allows to make a PTT call to a PTT contact o addcontact: This operation adds the name and phone number of a contact. An invitation to join the PTT contact will be sent and once the invitation is accepted, the invited person joins the PTT contacts of the inviting person and vice versa. o Messaging: o sendmessage: This operation sends a message to a phone number. Although rather simple the offered APIs are quite powerful and enable the construction of a plurality of IMS clients with different functionalities offering different flavour of rich communications. 3.3 Interacting with the terminal device In the proposed solution, for each IMS request, it is the IMS Client User Interface server and not the user s terminal device that is initiating a session between the user s device and the callee s device. On both the user s device and the callee s device, the communicating user agent could be an IMS client, a generic IETF SIP agent or a GSM voice application. In order to be able to establish the session, the IMS Client User Interface will need to have an identifier to address both the user s device and the one s of the callee. The identification of user s device is done at login and authentication to the IMS Client User Interface server, which is based on the SIM card. For a regular GSM phone, the MSISDN, i.e. mobile phone number will be used in the establishment of the session. For a device with an IMS client the IMPI (IMS private identity) will be used while for a device with native IETF SIP agent, it could be an IP address or a PDP (Packet Data Protocol) context. 3.4 Additional security features In terms of security, the 3GPP has only specified the registration, authentication and authorisation of the IMS client using the ISIM/USIM [5]. Now that the browser is used as user interface to the IMS, it is necessary to have new registration and authentication mechanisms. It is also crucial that these mechanisms are both sufficiently secure and user friendly. Again, the diversity of devices creates problem since one mechanism may not fit to some devices due to physical limitations. It is necessary to have several authentication mechanisms and for the Universal User Interface there are proposed three as follows: Generic Bootstrapping Architecture (GBA) [8] for 3G phones: This standard 3GPP authentication scheme will use the USIM/ISIM to authenticate the user accessing IMS Client User Interface server using the browser on the mobile phone. SIM Strong Authentication over SMS [9] for 2G phones: In the case of a regular GSM phone with browser, the authentication is done using the EAP- SIM (Extensible Authentication Protocol SIM) [10] using the SIM card and SMS (Short Message Service) as bearer. SIM strong Authentication for PC: When the user is using a PC the authentication is done using a SIM dongle (i.e. a USB dongle hosting a SIM card), a PCMCIA card with mounted SIM, a SIM installed in the embedded SIM slot on the PC or a mobile phone communicating with the PC via Bluetooth. The protocol used is the EAP-SIM over Ethernet. 4 The benefits of the solution The proposed Universal user interface solution has many advantages compared to the current IMS clients in many respects. 4.1 Universal accessibility As per today the biggest hindrance for the full commercial deployment is the availability of IMS mobile terminals. The few current samples from major handset manufacturers are rather poor in terms of functionality and quality. In addition, they are not

5 interoperable and do not offer a uniform experience to the user. This has motivated a group of key operators, infrastructure and device vendors comprised of Orange, Telecom Italia, Telefónica, TeliaSonera, Ericsson, Nokia Siemens Networks, Nokia, Sony Ericsson and Samsung, to initiate the Rich Communication Suite initiative in February With the Universal user interface solution, a universal IMS client will be available and accessible on any fixed or mobile terminal devices having a Web browser. By providing such a broad availability the Universal user interface solution will contribute to the promotion and success of IMS. 4.2 Adaptability to a wide range of terminals As shown in earlier sections, the Universal user interface solution can provide adaptation and optimization for any terminal device, fixed or mobile in a quite simple way. The solution can support both devices equipped with IMS client and devices with only native voice telephony e.g. GSM voice. contact list at device replacement. The proposed solution provides a centralised contact list which is device independent and accessible from anywhere. 5 Proof-of-concept implementation A proof-of-concept implementation of the Universal User Interface has been completed by Telenor, Gemalto, Ubisafe, Linus and Oslo University College in collaboration with Alcatel Lucent Technologies and Ulticom. The implementation is carried out within the scope of the EUREKA Mobicome project. A demonstration of the Universal User Interface was shown at the Mobile World Congress in Barcelona, Spain, February Flexibility for introduction of new functionality The proposed solution alleviates to the development of new IMS clients with new functionality and different flavours of rich communication. The deployment of new IMS clients is both simple and fast since it requires only installation at the operator s server. On the other hand, the solution will reach all the devices, fixed or mobile, old or new. 4.4 Operator customisation In a way, the Universal user interface solution proposes a centralised networked IMS client hosted on an operator s server. The operator will hence have the opportunity to customise and tailor different IMS clients to different customer segments. The customisation can include both functionality and look and feel. Figure 4 Example of an IMS Client UI on Internet Explorer 4.5 User personalisation To meet the user s needs and expectations, the proposed solution enables also user personalisation of the IMS client in terms of both functionality and presentation. The user can then have his own IMS client that can be accessible anytime anywhere on any device having a Web browser. 4.6 Sharing of contact list One obvious advantage of the Universal user interface is the possibility to have a centralised contact list. Currently, people have different contact lists on different devices, e.g. mobile phone, PDA, PC, etc. and there is a need for a content synchronisation of these dispersed contact lists. This task is as cumbersome and time consuming as it is unreliable and inconsistent. Furthermore, there is a need of recovering the old Figure 5 Example of IMS UI on mobile phone Since it is only a proof-of-concept only VoiP is implemented and the user is only allowed to make phone calls by accessing IMS Client User Interface server. The other services like PoC, Presence, IM, Video sharing, etc. will be gradually introduced in later versions.

6 The user personalisation of the IMS client is also experimented and the results are quite promising. The most challenging issue is to reduce the number clicks that require to navigate and login to the IMS Client User Interface server. Currently, it requires 9 clicks, which is too much. The best solution is to have a soft-key on the desktop screen allowing direct jump to the IMS Client User Interface server. A second challenge is to reduce the time needed to establish sessions to the same level as for current calls. Figure 4 and Figure 5 illustrate example of GUI for a user on PCs and mobile phones. 6 Conclusion In this paper, an innovative IMS client implementation, called Universal user interface is introduced. With this implementation, the IMS client UI is removed from the handset and moved to an IMS Client User Interface Server on the network. The solution enables the support and provision of IMS clients for a wide range of both fixed and mobile terminal devices at the same time as operator customisation and user personalisation are offered. The solution has proven to be feasible by the realisation of a proof-of-concept. The most challenging issue is still how to provide a good and uniform user experience over all the devices. The implemented prototype shows that it takes many clicks to navigate and login to the IMS Client User Interface Server and a little bit long time to establish a call. Further works will hence be focused on finding remedies for the mentioned issues. In addition, the other IMS services like PoC, Presence, IM, video sharing will also be introduced to enable the realisation of rich communications. [7] W3C: Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification - W3C Candidate Recommendation 19 July 2007 [8] 3rd Generation Partnership Project: 3GPP TR V7.4.0 ( ) Digital cellular telecommunications system (Phase 2+); Universal Mobile Telecommunications System (UMTS); SIM card based Generic Bootstrapping Architecture (GBA); Early implementation feature (3GPP TR version Release 7) [9] Do Van Thanh, Tore Jønvik, Do Van Thuan & Ivar Jørstad: Enhancing Internet service security using GSM SIM authentication, Proceedings of the IEEE Globecom 2006 conference ISBN X San Francisco, USA, Nov 27 - Dec 1, 2006 [10] IETF (2006), RFC4186: Extensible Authentication Protocol Method for Global System for Mobile Communications (GSM) Subscriber Identity Modules (EAP-SIM) 7 References [1] 3rd Generation Partnership Project; Technical Specification Group Services and System Aspects; IP Multimedia Subsystem (IMS); Stage 2 (Release 8) - 3GPP TS V8.3.0 ( ) [2] Java community Process: JSR IMS Services API 0.95 Proposed Final Draft for Documentation [3] Open Mobile Terminal Platform: OMTP IMS Functional Requirements - Version: May 2007 [4] Eurescom study P1656 Definition of an open and extendible IMS Client Framework series/p1656/default.asp [5] 3rd Generation Partnership Project- Technical Specification Group Services and System Aspects: Technical Report Security aspects of early IP Multimedia Subsystem (IMS) (Release 7) 3GPP TR V7.0.0 ( ) [6] Java Community Process: Java Specification Requests JSR 245: JavaServerTM Pages May, 2006

IMS Client Framework for All IP-Based Communication Networks

IMS Client Framework for All IP-Based Communication Networks IMS Client Framework for All IP-Based Communication Networks D. Jayaram, S. Vijay Anand, Vamshi Raghav, Prashanth Kumar, K. Riyaz & K. Kishan Larsen & Toubro InfoTech Limited Research and Development Group,

More information

Ubiquitous Access to Personalised Services

Ubiquitous Access to Personalised Services Ubiquitous Access to Personalised Services 1 Tore E. J{lSnvik, 2 Anne Marie Hartvigsen & 3 Do van Thanh 1. Unik - University of Oslo - Norway - tif: +4790199176 - torejoen@iji.uio.no 2. AgderUniversity

More information

PTT + IMS = PTM - Towards Community/Presence-based IMS Multimedia Services

PTT + IMS = PTM - Towards Community/Presence-based IMS Multimedia Services PTT + IMS = PTM - Towards Community/Presence-based IMS Multimedia Services Niklas Blum Fraunhofer Institute FOKUS Next Generation Network Integration Kaiserin-Augusta-Allee 31, 10589 Berlin, Germany niklas.blum@fokus.fraunhofer.de

More information

Forschungszentrum Telekommunikation Wien. OpenSER IMS. Joachim Fabini Institute of Broadband Communications Vienna University of Technology

Forschungszentrum Telekommunikation Wien. OpenSER IMS. Joachim Fabini Institute of Broadband Communications Vienna University of Technology Forschungszentrum Telekommunikation Wien OpenSER IMS Joachim Fabini Institute of Broadband Communications Vienna University of Technology Agenda IMS-related projects at ftw. CAMPARI IMS Testbed Architecture

More information

PacketCable 2.0. HSS Technical Report PKT-TR-HSS-V RELEASED. Notice

PacketCable 2.0. HSS Technical Report PKT-TR-HSS-V RELEASED. Notice PacketCable 2.0 HSS Technical Report RELEASED Notice This PacketCable technical report is the result of a cooperative effort undertaken at the direction of Cable Television Laboratories, Inc. for the benefit

More information

System Architecture Model Version 1.1 WV Tracking Number: WV-020

System Architecture Model Version 1.1 WV Tracking Number: WV-020 System Architecture Model Version 1.1 WV Tracking Number: WV-020 Notice Copyright 2001-2002 Ericsson, Motorola and Nokia. All Rights Reserved. Implementation of all or part of any Specification may require

More information

Presence SIMPLE Architecture

Presence SIMPLE Architecture Presence SIMPLE Architecture Candidate Version 1.1 28 Jan 2008 Open Mobile Alliance OMA-AD-Presence_SIMPLE-V1_1-20080128-C OMA-AD-Presence_SIMPLE-V1_1-20080128-C Page 2 (21) Use of this document is subject

More information

IMS Client Platform and IMS End-to-End

IMS Client Platform and IMS End-to-End IMS Client Platform and IMS End-to-End Piotr Kessler Peter Yeung Ericsson AB http://www.ericsson.com Ericsson AB http://www.ericsson.com TS-3234 End-to-End IMS Services Toolbox for Easy Development and

More information

Adapting Functionality for Mobile Terminals

Adapting  Functionality for Mobile Terminals Adapting Email Functionality for Mobile Terminals Jon-Finngard Moe 1, Eivind Sivertsen 1, and Do van Thanh 2 1 Norwegian University of Science and Technology, 7491 Trondheim, Norway {jonfinng, eivindsi}@stud.ntnu.no

More information

ETSI TS V ( )

ETSI TS V ( ) TS 124 315 V14.0.0 (2017-03) TECHNICAL SPECIFICATION Universal Mobile Telecommunications System (UMTS); LTE; IP Multimedia Subsystem (IMS) Operator Determined Barring (ODB); Stage 3: protocol specification

More information

Services in the IMS ecosystem

Services in the IMS ecosystem 285 23-3109 Uen Rev A Services in the IMS ecosystem February 2007 White Paper Different services have different demands and require different approaches Contents 1 Executive summary. 3 2 Introduction..

More information

Software interoperability in the NGN Service layer

Software interoperability in the NGN Service layer Software interoperability in the NGN Service layer Dave Penkler CTO OpenCall, HP 2004 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice Presentation

More information

Open Standards and Interoperability for IP Multimedia Subsystem (IMS)

Open Standards and Interoperability for IP Multimedia Subsystem (IMS) Open Standards and Interoperability for IP Multimedia Subsystem (IMS) Jonas SUNDBORG Director of Standardization and Regulation Telefonaktiebolaget LM Ericsson Group Function R&D, Standardization Standards,

More information

IP multimedia in 3G. Structure. Author: MartinHarris Orange. Understanding IP multimedia in 3G. Developments in 3GPP. IP multimedia services

IP multimedia in 3G. Structure. Author: MartinHarris Orange. Understanding IP multimedia in 3G. Developments in 3GPP. IP multimedia services IP multimedia in 3G Author: MartinHarris Orange slide 1 Structure Understanding IP multimedia in 3G Developments in 3GPP IP multimedia services IMS challenges and open issues IP multimedia roadmap slide

More information

A Web Services based Architecture for NGN Services Delivery

A Web Services based Architecture for NGN Services Delivery A Web Services based Architecture for NGN Services Delivery K. Rezabeigi, A. Vafaei, N. Movahhedinia Abstract The notion of Next Generation Network (NGN) is based on the Network Convergence concept which

More information

Next Generation 112 ecall

Next Generation 112 ecall Next Generation 112 ecall ecall Final Event - Brussels 15 th May 2018 Harold Linke Luxembourg Agenda Introduction Next Generation ecall Migration Path Satellite and ecall Proof of Concept How ecall works

More information

Towards the Convergence between IMS and Social Networks

Towards the Convergence between IMS and Social Networks Towards the Convergence between IMS and Social Networks Ramon Alcarria, Tomas Robles Telematics Department Technical University of Madrid Madrid, Spain {ralcarria, trobles}@dit.upm.es Gonzalo Camarillo

More information

The Role and Contribution of OMA in Service Delivery Platform Standardization

The Role and Contribution of OMA in Service Delivery Platform Standardization The Role and Contribution of OMA in Service Delivery Platform Standardization ITU-T SDP Workshop 17 October 2011 Musa Unmehopa Technical Plenary Chairman, OMA Senior Manager, Alcatel-Lucent What I ll be

More information

The JSR 281 IMS Services API: Time to Deliver

The JSR 281 IMS Services API: Time to Deliver YOUR LOGO HERE TS-5102 The JSR 281 IMS Services API: Time to Deliver Stefan Svenberg and Niclas Palm IMS Java Standardisation Ericsson AB http://www.ericsson.com 2007 JavaOne SM Conference Session TS-5102

More information

This is a sample chapter of WebRTC: APIs and RTCWEB Protocols of the HTML5 Real-Time Web by Alan B. Johnston and Daniel C. Burnett.

This is a sample chapter of WebRTC: APIs and RTCWEB Protocols of the HTML5 Real-Time Web by Alan B. Johnston and Daniel C. Burnett. This is a sample chapter of WebRTC: APIs and RTCWEB Protocols of the HTML5 Real-Time Web by Alan B. Johnston and Daniel C. Burnett. For more information or to buy the paperback or ebook editions, visit

More information

Mobile Computing #MC05 Internet Protocol and Mobile Computing

Mobile Computing #MC05 Internet Protocol and Mobile Computing Mobile Computing #MC05 Internet Protocol and Mobile Computing CS60002: Distributed Systems Winter 2006-2007 Where we left off... Device databases Flash, OR/direct Synchronization Algorithms Push/notifications

More information

IMS Multimedia for the mass market. Sven Åkesson Director IMS Strategy and business planning Ericsson

IMS Multimedia for the mass market. Sven Åkesson Director IMS Strategy and business planning Ericsson IMS Multimedia for the mass market Sven Åkesson Director IMS Strategy and business planning Ericsson The mobile community is growing Growth in Mobile Subscriptions and Internet Users Mobile Subscriptions

More information

Cisco Converged Services Platform

Cisco Converged Services Platform Data Sheet Cisco Converged Services Platform Mobile subscribers are demanding the same type of services that are provided over the Internet on their mobile phones including messaging, social networking,

More information

IMS: Lessons Learned. Brough Turner SVP & CTO

IMS: Lessons Learned. Brough Turner SVP & CTO IMS: Lessons Learned Brough Turner SVP & CTO Tomorrow s Communications Network One core network with any access Based on IP Wireline and wireless transparency Standardized signaling based on extensions

More information

A NOVEL MECHANISM FOR MEDIA RESOURCE CONTROL IN SIP MOBILE NETWORKS

A NOVEL MECHANISM FOR MEDIA RESOURCE CONTROL IN SIP MOBILE NETWORKS A NOVEL MECHANISM FOR MEDIA RESOURCE CONTROL IN SIP MOBILE NETWORKS Noël CRESPI, Youssef CHADLI, Institut National des Telecommunications 9, rue Charles Fourier 91011 EVRY Cedex FRANCE Authors: N.Crespi,

More information

Orange Liberty-enabled solution for 71 million subscribers. Aude Pichelin Orange Group Standardisation Manager

Orange Liberty-enabled solution for 71 million subscribers. Aude Pichelin Orange Group Standardisation Manager Orange Liberty-enabled solution for 71 million subscribers Aude Pichelin Orange Group Standardisation Manager Aude.pichelin@orangefrance.com Orange, Orange, 3GSM 3GSM Barcelona, Barcelona, February 15,

More information

Fixed Mobile Convergence

Fixed Mobile Convergence Cisco Expo 2006 Fixed Mobile Convergence Business Track Bo Finnemann Cisco DK 2006 2006 Cisco Systems, Inc. All rights reserved. Cisco Public 1 Agenda, Fixed Mobile Convergence Market Perspective What

More information

Interactive Distance Learning based on SIP

Interactive Distance Learning based on SIP S. Sae-Wong, T. Kamolphiwong, S. Kamolphiwong, and N. Wittayasirikul Centre for Network Research (CNR), Department of Computer Engineering, Faculty of Engineering, Prince of Songkla University, Hatyai,

More information

IP Multimedia Subsystem(IMS) and Its Applications

IP Multimedia Subsystem(IMS) and Its Applications KNOM Conference April 26 ~ 27 2007 IP Multimedia Subsystem(IMS) and Its Applications 2007. 4. 26 Jun-Won Lee 1 Contents IMS Overview IMS Architecture Contents IMS Applications IMS Enablers & Clients 2

More information

Guidelines for generic UI elements: extension for 3G mobile devices, services and applications

Guidelines for generic UI elements: extension for 3G mobile devices, services and applications Guidelines for generic UI elements: extension for 3G mobile devices, services and applications Bruno von Niman, Pekka Kettola, Matthias Schneider, and David Williams ETSI STF 322 msch@acm.org (bruno@vonniman.com

More information

Mobile Wireless working Group

Mobile Wireless working Group Mobile Wireless working Group Bosco Eduardo Fernandes VP Siemens Ag, UMTSF CHAIRMAN ICT GROUP (IT Media, Applications & Content) IPv6TF CHAIRMAN MWWG e-mail:bosco.fernandes@icn.siemens.de icn.siemens.de

More information

Fixed Mobile Convergence

Fixed Mobile Convergence Fixed Mobile Convergence Daniel McHugh Solutions Manager dmchugh2@alcatel-lucent.com www.alcatel-lucent.com Fixed Mobile Convergence Fixed Mobile Convergence (FMC) provides common and seamless services

More information

ETSI TS V8.1.0 ( ) Technical Specification

ETSI TS V8.1.0 ( ) Technical Specification TS 124 173 V8.1.0 (2008-10) Technical Specification Universal Mobile Telecommunications System (UMTS); IMS Multimedia telephony service and supplementary services; Stage 3 (3GPP TS 24.173 version 8.1.0

More information

3GPP TS V ( )

3GPP TS V ( ) 3GPP TS 24.379 V13.1.1 (2016-06) Technical Specification 3rd Generation Partnership Project; Technical Specification Group Core Networks and Terminals; Mission Critical Push To Talk (MCPTT) call control;

More information

2. SA1 Release 11 Standardization Trends

2. SA1 Release 11 Standardization Trends 3GPP SA1 Release 11 Standardization Trends 3GPP SA1 Service Requirements Release 11 3GPP SA1 Release 11 Standardization Trends NTT DOCOMO Technical Journal At the 3GPP, which standardizes mobile communications

More information

ETSI TS V ( )

ETSI TS V ( ) TECHNICAL SPECIFICATION Universal Mobile Telecommunications System (UMTS); LTE; Presentation layer for 3GPP services () 1 Reference RTS/TSGS-0426307vf00 Keywords LTE,UMTS 650 Route des Lucioles F-06921

More information

CDMA2000 Workshop. Paul Le Rossignol. Nortel Networks, OMA Board Director

CDMA2000 Workshop. Paul Le Rossignol. Nortel Networks, OMA Board Director CDMA2000 Workshop Paul Le Rossignol Nortel Networks, OMA Board Director Open Mobile Alliance 1 2 3 4 Vision and Mission of OMA OMA s Market Position & Industry Benefits Structure & Scope OMA Interoperability

More information

IP Multimedia Subsystem and its protocols: a step to convergence

IP Multimedia Subsystem and its protocols: a step to convergence IP Multimedia Subsystem and its protocols: a step to convergence Ewa Gałczyńska, Wojciech Zabierowski, Andrzej Napieralski Abstract- Today s world has been changing drastically over few past years in aspect

More information

ETSI TS V7.4.0 ( )

ETSI TS V7.4.0 ( ) TS 124 279 V7.4.0 (2007-03) Technical Specification Universal Mobile Telecommunications System (UMTS); Combining Circuit Switched (CS) and IP Multimedia Subsystem (IMS) services; Stage 3 (3GPP TS 24.279

More information

Location in SIP/IP Core (LOCSIP)

Location in SIP/IP Core (LOCSIP) in SIP/IP Core (LOCSIP) Conveyance with IMS: the OMA LOCSIP Service Enabler Don Lukacs Telcordia Applied Research 2010, Telcordia Technologies Inc. in SIP/IP Core (LOCSIP) Topics General Background Material

More information

Why we need a single. SIP <--> ISUP Release. Cause mapping FORUM. 3GPP CT3 Chairman. Dr. Ragnar Huslende. presented by. May 26, 2011.

Why we need a single. SIP <--> ISUP Release. Cause mapping FORUM. 3GPP CT3 Chairman. Dr. Ragnar Huslende. presented by. May 26, 2011. i3 FORUM www.i3forum.org Why we need a single SIP ISUP Release Cause mapping presented by Dr. Ragnar Huslende Ericsson 3GPP CT3 Chairman May 26, 2011 Agenda Why is an unambiguous SIP ISUP mapping

More information

Standardization Trends of the Next Generation Network in ETSI TISPAN

Standardization Trends of the Next Generation Network in ETSI TISPAN Standardization Trends of the Next Generation Network in ETSI TISPAN Akira Kurokawa and Isao Higashi Abstract International standardization of the Next Generation Network is being actively discussed in

More information

ETSI TS V (201

ETSI TS V (201 TS 124 481 V13.3.0 (201 17-01) TECHNICAL SPECIFICATION LTE; Mission Critical Services (MCS) group management; Protocol specification (3GPP TS 24.481 version 13.3.0 Release 13) 1 TS 124 481 V13.3.0 (2017-01)

More information

Position Statement for Multi-Modal Access

Position Statement for Multi-Modal Access Information and Communication Mobile Position Statement for Multi-Modal Access 26.11.2001 Authors: Nathalie Amann, SRIT (E-Mail: Nathalie.Amann@SRIT.siemens.fr) Laurent Hue, SRIT (E-Mail: Laurent.Hue@SRIT.siemens.fr)

More information

Multimedia Technologies for Convergent Networks

Multimedia Technologies for Convergent Networks Dr. Marwan Jabri Founder and CTO Dilithium Networks Multimedia Technologies for Convergent Networks IMTC Spring Forum May 11, 2006 3G/Broadband Video/Multimedia Services Real Time Conversational Video

More information

3GPP SIP Security Requirements for IETF

3GPP SIP Security Requirements for IETF S3z010127 3GPP SIP Security Requirements for IETF Jari Arkko Ericsson Nice, France 13th-14th 14th September 2001 Background 1. 3GPP has been developing new SIP solutions 2. IETF SIPPING WG requests for

More information

Medical Sensor Application Framework Based on IMS/SIP Platform

Medical Sensor Application Framework Based on IMS/SIP Platform Medical Sensor Application Framework Based on IMS/SIP Platform I. Markota, I. Ćubić Research & Development Centre, Ericsson Nikola Tesla d.d. Poljička cesta 39, 21000 Split, Croatia Phone: +38521 305 656,

More information

Interoperability & Global PoC Standards

Interoperability & Global PoC Standards CDG Technology Forum CDMA PoC: Interoperability & Global PoC Standards Kalle Ahmavaara, Nokia, CDMA2000 Standardization kalle.ahmavaara@nokia.com 1 NOKIA San Diego, June 30 th, 2004 Interoperability between

More information

Experiences and hopes of an IMS based approach to FMC

Experiences and hopes of an IMS based approach to FMC Experiences and hopes of an IMS based approach to FMC Enrico Scarrone Telecom Italia Standards and IPR Department Chairman 3GPP TSG SA WG1 Enrico.Scarrone@TelecomItalia.It +39 3356121214 1 IP Multimedia

More information

Wireless LAN Based GPRS Support Node

Wireless LAN Based GPRS Support Node Wireless LAN Based GPRS Support Node Vincent W.-S. Feng, Lin-Yi Wu, Yi-Bing Lin, and Whai-En Chen Department of Computer Science & Information Engineering National Chiao Tung University vincentfeng@itri.org.tw

More information

Request for Comments: 4083 Category: Informational May 2005

Request for Comments: 4083 Category: Informational May 2005 Network Working Group M. Garcia-Martin Request for Comments: 4083 Nokia Category: Informational May 2005 Input 3rd-Generation Partnership Project (3GPP) Release 5 Requirements on the Session Initiation

More information

Ekiga. Free IP Telephony. LinuxTag 31 May Damien Sandras

Ekiga. Free IP Telephony. LinuxTag 31 May Damien Sandras Ekiga Free IP Telephony LinuxTag 31 May 2008 Content (1) About Myself 30 Years of VoIP What is Ekiga The Ekiga Team History Why Standards? A Few Words About SIP Content (2) Ekiga 3.00 Post-Ekiga 3.00 Demonstration

More information

GPRS and UMTS T

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

More information

P2PSIP, ICE, and RTCWeb

P2PSIP, ICE, and RTCWeb P2PSIP, ICE, and RTCWeb T-110.5150 Applications and Services in Internet October 11 th, 2011 Jouni Mäenpää NomadicLab, Ericsson Research AGENDA Peer-to-Peer SIP (P2PSIP) Interactive Connectivity Establishment

More information

TIM Specification for Gm Interface between an User Equipment and the Fixed IMS Network: MultiMedia Telephony Supplementary Services

TIM Specification for Gm Interface between an User Equipment and the Fixed IMS Network: MultiMedia Telephony Supplementary Services TIM Specification for Gm Interface between an User Equipment and the Fixed IMS Network: MultiMedia Telephony Supplementary Services Rev. 1.1 06/11/2018 1 INDICE DEGLI ARGOMENTI 1. SCOPE... 3 2. APPLICABILITY...

More information

Push-to-Revenue: Maximizing Potential Beyond Basic Push-to-Talk. David Wetherelt, Director International Carrier Sales

Push-to-Revenue: Maximizing Potential Beyond Basic Push-to-Talk. David Wetherelt, Director International Carrier Sales Push-to-Revenue: Maximizing Potential Beyond Basic Push-to-Talk David Wetherelt, Director International Carrier Sales Push-to-Talk: The Application Driving Today s Market The First Killer Application For

More information

BEYOND AUTHENTICATION IDENTITY AND ACCESS MANAGEMENT FOR THE MODERN ENTERPRISE

BEYOND AUTHENTICATION IDENTITY AND ACCESS MANAGEMENT FOR THE MODERN ENTERPRISE BEYOND AUTHENTICATION IDENTITY AND ACCESS MANAGEMENT FOR THE MODERN ENTERPRISE OUR ORGANISATION AND SPECIALIST SKILLS Focused on delivery, integration and managed services around Identity and Access Management.

More information

IP Multimedia Subsystem Part 5 Marek Średniawa

IP Multimedia Subsystem Part 5 Marek Średniawa IP Multimedia Subsystem Part 5 Marek Średniawa mareks@tele.pw.edu.pl Institute of Telecommunications Project is co-financed by European Union within the European Social Fund 1 Identification in IMS Identities

More information

The WAP Roadmap. Short Term Goals for WAP

The WAP Roadmap. Short Term Goals for WAP The WAP Roadmap Authors: Alastair Angwin, WAP Specification Committee / IBM UK Laboratories (alastair_angwin@uk.ibm.com) Bill Coan, WAP Specification Committee / AT&T Wireless Services / Global Operators

More information

Minne menet, Mobiili-Java?

Minne menet, Mobiili-Java? Minne menet, Mobiili-Java? Java Platform, Micro Edition Status and Future Directions Antero Taivalsaari Sun Microsystems, Inc. December 2005 Growth Continues (2005 vs. 2003) 1 Billion Installed Base as

More information

IP MULTIMEDIA SUBSYSTEM (IMS) SECURITY MODEL

IP MULTIMEDIA SUBSYSTEM (IMS) SECURITY MODEL International Journal of Advance Research, IJOAR.org ISSN 2320-9194 1 International Journal of Advance Research, IJOAR.org Volume 1, Issue 3, March 2013, Online: ISSN 2320-9194 IP MULTIMEDIA SUBSYSTEM

More information

3GPP TS V6.4.0 ( )

3GPP TS V6.4.0 ( ) TS 22.234 V6.4.0 (2006-06) Technical Specification 3rd Generation Partnership Project; Technical Specification Group Services and System Aspects; Requirements on system to Wireless Local Area Network (WLAN)

More information

ETSI TS V (201

ETSI TS V (201 TS 124 484 V13.3.0 (201 17-01) TECHNICAL SPECIFICATION LTE; Mission Critical Services (MCS) configuration management; Protocol specification (3GPP TS 24.484 version 13.3.0 Release 13) 1 TS 124 484 V13.3.0

More information

COPYRIGHTED MATERIAL. Contents. 1 Short Message Service and IP Network Integration 1. 2 Mobility Management for GPRS and UMTS 39

COPYRIGHTED MATERIAL. Contents. 1 Short Message Service and IP Network Integration 1. 2 Mobility Management for GPRS and UMTS 39 Acknowledgments Introduction xv xvii 1 Short Message Service and IP Network Integration 1 1.1 SMS-IP Integration with SM-SC 3 1.1.1 NCTU Short Message System 4 1.1.2 Statistics for SMS Delivery 7 1.2 isms

More information

PROPOSAL THESIS RESEACH IP MULTIMEDIA PACKET DELAY AND TRAFFIC ANALYSIS

PROPOSAL THESIS RESEACH IP MULTIMEDIA PACKET DELAY AND TRAFFIC ANALYSIS PROPOSAL THESIS RESEACH IP MULTIMEDIA PACKET DELAY AND TRAFFIC ANALYSIS Author DHANNY PERMATASARI PUTRI 55412110012 MAGISTER TELECOMMUNICATION PROGRAMME ELECTRO DEPARTEMENT UNIVERSITAS MERCU BUANA JAKARTA

More information

Olli Jussila Adaptive R&D TeliaSonera

Olli Jussila Adaptive R&D TeliaSonera Olli Jussila Adaptive R&D TeliaSonera Agenda TeliaSonera at a glance Project presentation Technical results Business model and actor benefits End user experience Dissemination activities Conclusion 23/02/07

More information

3GPP TS V8.7.0 ( )

3GPP TS V8.7.0 ( ) TS 23.237 V8.7.0 (2010-03) Technical Specification 3rd Generation Partnership Project; Technical Specification Group Services and System Aspects; IP Multimedia Subsystem (IMS) Service Continuity; Stage

More information

IMS Adoption Fueled by the Open IMS Core Project and MySQL

IMS Adoption Fueled by the Open IMS Core Project and MySQL IMS Adoption Fueled by the Open IMS Core Project and MySQL Overview The project was launched in 2006 to promote IMS (IP Multimedia Subsystem) technology adoption in next-generation telecommunications networks,

More information

A Converged IMS Client for the IP Multimedia Subsystem

A Converged IMS Client for the IP Multimedia Subsystem A Converged IMS Client for the IP Multimedia Subsystem Richard Spiers and Neco Ventura University of Cape Town, Rondebosch, South Africa 021 650 5296 Email: {rspiers,neco}@crg.ee.uct.ac.za Abstract The

More information

Ultra-elegant Gigabit IP Phone

Ultra-elegant Gigabit IP Phone Ultra-elegant Gigabit IP Phone SIP-T48G Quick Start Guide(V80.95) www.usaphone.com 856.761.1000 Applies to firmware version 35.80.0.80 or later. Packaging Contents The following items are included in your

More information

ETSI TR V6.5.0 ( )

ETSI TR V6.5.0 ( ) TR 133 978 V6.5.0 (2006-09) Technical Report Universal Mobile Telecommunications System (UMTS); Security aspects of early IP Multimedia Subsystem (IMS) (3GPP TR 33.978 version 6.5.0 Release 6) 1 TR 133

More information

Ultra-elegant Gigabit IP Phone

Ultra-elegant Gigabit IP Phone Ultra-elegant Gigabit IP Phone SIP-T48G Quick Start Guide (V8060) wwwyealinkcom Applies to firmware version 3580060 or later Packaging Contents The following items are included in your package If you find

More information

Corporate Communication Solutions for the Dynamic Enterprise

Corporate Communication Solutions for the Dynamic Enterprise Corporate Communication Solutions for the Dynamic Enterprise 10 Key Selling Points for IP Communication Solutions February 2009 Alcatel-Lucent All Rights Reserved Alcatel-Lucent 2009 Achieve an innovative

More information

Overview. M-commerce vs. E-commerce

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

More information

4.2 IMS Service Creation

4.2 IMS Service Creation 4.2 IMS Service Creation 63 IMS service layer application servers IMS basic telephony Simulation servers Subscriber data HSS -AS #1 -AS #2 MMTel application servers Cx IP access network Gm P-CSCF Mw S-CSCF

More information

BEAWebLogic. Portal. Overview

BEAWebLogic. Portal. Overview BEAWebLogic Portal Overview Version 10.2 Revised: February 2008 Contents About the BEA WebLogic Portal Documentation Introduction to WebLogic Portal Portal Concepts.........................................................2-2

More information

92 Int. J. Ad Hoc and Ubiquitous Computing, Vol. 1, Nos. 1/2, 2005

92 Int. J. Ad Hoc and Ubiquitous Computing, Vol. 1, Nos. 1/2, 2005 92 Int. J. Ad Hoc and Ubiquitous Computing, Vol. 1, Nos. 1/2, 2005 An analysis of current mobile services and enabling technologies Ivar Jørstad Department of Telematics, Norwegian University of Science

More information

The Personalization of Mobile Services

The Personalization of Mobile Services The Personalization of Mobile Services Ivar Jørstad, Do van Thanh and Schahram Dustdar Abstract This paper presents an analysis of the requirements for service personalization and proposes a generic service

More information

Fixed Mobile Convergence s Role in In-building Coverage. Charles Bradshaw Leader, Wireless Core Marketing May 2, 2007

Fixed Mobile Convergence s Role in In-building Coverage. Charles Bradshaw Leader, Wireless Core Marketing May 2, 2007 Fixed Mobile Convergence s Role in In-building Coverage Charles Bradshaw Leader, Wireless Core Marketing May 2, 2007 2 Technology and Markets Have Changed Wireline substitution gaining momentum Wireless

More information

The Future Wireless Internet

The Future Wireless Internet The Future Wireless Internet Presented by Bosco Eduardo Fernandes V.President Siemens Ag,, UMTSF Chair ICTG, IPv6 SUMMIT 1 OUTLINE INTRODUCTION CELLULAR & INTERNET IP MULTIMEDIA SUBSYSTEM SUMMARY IPv6

More information

Nokia Multi-Access to IP Multimedia

Nokia Multi-Access to IP Multimedia Nokia Multi-Access to IP Multimedia s Executive Summary 2 Convergence 2 Convergence of Services and Business Models 3 Service Convergence 3 Business Model Convergence 3 Session Initiation Protocol (SIP)

More information

ITU-T Kaleidoscope Conference Innovations in NGN. Cross-fertilization of IMS and IPTV services over NGN

ITU-T Kaleidoscope Conference Innovations in NGN. Cross-fertilization of IMS and IPTV services over NGN ITU-T Kaleidoscope Conference Innovations in NGN Cross-fertilization of IMS and IPTV services over NGN Christian Riede Fraunhofer FOKUS christian.riede@fokus.fraunhofer.de Geneva, 12-13 May 2008 Agenda

More information

Dominique Carrega, Emmanuel Fournier, Hervé Muyal (Tecsi).

Dominique Carrega, Emmanuel Fournier, Hervé Muyal (Tecsi). Project Number: Project Title: Deliverable Type: (K/N)* AC343 MOVE K CEC Deliverable Number: AC343 / TEC / WP1 / DS / K / 1 / Contractual Date of Delivery to the CEC: July 1998 Actual Date of Delivery

More information

RELEASE NOTES. Sippo WebRTC Application Controller. Version December Last updated: September 2017

RELEASE NOTES. Sippo WebRTC Application Controller. Version December Last updated: September 2017 RELEASE NOTES Sippo WebRTC Application Controller Last updated: September 2017 Version 3.1 - December 2017 It is been over a year, but Sippo is now a complete matured RTC framework. Not only is able to

More information

The course also includes an overview of some of the most popular frameworks that you will most likely encounter in your real work environments.

The course also includes an overview of some of the most popular frameworks that you will most likely encounter in your real work environments. Web Development WEB101: Web Development Fundamentals using HTML, CSS and JavaScript $2,495.00 5 Days Replay Class Recordings included with this course Upcoming Dates Course Description This 5-day instructor-led

More information

IMS signalling for multiparty services based on network level multicast

IMS signalling for multiparty services based on network level multicast IMS signalling for multiparty services based on network level multicast Ivan Vidal, Ignacio Soto, Francisco Valera, Jaime Garcia, Arturo Azcorra UniversityCarlosIIIofMadrid Av.Universidad,30 E-28911, Madrid,

More information

IMS, NFV and Cloud-based Services BUILDING INTEGRATED CLOUD COMMUNICATION SERVICES

IMS, NFV and Cloud-based Services BUILDING INTEGRATED CLOUD COMMUNICATION SERVICES Daitan White Paper IMS, NFV and Cloud-based Services BUILDING INTEGRATED CLOUD COMMUNICATION SERVICES Highly Reliable Software Development Services http://www.daitangroup.com Daitan Group 2014 IMS, NFV

More information

Enabling the IP Multimedia Subsystem (IMS) With Java Technology

Enabling the IP Multimedia Subsystem (IMS) With Java Technology Enabling the IP Multimedia Subsystem (IMS) With Java Technology Alka Gupta Staff Engineer Sun Microsystems www.sun.com TS-8152 Nasir Khan Staff Engineer SL JSR 289 BEA Systems www.bea.com 2006 JavaOne

More information

ITU-T Q Signalling architecture and requirements for IP-based short message service over ITU-T defined NGN

ITU-T Q Signalling architecture and requirements for IP-based short message service over ITU-T defined NGN I n t e r n a t i o n a l T e l e c o m m u n i c a t i o n U n i o n ITU-T Q.3053 TELECOMMUNICATION STANDARDIZATION SECTOR OF ITU (03/2017) SERIES Q: SWITCHING AND SIGNALLING, AND ASSOCIATED MEASUREMENTS

More information

Enabler Release Definition for Smartcard-Web-Server

Enabler Release Definition for Smartcard-Web-Server Enabler Release Definition for Smartcard-Web-Server Candidate Version 1.0 09 Feb 2007 Open Mobile Alliance OMA-ERELD-Smartcard_Web_Server-V1_0-20070209-C OMA-ERELD-Smartcard_Web_Server-V1_0-20070209-C

More information

MEA: Telephony systems MEB: Voice over IP MED: VoIP systems MEC: C7 signalling systems MEE: Video principles MEF: Video over IP

MEA: Telephony systems MEB: Voice over IP MED: VoIP systems MEC: C7 signalling systems MEE: Video principles MEF: Video over IP learntelecoms interactive e-learning suite of courses from PTT: MediaNet v3 Voice and video service delivery MediaNet is a suite of interactive, online e-learning courses that provides training in the

More information

How IMS Cross Different Technologies

How IMS Cross Different Technologies How IMS Cross Different Technologies Babak Ahsant Mobile Communication Company of Iran b.ahsant@mci.ir Abdulrahman Yarali Murray State University abdul.yarali@murraystate.edu Mark Rajai California State

More information

The Importance of OSA/Parlay in the Service Network Evolution

The Importance of OSA/Parlay in the Service Network Evolution ICT & OSA / Parlay Workshop Campinas/Sao Paulo, Brazil, March 22nd, 2006 The Importance of OSA/Parlay in the Service Network Evolution Niklas Blum TU Berlin / Fraunhofer FOKUS blum@fokus.fraunhofer.de

More information

What are the options for voice over LTE, if IMS is not ready in time?

What are the options for voice over LTE, if IMS is not ready in time? Perspective What are the options for voice over LTE, if IMS is not ready in time? By David Martin (Analysys Mason Associate) and Terry Norman (Principal Analyst) November 2009 Mobile subscribers are consuming

More information

SAP Security in a Hybrid World. Kiran Kola

SAP Security in a Hybrid World. Kiran Kola SAP Security in a Hybrid World Kiran Kola Agenda Cybersecurity SAP Cloud Platform Identity Provisioning service SAP Cloud Platform Identity Authentication service SAP Cloud Connector & how to achieve Principal

More information

FT ETSI STANDARDS FOR PUBLIC COMMENT

FT ETSI STANDARDS FOR PUBLIC COMMENT FT ETSI STANDARDS FOR PUBLIC COMMENT The following ETSI documents are issued under the Public Enquiry PE20081017. Comments are welcome and should be addressed to the named contact to arrive by 12 September

More information

The Migration to Ipv6

The Migration to Ipv6 GSM Europe The European interest group of the GSM Association http://gsmeurope.gsmworld.com The Migration to Ipv6 GSM Europe Policy Statement for the IPv6 Task Force- GSME, 6 August 2001 1. Background

More information

LTE. over. Voice. ericsson white paper Uen December Voice over LTE a step towards future telephony

LTE. over. Voice. ericsson white paper Uen December Voice over LTE a step towards future telephony ericsson white paper 284 23-3145 Uen December 2010 Voice over Voice over a step towards future telephony Which voice over solution offers the most advantages for operators and satisfies user expectations?

More information

OO Based Development of a Multi Media Application Server Prototype

OO Based Development of a Multi Media Application Server Prototype OO Based Development of a Multi Media Application Prototype E. GUL, G. WILLEKENS(team leader), F.HOSTE, T. BATSELE, R. SELDERSLAGHS, N. QUARTIER Alcatel Bell (A7) Francis Wellesplein 1 2018 Antwerpen,

More information

3GPP TS V6.9.0 ( )

3GPP TS V6.9.0 ( ) Technical Specification 3rd Generation Partnership Project; Technical Specification Group Core Network; Presence service using the IP Multimedia (IM) Core Network (CN) subsystem; Stage 3 () GLOBAL SYSTEM

More information