SIP SERVICES USING SIP SERVLET API THE INFOLINE SERVICE

Size: px
Start display at page:

Download "SIP SERVICES USING SIP SERVLET API THE INFOLINE SERVICE"

Transcription

1 Journal of Information, Control and Management Systems, Vol. 8, (2010), No.3 SIP SERVICES USING SIP SERVLET API THE INFOLINE SERVICE Pavel SEGEČ University of Žilina, Faculty of Management Science and Informatics, Slovak Republic Abstract Nowadays, the Telecom industry has to quickly react to the dynamically changing market expectation. For this, it requires the means that would allow flexible development of new communication services. Among its major benefits, the SIP protocol offers is the ability to be used as a tool for creation of communication services. There are many different approaches to create a SIP service. In generally, all of them require the building block services providing network capabilities at a protocol level (SIP). The building block services are then extended by software programming functions or interfaces that are required for the development of main services. Following the basic service creation model, development of a SIP service means to extend SIP entities by a programmed logic (application), where the logic is responsible for providing a service with the expected feature. The SIP Servlet API, a popular Java application programming interface for SIP service development, is an example of such kind of interfaces. The SIP Servlet API provides feature rich and robust developing environments. It has been standardized as a technical specification of the Java Community Process (JCP) in JSR289. In this paper we describe the SIP Servlet API and using an example of a click2call service developed in the Department of Infocomm networks, we demonstrate the SIP Servlet API flexibility for developing converged communication services which integrate HTTP and SIP features. Keywords: SIP, SIP Servlet API, services, programming, click2call 1 INTRODUCTION Session Initiation Protocol (SIP) [1] is a text based signaling protocol developed to set up, modify and tear down multimedia sessions such as voice and video calls, instant messaging and the like over the Internet Protocol (IP). SIP is behind many popular communication platforms (Voice over IP (VoIP), instant messaging, presence,

2 2 number of the even pages is at left side Title of the paper, size 10 conferencing). It becomes an importing key technology in a process of network convergence. SIP was adopted as a session control protocol for the IMS (IP Multimedia Subsystem) [2] as well for the Next Generation Network standardized by ETSI [3]. The SIP architecture is based on the Internet popular client/server architecture model. SIP defines several logical entities with specific tasks. The entities can act either as endpoints or as servers. Endpoints, in general, are initiating SIP sessions. Servers, in general, handle SIP message exchange during a session initiated by endpoints. SIP endpoints are User Agent (UA), Back-to-back User Agent (B2BUA) and SIP gateways. SIP servers can act as Registrar servers, Proxy servers and Redirect servers. SIP implementation brings some other types of SIP servers with some special functions, for example location servers, application servers, subscriber servers, etc. SIP is a protocol, in which the endpoints send a request which is answered by a response generated by the servers. A session between the endpoints consists from sets of small number of text coded messages. Due to higher implementable administrative effort of this architecture, there are the approaches under the development on how to integrate Peer-2-peer (P2P) mechanisms into SIP without the need to implement complex SIP servers. An important aspect of the SIP success is the programmability of the SIP communication infrastructure for service creation and service delivery. SIP is based on the two most popular internet protocols, the HTTP (web) and SMTP ( ). This helps the SIP to become understandable and popular. SIP is offering many forms of programming new innovative services. Dedicated programming tools such as Call Processing Language - SIP CPL, Common Gateway Interface SIP CGI and many tools resulting from the process of integrating Java programming language and telecom world as SIP servlets, Java API for Integrated Networks - JAIN APIs and Parlay are very popular. In this paper, we focus on the SIP service creation approach using SIP Servlet API as a SIP dedicated programming tool. First we analyze the SIP Servlet API and next we provide information about a converged communication service developed using the SIP Servlet technology, the Infoline click2call service. 1.1 Programming SIP service Creation of SIP service usually means adding some additional program, or service logic that enhances functionality of a SIP entity. Generally, any arbitrary programming language can be used for this purpose. The logic is used to influence and to handle a specific SIP signaling message flow or just to react on special conditions triggered by special events (receiving a specific SIP message, a SIP header value, etc.). The main SIP specification [1] does not cover the issue of the placement of the service implementation; service logic can be added on the top of the endpoints and servers. In most cases the service is located on a server part of a SIP infrastructure. For service placement, any SIP server entities mentioned above can be used. In

3 Journal of Information, Control and Management Systems, Vol. 8, (2010), No.3 telecommunications or Service Provider (SP) environments special SIP servers dedicated for SIP services hosting, called SIP Application Servers (AS) have been developed.. The basic SIP service creation model supposes the extension of SIP server entities by service logic (application), where the logic communicates with the SIP server through an application programming interface (API) and utilizing SIP server network session control functionality. In the case of a special event, the SIP server is instructed to pass specific information to the logic. The logic makes a decision and instructs backward the SIP server about the actions it has to perform. The logic can be placed either in the SIP server itself, or in a separate, independent system. In the latter case the role of the API interface takes over a specialized protocol Remote Procedure Call (RPC) mechanism or distributing computing platform (CORBA, DCOM, etc.). A model that reuse a functionality of a programming interface allows that a service simple uses the underlying network control and signaling infrastructure and significantly simplifies a process of development and implementation of new communication services. This is allowed by mechanisms that use standardized service developing interfaces. The development of new communication services and applications is becoming simpler (from time, technology as well as economic points of view) and very close to the standard IT application development cycle. A couple of interfaces between service logic and SIP server have been defined; some of them are derived from the interfaces that are used for the development of web services. These interfaces should satisfy some design goals as service portability, robustness, simplicity, user friendliness, flexibility and extensibility [4]. The current set of standards includes SIP CGI, SIP-servlets, JAIN, Parlay/OSA and Parlay X, and CPL. Evaluating theirs pros and cons based on criteria as network capabilities, reference architecture, interface abstraction, suitability for third party developers, and easiness of use or industry support service, developers can choose up API on their needs [5]. There are many ways how to categorize SIP APIs. There are standardized APIs (SIP CGI, SIP-servlets, JAIN, Parlay, and CPL) and proprietary SIP APIs; however those provide lower portability of developed services. There are APIs which allow creation of services either by trusted users (SIP CGI, SIP-servlets, JAIN, Parlay) or by untrusted users (CPL). Another possible categorization is based on the level of abstraction that the API provides. A high level API hides (CPL) the SIP functionality of network more than a low level API (JAIN, SIP Servlet) [6]. 2 SIP SERVLET The SIP Servlet API, standardized in Java Community Process (JCP) [7] [8] defines a container-based programming model for creation SIP services similar to the HTTP Servlet API. SIP Servlet API is a Java API interface which extends the functions

4 4 number of the even pages is at left side Title of the paper, size 10 of a generic Java Servlet API. The HTTP Servlet API has been also derived from generic Java Servlets API. The SIP Servlet API allows SIP servers and UAs to create and implement SIP communication services by means of Java Servlets technology. The purpose of the SIP Servlet API is to provide a standardized platform for developing and delivering SIP based services. The SIP Servlet API defines interfaces, abstractions and mechanisms, which allow creation of the service logic (Fig. 1). Sip XML Servlet 1 Sip XML Servlet 1 Servlet 2 Servlet 2 Servlet 3 Application 1 Application 2 API API Container SIP Servlet AS Figure 1 SIP Servlet model. The SIP servlet is a Java application component which is managed by a SIP server (through its servlet container) and which performs SIP signaling. The service logic is provided as a servlet application consisting from one or more SIP servlets running a specific service function. On a SIP server, more services are usually realized. It is a SIP servlet (also called server engine) container that takes a decision on which applications (servlet) to invoke and in which order. The process is controlled by an occurrence of a specific SIP event (type of message, some header field value and so on). The container also manages the servlets lifecycle. The SIP servlet container is a part of an application server that can be built into a SIP server, or installed as an add-on component [8]. Once the SIP servlet is invoked, it interacts with SIP UAs by exchanging SIP request and SIP response messages through the servlet container over defined network listening points. The servlet is initialized as a process of the Java Virtual Machine (JVM). Until its lifecycle is finished (by a servlet container), servlets functions are used each time the service is called. Communications between the SIP servlet and the SIP server (its servlet container) is done by means of Java objects. Java objects are used for modeling SIP messages. Using objects enables that all parts of received SIP messages are provided to the SIP servlet. The Servlet application then

5 Journal of Information, Control and Management Systems, Vol. 8, (2010), No.3 performs all actions required to achieve a service behavior and instructs the SIP servlet container to perform the next actions (for example, proxying message, fork message, finish transaction, etc.). The SIP servlet may behave as an UAC (generation of SIP requests) or as a SIP server (serving SIP messages). The SIP servlet itself does not support statefull behavior; this feature is realized at a servlet container level. The servlet container supports both types of SIP processing, stateless as well as statefull. The SIP servlet container is a part of a SIP server and provides networking functions of the SIP server to SIP servlets (low level functions). The SIP servlet container manages network listen points (the combination of the transport protocol, the port number and the IP address). It receives and transmits the SIP traffic through them. In this way the SIP servlet may communicate through a network using the SIP. Servlet container maintains a lifecycle of SIP servlets. Based on servlet mapping, the container decides which servlet will be invoked and in which order. The rules are specified by the deployment descriptor (DTD). It is the SIP servlet container which provides servlet functionality to the SIP server. Like that the server is able to maintain services created by the servlet technology. SIP servlets technology was developed as an alternative to the SIP CGI technology. The main target was to avoid of SIP CGI limitations, the platform dependability of the SIP CGI scripts and a weak performance scalability of the SIP CGI. These restrictions were removed by an exclusive usage of Java development environment to create SIP Servlet API (and then services). Thus, the platform independence of SIP servlet services has been achieved. Using Java brings other advantages coming from the Java platform itself, i.e. the security, flexibility and many existing APIs (JDBC for database connectivity, JMF for media processing, JavaMail, JNDI for directory processing and so on). From the performance scalability point of view, the SIP servlet accesses the system resources more effectively than the SIP CGI. The first service call initiates and starts SIP servlets. They remain active and their functions may be reused whenever the service is called again. The Servlet remains active until its lifecycle is finished by the container. This is unlike to the SIP CGI, in which each service call starts a completely new process. New services can integrate multiple types of communications, such as telephony, web, mail, instant messaging, etc. To support the expectations there are different types of SIP Servlet container implementations. For example, a special type of converged SIP container that enables the deployment of applications that use SIP, HTTP Servlet API and other Java EE components like EJBs, webservices, messaging, etc. may be used. There are three different methods of SIP Servlet implementations [8]: Standalone SIP Servlet container, which provides SIP interface and hosts SIP Servlets only as the applications.

6 6 number of the even pages is at left side Title of the paper, size 10 SIP Servlets and HTTP Servlets container, in which SIP and HTTP servlets share the same context. This implementation is suitable for the creation of integrated web and SIP services. SIP and Java EE Convergence container. This implementation facilitates the use of SIP Servlet technology in conjunction with a more complex Java EE deployment model. Thanks to Java, the SIP Servlet technology allows creation of SIP services that use the same principles that are used for the web services development or development of other Java applications. Thus, the SIP Servlets may become very interesting platform for a wide community of Java web developers. The SIP Servlets are also suitable for the third party service developers. SIP Servlets technology is mainly focused on the area of enterprise application servers and J2EE developing platform. Here, it can bring some merits already known and used in development of converged applications and services. Even though the technology offers many interesting features, it is very complex and wholly based on Java. This can be objectively considered as weak points. 2.1 SIP servlet application servers The SIP Servlet AS represents Java EE framework used for the SIP services hosting. The SIP AS provides required SIP Servlet API for a logic implementation. Typical implementation of the SIP Application Server based on JSR 289 [8] is as the converged container that contents implementation of the HTTP Servlet API container and SIP Servlet API container allowing the creation of converged web and SIP services. Besides this the SIP AS can provides an additional APIs of the Java EE platform as for example Enterprise JavaBeans (EJB), Java Naming and Directory Interface (JNDI), Java Database Connectivity (JDBC), Java Message Service (JMS) and JavaMail, Java Persistence API (JPA). Presently there are several SIP AS implementations as: SailFin, a SIP servlet container extending popular GlassFish open source enterprise AS platform, developed under the lead of Sun Microsystems. Mobicents SIP Servlet AS, a subproject of the Mobicents open source VoIP platform. Cipango, a SIP Servlet extension to the Jetty HTTP Servlet container. Oracle Communications Converged Application server based on Oracle WebLogic server. WebSphere Application Server from IBM. WeSIP, a SIP and HTTP Converged Application Server built on top of OpenSER SIP platform.

7 Journal of Information, Control and Management Systems, Vol. 8, (2010), No.3 For the clic2call service example development, the open source solution Sailfin has been used. Sailfin [9] is the SIP Servlet AS project, based on robust and scalable SIP servlets technology on top of Java EE-based GlassFish application server. Sailfin is JSR289 compliant and provide high-availability and clustering features, while integrating with existing GlassFish services [9]. 3 CLICK2CALL SERVICE EXAMPLE THE INFOLINE SERVICE Click2call service is a perfect example of the SIP service creation flexibility and the proximity of SIP and HTTP protocols. Click2call is an example of new converged service, which allows initiation of a phone call from the web page. Our service example, the Infoline service, is kind of click2call service implemented over SIP servlet technology. The service has been developed by the Department of Information Networks at the University of Žilina. The infoline service is the redesign of the University infoline service [10] developed with the proprietary API and placed into a standardized SIP Servlet environment. The Infoline service will be implemented as a part of a live departmental IP network. The purpose of the Infoline service development was demonstrating the flexibility of SIP, especially SIP Servlet API, for HTTP and SIP service development. It is used to develop interesting, converged service for everyday use. Developed Infoline service allows establishing a SIP VoIP call through the web interface. The call is initiated among an initiator (caller or calling party) and the called party (callee). The phone call is initiated by a third party call control (3pcc) entity. 3pcc entity is instructed by the user (caller) through the web page. The call will be routed on a SIP address of a callee, i.e. web page owner. The Infoline service may be used in reverse order too. The service provides following features: Initiation of a call from the web page. Call availability management. Personal profile management. Management of failure calls and using of an alternative communication. Presence information provisioning. The main task of the service solution was to create a portable, scalable and platform independent SIP service, which integrate web HTTP part with SIP part. The solution of the Infoline service with it s AS implementation, have to allow a simple integration into an arbitrary SIP infrastructure (herein OpenSER and Asterisk SIP platform). Therefore the integrated communication AS platform with HTTP servlet and SIP servlet API has been selected. 3.1 Service components The Infoline service is built-up from several components. They can be categorized into two groups. The first group consists from those components of the

8 8 number of the even pages is at left side Title of the paper, size 10 communication infrastructure that allows the service realization, and that also allows a user to communicate with the service. They are independent from the main service. The group consists from the components over which is the web HTTP part and SIP signaling part of the communication infrastructure realized. They can be listed as follows (Fig. 2): A web browser, which provides the web interface allowing initialization of a call. A web server. It can be an arbitrary web server with web pages into which presence SIP information of a callee is inserted. SIP telephone for making a VoIP call. SIP infrastructure following the recommendations [1] with SIP presence service implemented. The Infoline service is using a callee SIP outbound proxy server serving the callee SIP domain. The service logic communicates with the SIP proxy using SIP protocol. server, which is used as alternative communication platform if the voice call was not successfully established. Web server server POP/IMAP POP/IMAP SMTP HTTP HTTP HTTP User (Caller) Computer with a web browser SIP telephone SIP Database SIP VoIP server SIP Application server IP Network SIP Computer with a web browser SIP telephone User (Callee) Figure 2 The infoline service components The main components of the service are as follows: SIP application server, which is hosting the main logic of the Infoline service. It is consisting from the main service application implemented through servlets technology using both, the web container used for http message processing and the SIP container used to process SIP message handling. The logic also includes the database part which allows consistent access to the database. Database, which store the service application data.

9 Journal of Information, Control and Management Systems, Vol. 8, (2010), No Service description and operation Inside the service, we have three types of service users, a customer, an operator and an administrator. The administrator is a service user who when using the web interface may fully manage operator accounts of the service. The customer is a service user who cans browse through the web pages of an operator (personal, its employer or etc.). A web page contains the web content and the SIP presence information visualized by icons together with a web link by clicking on which a customer may initiate a call. Clicking on form a window is opened, into which the customer have to fill in his SIP address. After that a 3pcc entity is instructed to initiate a SIP call. The window is still opened to provide the call session information allowing call management or it provides a user with an alternative communication if the call was not answered. The last kind of a user is an operator. The operator is a user with a valid service account. He may receive a SIP calls initiated by customers. Operator is able to personalize the service with managing time windows during which he is opened to receive calls from customers. The operator is able to change his personalized information. The operation of the service is based on a functional SIP infrastructure with a presence service on the operator site. On the customer site, a running SIP telephone is assumed only. Realization of the main service is logically divided into three parts, a presence subsystem, a click2call subsystem and a personal operator management subsystem. A presence subsystem allows real time visualization of the presence information of an operator (online, offline, on call, busy, away, and undefined). The presence information may be easily inserted into any kind of a web page. The personal operator management subsystem is available to operators only. It allows them service personalization. The click2call subsystem is the main part of the Infoline service. It is necessary for a call establishment. It also provides all functions required for correct service processing such as a SIP address consistency checking, operator status and call availability checking, call initiation through the SIP 3pcc entity, call management and alternative communication offering. The subsystem is further divided on the SIP signaling part and the web part. The signaling part is responsible for SIP message handling during the call session and is realized as a third party call control mechanism (3pcc) establishing two way call among the 3pcc and customer and among 3pcc and operator. The web part provides necessary function for a web call initiation. 4 CONCLUSION The Infoline service is a good example of a new converged communication service, which integrates telephone and web services into a new one. The Infoline service provides their users with a number of interesting features. Using the SIP servlet API and careful component selection the service is portable and platform independent, easily integrable into an arbitrary existing web and SIP communication environments. The service is using a basic SIP call service extended by a presence feature using SIMPLE technology for status visualization. Except SIP servlet part, the service is

10 10 number of the even pages is at left side Title of the paper, size 10 using modern web technologies of real time data presentation, which allows their users call monitoring and handling through the web interface. REFERENCES [1] ROSENBERG, J., SCHULZRINNE, H., CAMARILLO, G., JOHNSTON, A., PETERSON, J., SPARKS, R., HANDLEY, M., SCHOOLER, E.: SIP: Session Initiation Protocol, RFC 3261, July 2002 [2] [3] [4] HELEN J. WANG, ASCAN MORLANG, FREDDY MANG, ANTHONY D. JOSEPH, RANDY H. KATZ,: A Service Creation Model for Integrated Communication Systems on the Internet, INFOCOM 2001 [5] KRYVINSKA, N., STRAUSS, CH., AUER, L., ZINTERHOF, P.: Conceptual framework for services creation/development environment in telecom domain, International Conference on Information Integration and web-based Applications and Services, iiwas 2008, Linz, Austria, ISBN: [6] CHRIGHTON, C.,LONG, D. T., PAGE, D. C.: JAIN SLEE vs SIP Servlet Which is the Best Choice for an IMS Application Server?, Australasian Telecommunication Networks and Applications Conference, 2007, Christchurch, New Zeland [7] KRISTENSEN, A.: SIP Servlet API Version 1.0, February 2003 [8] COSMADOPOULOS, Y., KULKARNI, M.: SIP Servlet Specification, version 1.1, 242 s., JSR 289 Expert Group, JSR Final Release, 2008 [9] Sailfin SIP Servlet project, [10] KOVÁČIKOVÁ, T., SEGEČ, P.: University Infoline Service - Internet telephony for interactive communication in e-learning, In: Learning Technology, publication of IEEE Computer Society. - ISSN Volume 5, Issue 1 (2003), p

PROGRAMMING SIP SERVICES THE SIP APIS

PROGRAMMING SIP SERVICES THE SIP APIS Acta Electrotechnica et Informatica, Vol. 10, No. 4, 2010, 39 45 39 PROGRAMMING SERVICES THE APIS Pavel SEGEČ Department of InfoComm Networks, Faculty of Management Science and Informatics, University

More information

Journal of Information, Control and Management Systems, Vol. X, (200X), No.X SIP OVER NAT. Pavel Segeč

Journal of Information, Control and Management Systems, Vol. X, (200X), No.X SIP OVER NAT. Pavel Segeč SIP OVER NAT Pavel Segeč University of Žilina, Faculty of Management Science and Informatics, Slovak Republic e-mail: Pavel.Segec@fri.uniza.sk Abstract Session Initiation Protocol is one of key IP communication

More information

RESTCOMMONE. SIP Servlets. Copyright All Rights Reserved Page 2

RESTCOMMONE. SIP Servlets. Copyright All Rights Reserved Page 2 RESTCOMMONE SIP Servlets Copyright All Rights Reserved Page 2 RestcommONE Core Components RestcommOne Connect Visual Designer Web Browser WebRTC SDK s Mobile WebRTC SDK s RESTful API Layer RestcommOne

More information

Service Architecture for 3rd Party Operator s Participation

Service Architecture for 3rd Party Operator s Participation Service Architecture for 3rd Party Operator s Participation F. Sarabchi, A. H. Darvishan, H. Yeganeh, and H. Ahmadian Abstract Next generation networks with the idea of convergence of service and control

More information

(9A05803) WEB SERVICES (ELECTIVE - III)

(9A05803) WEB SERVICES (ELECTIVE - III) 1 UNIT III (9A05803) WEB SERVICES (ELECTIVE - III) Web services Architecture: web services architecture and its characteristics, core building blocks of web services, standards and technologies available

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

Deccansoft Software Services. J2EE Syllabus

Deccansoft Software Services. J2EE Syllabus Overview: Java is a language and J2EE is a platform which implements java language. J2EE standard for Java 2 Enterprise Edition. Core Java and advanced java are the standard editions of java whereas J2EE

More information

CO Java EE 7: Back-End Server Application Development

CO Java EE 7: Back-End Server Application Development CO-85116 Java EE 7: Back-End Server Application Development Summary Duration 5 Days Audience Application Developers, Developers, J2EE Developers, Java Developers and System Integrators Level Professional

More information

Application Servers in E-Commerce Applications

Application Servers in E-Commerce Applications Application Servers in E-Commerce Applications Péter Mileff 1, Károly Nehéz 2 1 PhD student, 2 PhD, Department of Information Engineering, University of Miskolc Abstract Nowadays there is a growing demand

More information

Modular Design of Call Control Layer in Telephony Software

Modular Design of Call Control Layer in Telephony Software 8 Modular Design of Call Control Layer in Telephony Software Ilija Basicevic University of Novi Sad, Faculty of Technical Sciences Novi Sad, 21000, Serbia Abstract An important property of a telephony

More information

Appendix A - Glossary(of OO software term s)

Appendix A - Glossary(of OO software term s) Appendix A - Glossary(of OO software term s) Abstract Class A class that does not supply an implementation for its entire interface, and so consequently, cannot be instantiated. ActiveX Microsoft s component

More information

Oracle WebLogic Server 11g: Administration Essentials

Oracle WebLogic Server 11g: Administration Essentials Oracle University Contact Us: +33 (0) 1 57 60 20 81 Oracle WebLogic Server 11g: Administration Essentials Duration: 5 Days What you will learn This Oracle WebLogic Server 11g: Administration Essentials

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

Analyze of SIP Messages and Proposal of SIP Routing

Analyze of SIP Messages and Proposal of SIP Routing Analyze of SIP Messages and Proposal of SIP Routing F. Csoka, I. Baronak, E. Chromy and L. Kockovic Abstract This paper deals with the functionality of SIP and design of an efficient and optimized process

More information

Service architecture for 3GPP IP Multimedia Subsystem the IBM and Swisscom proof-of-concept experience

Service architecture for 3GPP IP Multimedia Subsystem the IBM and Swisscom proof-of-concept experience IBM IP Multimedia Subsystem solutions February 2006 architecture for 3GPP IP Multimedia Subsystem the IBM and Swisscom proof-of-concept experience By Xavier Weibel, technology strategist, Application and

More information

Outline. Project Goal. Overview of J2EE. J2EE Architecture. J2EE Container. San H. Aung 26 September, 2003

Outline. Project Goal. Overview of J2EE. J2EE Architecture. J2EE Container. San H. Aung 26 September, 2003 Outline Web-based Distributed EJB BugsTracker www.cs.rit.edu/~sha5239/msproject San H. Aung 26 September, 2003 Project Goal Overview of J2EE Overview of EJBs and its construct Overview of Struts Framework

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

EJB ENTERPRISE JAVA BEANS INTRODUCTION TO ENTERPRISE JAVA BEANS, JAVA'S SERVER SIDE COMPONENT TECHNOLOGY. EJB Enterprise Java

EJB ENTERPRISE JAVA BEANS INTRODUCTION TO ENTERPRISE JAVA BEANS, JAVA'S SERVER SIDE COMPONENT TECHNOLOGY. EJB Enterprise Java EJB Enterprise Java EJB Beans ENTERPRISE JAVA BEANS INTRODUCTION TO ENTERPRISE JAVA BEANS, JAVA'S SERVER SIDE COMPONENT TECHNOLOGY Peter R. Egli 1/23 Contents 1. What is a bean? 2. Why EJB? 3. Evolution

More information

Telecommunication Services Engineering Lab. Roch H. Glitho

Telecommunication Services Engineering Lab. Roch H. Glitho 1 2 Outline 1. Introduction 2. Core SIP 3. Selected Extensions 3 Introduction: Signaling vs Media Signaling: Session establishment Session tear down Changes to the session Supplementary services Media:

More information

Chapter 6 Enterprise Java Beans

Chapter 6 Enterprise Java Beans Chapter 6 Enterprise Java Beans Overview of the EJB Architecture and J2EE platform The new specification of Java EJB 2.1 was released by Sun Microsystems Inc. in 2002. The EJB technology is widely used

More information

INTRODUCTION TO Object Oriented Systems BHUSHAN JADHAV

INTRODUCTION TO Object Oriented Systems BHUSHAN JADHAV INTRODUCTION TO Object Oriented Systems 1 CHAPTER 1 Introduction to Object Oriented Systems Preview of Object-orientation. Concept of distributed object systems, Reasons to distribute for centralized objects.

More information

WebSphere 4.0 General Introduction

WebSphere 4.0 General Introduction IBM WebSphere Application Server V4.0 WebSphere 4.0 General Introduction Page 8 of 401 Page 1 of 11 Agenda Market Themes J2EE and Open Standards Evolution of WebSphere Application Server WebSphere 4.0

More information

presentation DAD Distributed Applications Development Cristian Toma

presentation DAD Distributed Applications Development Cristian Toma Lecture 12 S4 - Core Distributed Middleware Programming in JEE Distributed Development of Business Logic Layer presentation DAD Distributed Applications Development Cristian Toma D.I.C.E/D.E.I.C Department

More information

Adding Telephony to Java Technology-Based Enterprise Applications

Adding Telephony to Java Technology-Based Enterprise Applications Adding Telephony to Java Technology-Based Enterprise Applications Jonathan Kaplan & Sreeram Duvur Researcher/Architect Sun Microsystems, Inc. http://glassfish.dev.java.net/ TS-4919 2007 JavaOne SM Conference

More information

Building the Enterprise

Building the Enterprise Building the Enterprise The Tools of Java Enterprise Edition 2003-2007 DevelopIntelligence LLC Presentation Topics In this presentation, we will discuss: Overview of Java EE Java EE Platform Java EE Development

More information

IP Multimedia Subsystem Application Servers

IP Multimedia Subsystem Application Servers IP Multimedia Subsystem Application Servers Second part of the project Presented by: Masood Khosroshahy B E G I N N I N G 1 June 2006 Project supervisor: Prof. Elie Najm IMS Application Servers HSS IMS

More information

Overview p. 1 Server-side Component Architectures p. 3 The Need for a Server-Side Component Architecture p. 4 Server-Side Component Architecture

Overview p. 1 Server-side Component Architectures p. 3 The Need for a Server-Side Component Architecture p. 4 Server-Side Component Architecture Preface p. xix About the Author p. xxii Introduction p. xxiii Overview p. 1 Server-side Component Architectures p. 3 The Need for a Server-Side Component Architecture p. 4 Server-Side Component Architecture

More information

ive JAVA EE C u r r i c u l u m

ive JAVA EE C u r r i c u l u m C u r r i c u l u m ive chnoworld Development Training Consultancy Collection Framework - The Collection Interface(List,Set,Sorted Set). - The Collection Classes. (ArrayList,Linked List,HashSet,TreeSet)

More information

J2EE - Version: 25. Developing Enterprise Applications with J2EE Enterprise Technologies

J2EE - Version: 25. Developing Enterprise Applications with J2EE Enterprise Technologies J2EE - Version: 25 Developing Enterprise Applications with J2EE Enterprise Technologies Developing Enterprise Applications with J2EE Enterprise Technologies J2EE - Version: 25 5 days Course Description:

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

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

Telecommunication Services Engineering Lab. Roch H. Glitho

Telecommunication Services Engineering Lab. Roch H. Glitho 1 Introduction Signaling protocol neutral service engineering technology Service architecture applicable to NGNs using any signalling protocol Next Generation signalling protocols SIP H.323 Example already

More information

Migrating traditional Java EE applications to mobile

Migrating traditional Java EE applications to mobile Migrating traditional Java EE applications to mobile Serge Pagop Sr. Channel MW Solution Architect, Red Hat spagop@redhat.com Burr Sutter Product Management Director, Red Hat bsutter@redhat.com 2014-04-16

More information

NetBeans IDE Field Guide

NetBeans IDE Field Guide NetBeans IDE Field Guide Copyright 2005 Sun Microsystems, Inc. All rights reserved. Table of Contents Extending Web Applications with Business Logic: Introducing EJB Components...1 EJB Project type Wizards...2

More information

An Efficient NAT Traversal for SIP and Its Associated Media sessions

An Efficient NAT Traversal for SIP and Its Associated Media sessions An Efficient NAT Traversal for SIP and Its Associated Media sessions Yun-Shuai Yu, Ce-Kuen Shieh, *Wen-Shyang Hwang, **Chien-Chan Hsu, **Che-Shiun Ho, **Ji-Feng Chiu Department of Electrical Engineering,

More information

Oracle Communications WebRTC Session Controller

Oracle Communications WebRTC Session Controller Oracle Communications WebRTC Session Controller Concepts Release 7.0 E40976-01 November 2013 Oracle Communications WebRTC Session Controller Concepts, Release 7.0 E40976-01 Copyright 2013, Oracle and/or

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

BEAWebLogic Server. Introduction to BEA WebLogic Server and BEA WebLogic Express

BEAWebLogic Server. Introduction to BEA WebLogic Server and BEA WebLogic Express BEAWebLogic Server Introduction to BEA WebLogic Server and BEA WebLogic Express Version 10.0 Revised: March, 2007 Contents 1. Introduction to BEA WebLogic Server and BEA WebLogic Express The WebLogic

More information

Designing a Distributed System

Designing a Distributed System Introduction Building distributed IT applications involves assembling distributed components and coordinating their behavior to achieve the desired functionality. Specifying, designing, building, and deploying

More information

Novell Access Manager 3.1

Novell Access Manager 3.1 Technical White Paper IDENTITY AND SECURITY www.novell.com Novell Access Manager 3.1 Access Control, Policy Management and Compliance Assurance Novell Access Manager 3.1 Table of Contents: 2..... Complete

More information

An IMS testbed for SIP applications

An IMS testbed for SIP applications Downloaded from orbit.dtu.dk on: Feb 24, 2018 An IMS testbed for SIP applications Caba, Cosmin Marius; Soler, José Published in: Proceedings of IIT Real-Time Communications Conference Publication date:

More information

Authentication, Authorization and Accounting Requirements for the Session Initiation Protocol

Authentication, Authorization and Accounting Requirements for the Session Initiation Protocol Internet Engineering Task Force INTERNET-DRAFT draft-ietf-sipping-aaa-req-02.ps SIP WG J. Loughney, G. Camarillo Nokia, Ericsson February 5, 2003 Expires: August, 2003 Authentication, Authorization and

More information

Cisco Unified Presence 8.0

Cisco Unified Presence 8.0 Cisco Unified Presence 8.0 Cisco Unified Communications Solutions unify voice, video, data, and mobile applications on fixed and mobile networks, enabling easy collaboration every time from any workspace.

More information

X100 ARCHITECTURE REFERENCES:

X100 ARCHITECTURE REFERENCES: UNION SYSTEMS GLOBAL This guide is designed to provide you with an highlevel overview of some of the key points of the Oracle Fusion Middleware Forms Services architecture, a component of the Oracle Fusion

More information

Presence-Based Runtime Composition of IMS Services Deployed in a SIP Servlet Platform

Presence-Based Runtime Composition of IMS Services Deployed in a SIP Servlet Platform Presence-Based Runtime Composition of IMS Services Deployed in a SIP Servlet Platform Juan Miguel Espinosa Carlín Communication and Distributed Systems, RWTH Aachen University, 52074 Aachen, Germany, e-mail:

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

Advanced Services for Internet Telephony

Advanced Services for Internet Telephony Thesis Proposal: Advanced Services for Internet Telephony 1 Advanced Services for Internet Telephony Thesis Proposal Department of Computer Science Columbia University Thesis Proposal: Advanced Services

More information

Overview of the Session Initiation Protocol

Overview of the Session Initiation Protocol CHAPTER 1 This chapter provides an overview of SIP. It includes the following sections: Introduction to SIP, page 1-1 Components of SIP, page 1-2 How SIP Works, page 1-3 SIP Versus H.323, page 1-8 Introduction

More information

Oracle 10g: Build J2EE Applications

Oracle 10g: Build J2EE Applications Oracle University Contact Us: (09) 5494 1551 Oracle 10g: Build J2EE Applications Duration: 5 Days What you will learn Leading companies are tackling the complexity of their application and IT environments

More information

Oracle Communication and Mobility Server: Introduction Student Guide

Oracle Communication and Mobility Server: Introduction Student Guide Oracle Communication and Mobility Server: Introduction Student Guide D52943GC10 Edition 1.0 January 2008 D54065 Author Viktor Tchemodanov Technical Contributors and Reviewers Christer Fahlgren Adam Odessky

More information

Web Application Development Using JEE, Enterprise JavaBeans and JPA

Web Application Development Using JEE, Enterprise JavaBeans and JPA Web Application Development Using JEE, Enterprise Java and JPA Duration: 35 hours Price: $750 Delivery Option: Attend training via an on-demand, self-paced platform paired with personal instructor facilitation.

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

COMMUNICATION PROTOCOLS

COMMUNICATION PROTOCOLS COMMUNICATION PROTOCOLS Index Chapter 1. Introduction Chapter 2. Software components message exchange JMS and Tibco Rendezvous Chapter 3. Communication over the Internet Simple Object Access Protocol (SOAP)

More information

J2EE Interview Questions

J2EE Interview Questions 1) What is J2EE? J2EE Interview Questions J2EE is an environment for developing and deploying enterprise applications. The J2EE platform consists of a set of services, application programming interfaces

More information

Unit 5 Research Project. Eddie S. Jackson. Kaplan University. IT530: Computer Networks. Dr. Thomas Watts, PhD, CISSP

Unit 5 Research Project. Eddie S. Jackson. Kaplan University. IT530: Computer Networks. Dr. Thomas Watts, PhD, CISSP Running head: UNIT 5 RESEARCH PROJECT 1 Unit 5 Research Project Eddie S. Jackson Kaplan University IT530: Computer Networks Dr. Thomas Watts, PhD, CISSP 09/09/2014 UNIT 5 RESEARCH PROJECT 2 Abstract Telephony

More information

Support of parallel BPEL activities for the TeamCom Service Creation Platform for Next Generation Networks

Support of parallel BPEL activities for the TeamCom Service Creation Platform for Next Generation Networks Support of parallel BPEL activities for the TeamCom Service Creation Platform for Next Generation Networks T.Eichelmann 1, 2, W.Fuhrmann 3, U.Trick 1, B.Ghita 2 1 Research Group for Telecommunication Networks,

More information

TSIN02 - Internetworking

TSIN02 - Internetworking Lecture 8: SIP and H323 Litterature: 2004 Image Coding Group, Linköpings Universitet Lecture 8: SIP and H323 Goals: After this lecture you should Understand the basics of SIP and it's architecture Understand

More information

CDCS: a New Case-Based Method for Transparent NAT Traversals of the SIP Protocol

CDCS: a New Case-Based Method for Transparent NAT Traversals of the SIP Protocol CDCS: a New Case-Based Method for Transparent NAT Traversals of the SIP Protocol Mustapha GUEZOURI LISSI/SCTIC, University of Paris XII-Val de Marne, France e-mail mguezouri@yahoo.fr and Abdelhamid MELLOUK

More information

X-Communicator: Implementing an advanced adaptive SIP-based User Agent for Multimedia Communication

X-Communicator: Implementing an advanced adaptive SIP-based User Agent for Multimedia Communication X-Communicator: Implementing an advanced adaptive SIP-based User Agent for Multimedia Communication Shakil Siddique, Raimund K. Ege and S. Masoud Sadjadi School of Computer Science Florida International

More information

Audio and Video Communication Software Design Based on SIP

Audio and Video Communication Software Design Based on SIP TELKOMNIKA Indonesian Journal of Electrical Engineering Vol. 12, No. 11, November 2014, pp. 7946 ~ 7951 DOI: 10.11591/telkomnika.v12i11.6478 7946 Audio and Video Communication Software Design Based on

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

index_ qxd 7/18/02 11:48 AM Page 259 Index

index_ qxd 7/18/02 11:48 AM Page 259 Index index_259-265.qxd 7/18/02 11:48 AM Page 259 Index acceptance testing, 222 activity definition, 249 key concept in RUP, 40 Actor artifact analysis and iterative development, 98 described, 97 136 in the

More information

This is the published version of a paper presented at Workshop on Innovative Mobile Applications of Context (IMAC) at MobileHCI 2006, Espoo, Finland.

This is the published version of a paper presented at Workshop on Innovative Mobile Applications of Context (IMAC) at MobileHCI 2006, Espoo, Finland. http://www.diva-portal.org This is the published version of a paper presented at Workshop on Innovative Mobile Applications of Context (IMAC) at MobileHCI 2006, Espoo, Finland. Citation for the original

More information

Vision of J2EE. Why J2EE? Need for. J2EE Suite. J2EE Based Distributed Application Architecture Overview. Umair Javed 1

Vision of J2EE. Why J2EE? Need for. J2EE Suite. J2EE Based Distributed Application Architecture Overview. Umair Javed 1 Umair Javed 2004 J2EE Based Distributed Application Architecture Overview Lecture - 2 Distributed Software Systems Development Why J2EE? Vision of J2EE An open standard Umbrella for anything Java-related

More information

User Customisation of Service Request Routing for the IP Multimedia Subsystem

User Customisation of Service Request Routing for the IP Multimedia Subsystem User Customisation of Service Request Routing 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

More information

Integrated Quick Messaging System for Mobile Phones Priya Dingria, Babita Doda, Rohini Temkar VES Institute of Technology, Chembur, Mumbai

Integrated Quick Messaging System for Mobile Phones Priya Dingria, Babita Doda, Rohini Temkar VES Institute of Technology, Chembur, Mumbai Integrated Quick Messaging for Mobile Phones Priya Dingria, Babita Doda, Rohini Temkar VES Institute of Technology, Chembur, Mumbai Abstract - With the rapid advancement of wireless network technologies,

More information

Web Application Development Using JEE, Enterprise JavaBeans and JPA

Web Application Development Using JEE, Enterprise JavaBeans and JPA Web Application Development Using JEE, Enterprise Java and JPA Duration: 5 days Price: $2795 *California residents and government employees call for pricing. Discounts: We offer multiple discount options.

More information

Network-based Fast Handover for IMS Applications and Services

Network-based Fast Handover for IMS Applications and Services Network-based Fast Handover for IMS Applications and Services Sang Tae Kim 1, Seok Joo Koh 1, Lee Kyoung-Hee 2 1 Department of Computer Science, Kyungpook National University 2 Electronics and Telecommunications

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

INSE 7110 Winter 2008 Value Added Services Engineering in Next Generation Networks Week #6, Lecture 6. Roch H. Glitho- Ericsson/Concordia University

INSE 7110 Winter 2008 Value Added Services Engineering in Next Generation Networks Week #6, Lecture 6. Roch H. Glitho- Ericsson/Concordia University INSE 7110 Winter 2008 Value Added Services Engineering in Next Generation Networks Week #6, Lecture 6 1 efinition... Signaling protocol neutral architecture Service architecture applicable to networks

More information

Java EE 6: Develop Business Components with JMS & EJBs

Java EE 6: Develop Business Components with JMS & EJBs Oracle University Contact Us: + 38516306373 Java EE 6: Develop Business Components with JMS & EJBs Duration: 4 Days What you will learn This Java EE 6: Develop Business Components with JMS & EJBs training

More information

Introduction. Enterprise Java Instructor: Please introduce yourself Name Experience in Java Enterprise Edition Goals you hope to achieve

Introduction. Enterprise Java Instructor: Please introduce yourself Name Experience in Java Enterprise Edition Goals you hope to achieve Enterprise Java Introduction Enterprise Java Instructor: Please introduce yourself Name Experience in Java Enterprise Edition Goals you hope to achieve Course Description This course focuses on developing

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

The convergence of network computing and telecommunications

The convergence of network computing and telecommunications The convergence of network computing and telecommunications David G. Messerschmitt University of California at Berkeley Copyright 1997, David G. Messerschmitt 3/5/97 1 Terminology Applications Services

More information

Java EE 7: Back-End Server Application Development

Java EE 7: Back-End Server Application Development Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Java EE 7: Back-End Server Application Development Duration: 5 Days What you will learn The Java EE 7: Back-End Server Application

More information

Oracle WebLogic Server 12c: Administration I

Oracle WebLogic Server 12c: Administration I Oracle WebLogic Server 12c: Administration I Duration 5 Days What you will learn This Oracle WebLogic Server 12c: Administration I training teaches you how to install and configure Oracle WebLogic Server

More information

Vendor: SUN. Exam Code: Exam Name: SUN Certified ENITRPRISE ARCHITECT FOR J2EE(tm)TECHNOLOGY. Version: Demo

Vendor: SUN. Exam Code: Exam Name: SUN Certified ENITRPRISE ARCHITECT FOR J2EE(tm)TECHNOLOGY. Version: Demo Vendor: SUN Exam Code: 310-051 Exam Name: SUN Certified ENITRPRISE ARCHITECT FOR J2EE(tm)TECHNOLOGY Version: Demo QUESTION NO: 1 Which acts as a proxy to an EJB? A. home instance B. remote instance C.

More information

White Paper Subcategory. Overview of XML Communication Technologies

White Paper Subcategory. Overview of XML Communication Technologies Subcategory Overview of XML Communication Technologies Executive Summary A significant shift has occurred in the communications infrastructures deployed today. This shift is the result of the acceptance

More information

Component-Based Software Engineering. ECE493-Topic 5 Winter Lecture 26 Java Enterprise (Part D)

Component-Based Software Engineering. ECE493-Topic 5 Winter Lecture 26 Java Enterprise (Part D) Component-Based Software Engineering ECE493-Topic 5 Winter 2007 Lecture 26 Java Enterprise (Part D) Ladan Tahvildari Assistant Professor Dept. of Elect. & Comp. Eng. University of Waterloo J2EE Application

More information

Introduction To Web Architecture

Introduction To Web Architecture Introduction To Web Architecture 1 Session Plan Topic Estimated Duration Distributed computing 20 min Overview of Sun Microsoft Architecture 15 min Overview of Microsoft Architecture 15 min Summary 15

More information

Analysis of Effectiveness of Open Service Architecture for Fixed and Mobile Convergence

Analysis of Effectiveness of Open Service Architecture for Fixed and Mobile Convergence Analysis of Effectiveness of Open Service Architecture for Fixed and Mobile Convergence Kyung-Hyu Lee* Jeung-Heon Hahn* Electronics and Telecommunications Research Institute* Email: {khyulee, stevehahn

More information

Cisco Unified Communications Manager 9.0

Cisco Unified Communications Manager 9.0 Data Sheet Cisco Unified Communications Manager 9.0 Cisco Unified Communications Manager is the heart of Cisco collaboration services, enabling session and call control for video, voice, messaging, mobility,

More information

Introduction to componentbased software development

Introduction to componentbased software development Introduction to componentbased software development Nick Duan 8/31/09 1 Overview What is a component? A brief history of component software What constitute the component technology? Components/Containers/Platforms

More information

Experiences in the management of an EJB-based e- commerce application. Abstract

Experiences in the management of an EJB-based e- commerce application. Abstract Experiences in the management of an EJB-based e- commerce application Juan I. Asensio, Víctor A. Villagrá, Jorge E. López de Vergara, Roney Pignaton, Julio J. Berrocal. Department of Telematic Systems

More information

Enterprise Java Unit 1-Chapter 2 Prof. Sujata Rizal Java EE 6 Architecture, Server and Containers

Enterprise Java Unit 1-Chapter 2 Prof. Sujata Rizal Java EE 6 Architecture, Server and Containers 1. Introduction Applications are developed to support their business operations. They take data as input; process the data based on business rules and provides data or information as output. Based on this,

More information

Presence Scalability Architectures 1

Presence Scalability Architectures 1 Scalability Architectures 1 Vishal K. Singh and Henning Schulzrinne Department of Computer Science, Columbia University {vs2140, hgs}@cs.columbia.edu Abstract: We apply the two-stage reliable and scalable

More information

A Service Platform for Internet- Telecom Services using SIP

A Service Platform for Internet- Telecom Services using SIP A Service Platform for nternet- Telecom Services using SP S. Bessler', A.V. Nisanyan 2, K. Peterbauer 1, R. Pailer 3, J. Stadler 4 1 Kapsch AG, Pottendorferstrasse 19, A -1121 Vienna, Austria {Bessler,Peterbau}@kapsch.net

More information

Oracle Fusion Middleware 11g: Build Applications with ADF I

Oracle Fusion Middleware 11g: Build Applications with ADF I Oracle University Contact Us: +966 1 1 2739 894 Oracle Fusion Middleware 11g: Build Applications with ADF I Duration: 5 Days What you will learn This course is aimed at developers who want to build Java

More information

Trillium-TCAP. White Paper. Overview CONTENTS

Trillium-TCAP. White Paper. Overview CONTENTS White Paper Trillium-TCAP Overview Fixed and mobile telecommunications as well as the global Internet are two world changing technologies that have revolutionized how people and business communicate. Both

More information

Enterprise JavaBeans. Layer:01. Overview

Enterprise JavaBeans. Layer:01. Overview Enterprise JavaBeans Layer:01 Overview Agenda Course introduction & overview. Hardware & software configuration. Evolution of enterprise technology. J2EE framework & components. EJB framework & components.

More information

SIMPLEstone - Benchmarking Presence Server Performance *

SIMPLEstone - Benchmarking Presence Server Performance * SIMPLEstone - Benchmarking Presence Server Performance * Vishal K. Singh and Henning Schulzrinne Department of Computer Science, Columbia University {vs2140, hgs}@cs.columbia.edu Abstract: Presence is

More information

Contents at a Glance

Contents at a Glance Contents at a Glance 1 Java EE and Cloud Computing... 1 2 The Oracle Java Cloud.... 25 3 Build and Deploy with NetBeans.... 49 4 Servlets, Filters, and Listeners... 65 5 JavaServer Pages, JSTL, and Expression

More information

Enterprise JavaBeans, Version 3 (EJB3) Programming

Enterprise JavaBeans, Version 3 (EJB3) Programming Enterprise JavaBeans, Version 3 (EJB3) Programming Description Audience This course teaches developers how to write Java Enterprise Edition (JEE) applications that use Enterprise JavaBeans, version 3.

More information

Internet Engineering Task Force (IETF) Request for Comments: 7403 Category: Standards Track November 2014 ISSN:

Internet Engineering Task Force (IETF) Request for Comments: 7403 Category: Standards Track November 2014 ISSN: Internet Engineering Task Force (IETF) H. Kaplan Request for Comments: 7403 Oracle Category: Standards Track November 2014 ISSN: 2070-1721 Abstract A Media-Based Traceroute Function for the Session Initiation

More information

Distributed Systems. Messaging and JMS Distributed Systems 1. Master of Information System Management

Distributed Systems. Messaging and JMS Distributed Systems 1. Master of Information System Management Distributed Systems Messaging and JMS 1 Example scenario Scenario: Store inventory is low This impacts multiple departments Inventory Sends a message to the factory when the inventory level for a product

More information

J2EE Development. Course Detail: Audience. Duration. Course Abstract. Course Objectives. Course Topics. Class Format.

J2EE Development. Course Detail: Audience. Duration. Course Abstract. Course Objectives. Course Topics. Class Format. J2EE Development Detail: Audience www.peaksolutions.com/ittraining Java developers, web page designers and other professionals that will be designing, developing and implementing web applications using

More information

Cisco Unified Application Designer 2.4

Cisco Unified Application Designer 2.4 Cisco Unified Application Designer 2.4 Cisco Unified Communications is a comprehensive IP communications system of voice, video, data, and mobility products and applications. It enables more effective,

More information

Internet Engineering Task Force (IETF) Request for Comments: 8465 September 2018 Category: Informational ISSN:

Internet Engineering Task Force (IETF) Request for Comments: 8465 September 2018 Category: Informational ISSN: Internet Engineering Task Force (IETF) R. Atarius, Ed. Request for Comments: 8465 September 2018 Category: Informational ISSN: 2070-1721 Using the Mobile Equipment Identity (MEID) URN as an Instance ID

More information

SIP Conformance Testing Based on TTCN-2 *

SIP Conformance Testing Based on TTCN-2 * TSINGHUA SCIENCE AND TECHNOLOGY ISSN 1007-0214 40/49 pp223-228 Volume 12, Number S1, July 2007 SIP Conformance Testing Based on TTCN-2 * LI Tian ( 李天 ), WANG Zhiliang ( 王之梁 ), YIN Xia ( 尹霞 ) ** Department

More information

In the most general sense, a server is a program that provides information

In the most general sense, a server is a program that provides information d524720 Ch01.qxd 5/20/03 8:37 AM Page 9 Chapter 1 Introducing Application Servers In This Chapter Understanding the role of application servers Meeting the J2EE family of technologies Outlining the major

More information