X-S Framework Leveraging XML on Servlet Technology

Size: px
Start display at page:

Download "X-S Framework Leveraging XML on Servlet Technology"

Transcription

1 X-S Framework Leveraging XML on Servlet Technology Rajesh Kumar R Abstract This paper talks about a XML based web application framework that is based on Java Servlet Technology. This framework leverages the XML technology to create a high performance presentation engine for the web-based applications, that helps in overcome the limitations of the widely used JSP (Java Server Pages) and ASP (Microsoft Active Server Pages) by giving a means to develop the application in multiple layers. The framework provides many common services and a centralized component based approach for web application development with which only the application specific code need to be written using the services API provided by the framework and the other infrastructure services are taken care by the framework. With this approach the application is developed with least dependency across various layers and the impact to the application due to enhancement of services, changes in functionality, etc is highly shielded. This framework can be deployed in to any servlet engine or any J2EE platform. Index Terms Component Based Architecture, J2EE, Servlet, XML I. INTRODUCTION IN present days web applications are becoming more and more critical for enterprise solutions and they are getting more complex with requirements such as multi-channel application delivery, multi-lingual presentation, personalized content, security, access control, etc. The framework is aimed at providing infrastructure that is required to develop complex web applications faster and easier, overcoming the limitations present with the existing approaches. The framework provides a multi layered approach for developing the presentation tier of a web application, in addition to providing the infrastructure services such as session management, access management for application security, caching, etc. with a light weight component model for scalability and performance. This provides an environment to develop the web application where only the application specific code is developed while the common services are taken care by the framework and it provides a means to develop the presentation tier in multiple layers which make the application faster to develop, avoids interdependencies with the different layers and makes it more adaptable for changes that are inevitable in software projects. It is also aimed to help manage a web application development project better, as this enforces a structured approach to the application development. XML transformation technology is used for producing the presentation output that helps in producing a highly flexible and performing presentation engine and the servlet infrastructure is used for implementing the framework services. This framework is developed in such as way that it can be deployed on any servlet engine and based on open source XML parsers and XSLT processors. II. EXISTING METHODOLOGY FOR WEB APPLICATION DEVELOPMENT AND ITS LIMITATIONS JSP (Java Server Pages) or ASP (Active Server Pages) technologies are used for present days web application development as they provide an easy mechanism for adding dynamic content to the static HTML content. In this approach application is developed by plugging in code in the static content that are to be generated in the beginning of the project. While executing an e-commerce project initially the basic structure of the page layout will be developed, which serves as a prototype for the application, this is often called as wireframes. Normally there will be a separate team that would be working on the final look-and-feel of the application where the styles, colors and finer presentation details for representing the structures in the wire-frames will be decided. Once the final pages are ready with the look-and-feel then it is delivered to the application development team for plugging in the code for introducing the dynamic behaviors. This work was done at MindTree Consulting, an E-Business and Technology consulting organization based in Bangalore, India. This work was created as an initiative to create frameworks that will help deliver robust E- commerce solutions with large complexities in a short duration of time. This framework has been deployed for multiple projects and has been proved to be large success. Rajesh Kumar R is with MindTree Consulting, No. 42, 27 th Cross, 2 nd Stage Banashankari, Bangalore, India Pin: (Telephone: , Fax: , rajeshkr@mindtree.com). Topic area: E-commerce ISBN: Fig. 1. Simplified representation of JSP/ ASP based web application, where the Data, Structure and Visual representation is a single layer In this approach the data access code responsible for getting

2 the data for the presentation and the presentation layer itself consisting of the layout of the data and the final presentation formatting with the correct colors, fonts, etc form a single physical entity as shown in Fig 1. Limitation associated with this approach In many cases the wire frame will be available in the beginning of the project, but the final look-and-feel may not be decided, in that case, it may not possible to start the presentation tier development as the HTML files may not be available to plug-in the dynamic logic or it may involve large amount of code changes to implement the look and feel at a later point of time. Some structured approach could be followed to change the look and feel at a later point so that the impact is less, but this will involve the effort of a design in place that would enable to do this, which if not done correctly will end up in lot of re-work if the user interface (UI) changes at a later point of time. Also when the UI changes it will not be a zero impact, meaning some amount of data access code will need to be re-touched, at least for the correct positioning in the pages In certain cases the structure of the web site may change while the project is being executed, but keeping the look-and-feel consistent. This would most likely involve lot of re-work if the pages are not structured correctly with page includes, where the individual components of a page is constructed individually and assembled, so that the common components that appear on all pages can be re-used. This again would involve considerable effort in designing the individual page components and technically there are overheads in page-includes, which would impact the performance. It may not always happen that the business tier or the middleware design is available for the presentation tier to design for the data objects to be used for presenting the data. In most cased this will happen parallel and may be done by different teams, there is possibility of changes in one layer impacting the other. There is no general specification for presentation layer development such as EJB specifications available for middleware, hence it is totally up to the individual project teams to design, which would involve considerable effort and may not result in a consistent design. III. MULTI-LAYERED PRESENTATION APPROACH Any presentation consists of three components namely data, structure & visual that constitute the final presentation entity, as illustrated in Fig 2. For a presentation for an E-commerce application the data will be the dynamic content that is typically fetched from middleware or a database, which would involve programming logic. The layout of the data and applying a final presentation style are purely presentation related details that should be isolated from the data access logic. Fig. 2. A web presentation showing the list of clients of an organization, illustrated with the different layers. Data Layer: In the above example the data contained in the presentation entity are the list of clients. Basically the data layer consists of the data that is presented through the web presentation. It should be noted that this data is purely domain or business specific and does not contain any information or details about how it is presented. Structural Layer: The structural layer consists of the structure of the data presentation. Like in the above example, the structural information will be that the data should be presented as a bulleted list below the page header. The structural layer does not have any information about how the final presentation is done; it only states the structure of the presentation. For the above example, the structural layer will not contain any information about the final representation of the bulleted list, like the font, type of bullet, the page background, etc, it only states the structure of the presentation. Visual Layer: The rules for defining how the structure should look in the final representation constitute the visual representation layer. Like in the above example: The final representation is in HTML Page background is in yellow The top menu consists of the title and the menu with blue background Logo appears on the right The bulleted list s font is Times New Roman, etc. The visual representation layer basically consists of the rules for translating the structures described in the structural layer in to final representation IV. X-S FRAMEWORK OVERVIEW The XML technology is leveraged over the servlet

3 infrastructure to develop a framework that enables to develop a web application in three different layers as mentioned above namely Data, Structure & the Visual layers. As a result of this the limitations associated with the typical development approach using JSP or ASP are overcome and because of the layering it becomes easier to manage issues related to multichannel, multi-lingual presentations, character encoding, etc as this will mean changes only to the visual layer. The XSL Transformation (XSLT) is used for generating various layers in the presentation. Since the different layers are developed and deployed as separate physical entities that are not closely coupled, each layer can be modified independently with out impacting the other for implementing any changes. Also this approach defines a clear agreement between each layer about the way they are integrated, basically XML documents are passed across, hence it provides a means to develop the different layers independently once the XML interactions are decided based on the presentation and this provides a means to control and manage the application development better. Standard authentication & authorization checks DB connection management V. FRAMEWORK DETAILS The framework is based on a servlet that receives the HTTP requests and delegates the action based on the request to the corresponding request specific components that is designed to handle it. It goes through some standard operations based on the request before processing it. Then the final response for the request will be constructed and delivered by the request specific components. The servlet consists of the wiring code for connecting the various components that constitutes the framework and establishes the communication flow between them. Before processing a request the framework will do the basic checks such as session checks to verify if the request needs a login, access checks to confirm that the logged in user has the access to the requested module, etc, based on the request. The checks that is required to be carried out for a request is configurable by setting attributes in the request specific component. Based on the request received the framework will delegate the operation of getting the necessary data for the request to the appropriate request specific component. The request specific component will construct the data XML and return it to the framework. Then the framework will transform the XML using a XSL designed for that request, and apply the final presentation details over it and the final response is constructed. Fig. 3. The basic layers in X-S Framework based development The Data access component is the one responsible for obtaining the data required for presentation from various sources and once the data it obtained it is represented as XML and delivered to the framework for transformations that would result in the final presentation as illustrated in Fig. 3. While developing applications using frameworks the amount of code written to create an application also reduces very much as only the application specific logic is coded, thereby reducing the chances of errors and eventually the applications resulting will be of better quality. The framework-based approach as reduced the impact to the application code as anything other than the application specific logic are managed centrally through the framework components. Following are some of the standard operations managed by the framework: Access of session data Access management authorization Translation for multi-lingual implementation Multi-channel delivery Processor instantiation management using object pooling Caching for performance Application Flow management The building blocks of the framework could be classified mainly into two categories namely A. Framework Components B. Application components A. Framework Components The framework components are the general modules that are responsible for the basic operation of the framework. These are application independent. Base Framework: This is basically the servlet that receives the requests and delivers the response. This servlet wires all the other components of the framework and delegates the action that needs to be taken to the various modules. The framework receives the structural XML from the application specific components and transforms it to the final response with XSL transformation. Session Manager: The session management mechanism is encapsulated in this module and the functionalities of this module are exposed by means of an interface. The rest of the framework components and the application components will access the session manager using the interface and the implementation is independent of its usage. Hence changing the session management mechanism will not affect the application and at any stage of the project it can be decided to enhance, optimize or modify the session management mechanism. Access Manager: The functionality of the access manager is to check if the logged in user has got the

4 access for the request submitted. The framework carries out this check before processing the request and it will do this check only if the request is marked as access check required. The access manager s implementation is similar to that of the session manager where the implementation is made independent of the usage using an interface. Language Manager: The language manager is used for translating the data that needs to be presented. The development will be done based on one language and all the data will be presented finally after passing it through the language manager. Based on the dictionary attached, the language manager will carry out the translations. The language settings are externalized and controlled by a conf file hence it is easily configurable. Visual Layer Cache: This component is responsible for caching all the requested style sheets that are accessed to avoid disk access every time for delivering the responses, resulting in better performance. The configuration can be set to enable or disable the visual layer cache. Response Cache: Some of the responses may not contain a very dynamic content, for such requests the resulting response itself could be cached to avoid the XSL processing. This module will have the facility for setting the refresh time for the cache through which the cache will be refreshed periodically, so that any updates if it is there can reflect automatically. The enabling or disabling of the response cache is done at the request level, so it gives the flexibility of choosing this caching facility for only those requests, which needs it. Structural & Visual style XSL: The structural style XSL contain the transformation details for the data XML that is constructed from the middleware or business layer calls. This will transform the data XML into an intermediate structural XML that will contain the presentation details for the data, which is independent of the presentation channel or language. The visual XSL contains the transformation rules for converting the structural XML that results from the transformation of data XML by the structural style XSL. The visual XSL transformation will result in the channel specific final response that will be delivered as response through the delivery channels. Multi-channel/ Multi-lingual style chooser: This module chooses the visual style XSL for the final transformation based on the channel and the language of presentation. This module fetches details for making the choice of the right XSL from the configuration XML. Middleware connector: All the middleware connection related activities will happen in this module and the entire application will connect to the middleware through this module. Hence if there is any change in the way the connection happen in the middleware or any change of middleware itself, only this module will undergo changes without affecting the rest of the system. Request Handler: When the request arrives to the servlet this module is the one that handles the request. It instantiate the appropriate request processor and returns it to the framework and the framework will further operate on the request processor to get the final response. The application specific request handlers will implement the required handling code. The request handler is a generalized form of the application specific request handler. Request Processor: This module is responsible for carrying out the necessary processing for the request received. The framework will operate on the request processor to construct the final response. The request specific processors will have to be implemented to handle each request. The request processor is a generalized form of the application specific request processor. Configuration XML: Though it forms an integral part of the framework, it qualifies as a separate component of the framework that controls many of the runtime behaviors of the application. Some of the runtime setting that are controlled by this are: i. The middleware to lookup. It enables hot shifting of middleware servers while the application is running a handy feature during the development phase. ii. Enabling and disabling of the Response cache, Visual cache, etc. iii. The module specific visual style decision. iv. Browser specific shifting of visual style. v. Database connections. vi. Static content delivery vii. Mail configuration viii. Cache configuration ix. Object Pool configuration B. Application Components The application components are developed for a specific application, which gets plugged into the framework. Application specific request handler: This component is developed for each major module in an application. The request handler is passed on with the received request and it contains the code for handling all the requests in the application module. Its overall responsibility is just to return the request processor based on the request received. Request specific processor: For each request or a logical group of requests the request specific processor are to be developed. This will contain the code for getting the necessary data for the request by contacting the middleware and constructing the data XML. This module is also responsible for setting all the request specific parameters such as the structural style XSL, if session check is required, if access check is required, etc based on which the framework will decide on the operations that are to be carried out for the request. On receiving the data XML from the request specific processors the framework will carry out the XSL transformations on the XML and generates the final response.

5 VI. FRAMEWORK PROCESS FLOW Fig. 4. The process flow diagram of the framework Fig.4 Represents the simplified process flow in the framework that shows the normal flow along with the flow in case of exceptions. The process description: 1. The requests received by the framework will first be handed over to the request handler, which will instantiate the request processor corresponding to the request received. 2. The instantiated request processor will be handed over to the framework. The request processor will have details about the basic checks that are to be carried out for the request. 3. Based on the information retrieved from the request processor, the frame work will carry out the checks such as session checks & access checks, explained below: a. Session Check: If the request mandates a login, the framework will check the existence of a session and the login requirements, if it is detected that the login has not happened or the session does not exist it will hand over the control to the exception processor by passing appropriate messages. b. Access Check: If the person logged in does not have access to a page and he has submitted a request for that page, this access check will detect and it will pass the control to the exception processor. 4. Once the request passes through all the checks and if all the checks succeed, then the request processor will be requested to process the request. The processing may include contacting the middleware and getting the required data for the request. Once the required data is obtained, a data XML is constructed and passed on to the page content generator. 5. The page content generator will transform the data XML to a page content XML that will contain the structural details of the presentation details, such as the data is represented as title of a page, the data represented as table content, the entry fields present in page, the dropdowns in a page, etc. But the final representation code such as the HTML or WML equivalent of the page contents are not defined in the page content XML. Hence the page content XML is channel independent. 6. The page content XML is then passed on to the response processor, which chooses the final representation of the page content based on the channel and the language of presentation. The response processor will transform the page content XML into HTML or WML by choosing the appropriate XSL based on the configuration, channel of delivery, language, application, etc and the final response is delivered. 7. In case of any exception or failure of any checks, the exception processor will decide the response based on the type of exception and generate a response i.e. it will generate a page content XML based on the message to be shown and hand it over to the Response Processor which will result in generating the final response that would get delivered. VII. FEATURES AND ADVANTAGES Multi layered development: The standard application is divided as data-structure-visual layers. Each layer is independent of the other hence can be developed without dependencies and can undergo changes with minimal impact. Re-use of data layer: Since the data layer is independent of the visual and structural layers, the same presentation data could be shared for multiple visual representations of the data. For example, a data logic developed for a specific look and feel could be re-used with a different visual layer for presenting the same data with a different look and feel or even for a different channel of delivery such as WAP or CHTML Component based: Since the framework is component based, each presentation unit is developed as components responsible for a specific presentation task and plugged into the framework. Hence adding or removing the functionality will be a very standard operation and will not technically impact the rest of the system. Also changing a specific component will

6 mean only operating on that specific unit without disturbing the rest of the system. Descriptor based configuration: Many of the system s runtime behavior is based on a XML descriptor. Hence the runtime behaviors can be controlled by changing the descriptor without any code change, re-compilation or even re-start of the application in most cases. Rapid development: Only application specific components need to be developed. Since the application is developed in multiple layers the development of each layer can happen in parallel. Object Pooling: The page processing components for the application are pooled by framework, thereby reducing the object instantiation overhead during runtime, contributing to the runtime performance of the application. Independent implementation of look & feel changes: Implementing the look and feel changes is a part of visual layer, so it can be implemented by changing only the XSL for the visual representation. This means, once the basic structure of the presentation layer is decided the development of it can go ahead without waiting for the final look and feel. The final look and feel can be implemented any time by modifying the visual layer, without changing the data-logic. Modular: The framework is constructed with many independent modules wired up with one another. This provides more possibilities of performance tuning as each of the modules can be altered independently without affecting the other. For example, if at a later stage it is required to change the session management mechanism using a different technology, only the session manager implementation will change and the rest of the framework or the application is not required to be altered. Auto authentication and authorization check: There is no need to implement the authentication and authorization checks in the application code as it is taken care by the framework. This would mean lot of work being saved from the development perspective and this also gives a means of changing the authentication and authorization mechanism totally, if need arises with zero impact to the application code. Caching: The dynamic web page caching comes as a standard feature with the framework. The cache is highly configurable with possibilities of caching the pages both in memory as well as disk, there by increasing the performance of the overall application. A short Feature comparison with JSP technology XS-Framework High performance is achieved due the use of very fast XML parsers and XSL Transformers, Resource pooling to neutralize instantiation time. Control over proliferation of specific resources to ensure optimal use of server resources. Reusable components available for Multi-lingual capabilities, Database Connection Management, Mail utilities, etc. Highly configurable runtime behavior of the application, as it is based on the parameters defined in the configuration file. Clean and clear division of data, Organization of data for presentation and the visual experience. Performance is not a function of Page complexity, as it depends mainly on XSL transformations and the layout logic does not determine the page complexity Caching is a standard feature of the framework. Pages with dynamic content can be cached, depending on the frequency of change of content. ACKNOWLEDGMENT JSP Technology Performance is impeded due constant shift between access to the file system for static content and processing the dynamic content. Such fine tuned control is more difficult to implement. These components have to be designed and developed ground up. Configurable application behaviors are to be planned and built for each application Structure and Visual experience are highly coupled. Care need to be taken to separate data access from the presentation Performance is a function of page complexity hence response time for complex pages will more. To implement caching an external software will be required Thanks to all the team members who participated in conceptualizing and developing this framework. Thanks to the management of MindTree Consulting for providing the necessary support and encouragement to bring this concept in to a reality. REFERENCES [1] Erich Gamma, Richard Helm, Ralph Johnson, John Vlissides, "Design Patterns, Elements of Reusable Object-Oriented Software," [2] Deepak Alur, John Crupi, Dan Malks Core J2EE Patterns, Best practices and Design statergies [3] Brett Mc Laughlin Java & XML 2 nd Edition

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

DESIGN PATTERN - INTERVIEW QUESTIONS

DESIGN PATTERN - INTERVIEW QUESTIONS DESIGN PATTERN - INTERVIEW QUESTIONS http://www.tutorialspoint.com/design_pattern/design_pattern_interview_questions.htm Copyright tutorialspoint.com Dear readers, these Design Pattern Interview Questions

More information

Chapter 1 GETTING STARTED. SYS-ED/ Computer Education Techniques, Inc.

Chapter 1 GETTING STARTED. SYS-ED/ Computer Education Techniques, Inc. Chapter 1 GETTING STARTED SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: The IDE: Integrated Development Environment. MVC: Model-View-Controller Architecture. BC4J: Business Components

More information

The CESAR Project using J2EE for Accelerator Controls

The CESAR Project using J2EE for Accelerator Controls EUROPEAN ORGANIZATION FOR NUCLEAR RESEARCH CERN AB DIVISION CERN-AB-2004-001 (CO) The CESAR Project using J2EE for Accelerator Controls V. Baggiolini, P. Bailly, B. Chauchaix, F. Follin, J. Fullerton,

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

Developing Applications with Java EE 6 on WebLogic Server 12c

Developing Applications with Java EE 6 on WebLogic Server 12c Developing Applications with Java EE 6 on WebLogic Server 12c Duration: 5 Days What you will learn The Developing Applications with Java EE 6 on WebLogic Server 12c course teaches you the skills you need

More information

Distributed Multitiered Application

Distributed Multitiered Application Distributed Multitiered Application Java EE platform uses a distributed multitiered application model for enterprise applications. Logic is divided into components https://docs.oracle.com/javaee/7/tutorial/overview004.htm

More information

Basic Properties of Styles

Basic Properties of Styles Component-Based Software Engineering ECE493-Topic 5 Winter 2007 Lecture 18 Enterprise Styles/Patterns (Part A) Ladan Tahvildari Assistant Professor Dept. of Elect. & Comp. Eng. University of Waterloo Basic

More information

JDBC Today C HAPTER 1 INTRODUCTION

JDBC Today C HAPTER 1 INTRODUCTION C HAPTER 1 JDBC Today INTRODUCTION Since its inception in 1995 the Java language has continued to grow in popularity. Originally intended as a language for embedded systems, the Java language has moved

More information

AIM. 10 September

AIM. 10 September AIM These two courses are aimed at introducing you to the World of Web Programming. These courses does NOT make you Master all the skills of a Web Programmer. You must learn and work MORE in this area

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

Model-View-Controller

Model-View-Controller CNM STEMulus Center Web Development with PHP November 11, 2015 1/8 Outline 1 2 2/8 Definition A design pattern is a reusable and accepted solution to a particular software engineering problem. Design patterns

More information

"Web Age Speaks!" Webinar Series

Web Age Speaks! Webinar Series "Web Age Speaks!" Webinar Series Java EE Patterns Revisited WebAgeSolutions.com 1 Introduction Bibhas Bhattacharya CTO bibhas@webagesolutions.com Web Age Solutions Premier provider of Java & Java EE training

More information

Work groups meeting 3

Work groups meeting 3 Work groups meeting 3 INF5040 (Open Distributed Systems) Sabita Maharjan sabita@simula.no Department of Informatics University of Oslo September 07, 2009 Design Patterns J2EE Design Patterns Outline EIS

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

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

Java Enterprise Edition

Java Enterprise Edition Java Enterprise Edition The Big Problem Enterprise Architecture: Critical, large-scale systems Performance Millions of requests per day Concurrency Thousands of users Transactions Large amounts of data

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

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

Oracle Fusion Middleware 11g: Build Applications with ADF I

Oracle Fusion Middleware 11g: Build Applications with ADF I Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 4108 4709 Oracle Fusion Middleware 11g: Build Applications with ADF I Duration: 5 Days What you will learn Java EE is a standard, robust,

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

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

Reusability Evaluation of a Domain-Specific Web Application Framework

Reusability Evaluation of a Domain-Specific Web Application Framework Reusability Evaluation of a Domain-Specific Web Application Framework Feng Zhou and Takeshi Chusho Abstract Web application is used in various business fields on the Internet and intranets. It is an efficient

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

PeopleSoft Internet Architecture

PeopleSoft Internet Architecture PeopleSoft Internet Architecture AN OPEN ARCHITECTURE FOR INTERNET ACCESS AND INTEGRATION 3 ( 2 3 / (6 2 ) 7 Ã3 2 6, 7, 2 1 Ã3 $ 3 ( 5 - $ 1 8 $ 5 < Ã 3 (23/(6 2)7Ã, 17(51(7Ã$ 5&+,7(&785( - $18$5

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

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

Oracle - Developing Applications for the Java EE 7 Platform Ed 1 (Training On Demand)

Oracle - Developing Applications for the Java EE 7 Platform Ed 1 (Training On Demand) Oracle - Developing Applications for the Java EE 7 Platform Ed 1 (Training On Demand) Code: URL: D101074GC10 View Online The Developing Applications for the Java EE 7 Platform training teaches you how

More information

Java Programming Language

Java Programming Language Java Programming Language Additional Material SL-275-SE6 Rev G D61750GC10 Edition 1.0 D62603 Copyright 2007, 2009, Oracle and/or its affiliates. All rights reserved. Disclaimer This document contains proprietary

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

COURSE 9 DESIGN PATTERNS

COURSE 9 DESIGN PATTERNS COURSE 9 DESIGN PATTERNS CONTENT Applications split on levels J2EE Design Patterns APPLICATION SERVERS In the 90 s, systems should be client-server Today, enterprise applications use the multi-tier model

More information

TOPLink for WebLogic. Whitepaper. The Challenge: The Solution:

TOPLink for WebLogic. Whitepaper. The Challenge: The Solution: Whitepaper The Challenge: Enterprise JavaBeans (EJB) represents a new standard in enterprise computing: a component-based architecture for developing and deploying distributed object-oriented applications

More information

Developing Java TM 2 Platform, Enterprise Edition (J2EE TM ) Compatible Applications Roles-based Training for Rapid Implementation

Developing Java TM 2 Platform, Enterprise Edition (J2EE TM ) Compatible Applications Roles-based Training for Rapid Implementation Developing Java TM 2 Platform, Enterprise Edition (J2EE TM ) Compatible Applications Roles-based Training for Rapid Implementation By the Sun Educational Services Java Technology Team January, 2001 Copyright

More information

MASTERS COURSE IN FULL STACK WEB APPLICATION DEVELOPMENT W W W. W E B S T A C K A C A D E M Y. C O M

MASTERS COURSE IN FULL STACK WEB APPLICATION DEVELOPMENT W W W. W E B S T A C K A C A D E M Y. C O M MASTERS COURSE IN FULL STACK WEB APPLICATION DEVELOPMENT W W W. W E B S T A C K A C A D E M Y. C O M COURSE OBJECTIVES Enable participants to develop a complete web application from the scratch that includes

More information

RADX - Rapid development of web applications in XML

RADX - Rapid development of web applications in XML RADX - Rapid development of web applications in XML José Paulo Leal and Jorge Braz Gonçalves DCC-FC, University of Porto R. Campo Alegre, 823 4150 180 Porto, Portugal zp@dcc.fc.up.pt, jgoncalves@ipg.pt

More information

COMP9321 Web Application Engineering

COMP9321 Web Application Engineering COMP9321 Web Application Engineering Design Patterns II Dr. Basem Suleiman Service Oriented Computing Group, CSE, UNSW Australia Semester 1, 2016, Week 7 http://webapps.cse.unsw.edu.au/webcms2/course/index.php?cid=2442

More information

Socket attaches to a Ratchet. 2) Bridge Decouple an abstraction from its implementation so that the two can vary independently.

Socket attaches to a Ratchet. 2) Bridge Decouple an abstraction from its implementation so that the two can vary independently. Gang of Four Software Design Patterns with examples STRUCTURAL 1) Adapter Convert the interface of a class into another interface clients expect. It lets the classes work together that couldn't otherwise

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

Java EE Patterns 176

Java EE Patterns 176 Java EE Patterns 176 What are Java EE Patterns?! " A collection of Java EE based solutions to common problems! " Address reoccurring problems found in enterprise class systems! " Intended to meet quality

More information

Agent-Enabling Transformation of E-Commerce Portals with Web Services

Agent-Enabling Transformation of E-Commerce Portals with Web Services Agent-Enabling Transformation of E-Commerce Portals with Web Services Dr. David B. Ulmer CTO Sotheby s New York, NY 10021, USA Dr. Lixin Tao Professor Pace University Pleasantville, NY 10570, USA Abstract:

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

OpenIAM Identity and Access Manager Technical Architecture Overview

OpenIAM Identity and Access Manager Technical Architecture Overview OpenIAM Identity and Access Manager Technical Architecture Overview Overview... 3 Architecture... 3 Common Use Case Description... 3 Identity and Access Middleware... 5 Enterprise Service Bus (ESB)...

More information

Tools to Develop New Linux Applications

Tools to Develop New Linux Applications Tools to Develop New Linux Applications IBM Software Development Platform Tools for every member of the Development Team Supports best practices in Software Development Analyst Architect Developer Tester

More information

Implementing a Web Service p. 110 Implementing a Web Service Client p. 114 Summary p. 117 Introduction to Entity Beans p. 119 Persistence Concepts p.

Implementing a Web Service p. 110 Implementing a Web Service Client p. 114 Summary p. 117 Introduction to Entity Beans p. 119 Persistence Concepts p. Acknowledgments p. xvi Introduction p. xvii Overview p. 1 Overview p. 3 The Motivation for Enterprise JavaBeans p. 4 Component Architectures p. 7 Divide and Conquer to the Extreme with Reusable Services

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

Topics in Object-Oriented Design Patterns

Topics in Object-Oriented Design Patterns Software design Topics in Object-Oriented Design Patterns Material mainly from the book Design Patterns by Erich Gamma, Richard Helm, Ralph Johnson and John Vlissides; slides originally by Spiros Mancoridis;

More information

Service-Oriented Architecture (SOA)

Service-Oriented Architecture (SOA) Service-Oriented Architecture (SOA) SOA is a software architecture in which reusable services are deployed into application servers and then consumed by clients in different applications or business processes.

More information

Specialized - Mastering JEE 7 Web Application Development

Specialized - Mastering JEE 7 Web Application Development Specialized - Mastering JEE 7 Web Application Development Code: Lengt h: URL: TT5100- JEE7 5 days View Online Mastering JEE 7 Web Application Development is a five-day hands-on JEE / Java EE training course

More information

J2EE for Glast. Matthew D. Langston (SLAC) 4/25/2004

J2EE for Glast. Matthew D. Langston (SLAC) 4/25/2004 J2EE for Glast Matthew D. Langston (SLAC) 4/25/2004 What is J2EE? Java 2 Platform, Enterprise Edition Current specification is J2EE version 1.4 A platform-agnostic operating system for developing componentbased

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

1 CUSTOM TAG FUNDAMENTALS PREFACE... xiii. ACKNOWLEDGMENTS... xix. Using Custom Tags The JSP File 5. Defining Custom Tags The TLD 6

1 CUSTOM TAG FUNDAMENTALS PREFACE... xiii. ACKNOWLEDGMENTS... xix. Using Custom Tags The JSP File 5. Defining Custom Tags The TLD 6 PREFACE........................... xiii ACKNOWLEDGMENTS................... xix 1 CUSTOM TAG FUNDAMENTALS.............. 2 Using Custom Tags The JSP File 5 Defining Custom Tags The TLD 6 Implementing Custom

More information

WHITE PAPER. Good Mobile Intranet Technical Overview

WHITE PAPER. Good Mobile Intranet Technical Overview WHITE PAPER Good Mobile Intranet CONTENTS 1 Introduction 4 Security Infrastructure 6 Push 7 Transformations 8 Differential Data 8 Good Mobile Intranet Server Management Introduction Good Mobile Intranet

More information

Ch04 JavaServer Pages (JSP)

Ch04 JavaServer Pages (JSP) Ch04 JavaServer Pages (JSP) Introduce concepts of JSP Web components Compare JSP with Servlets Discuss JSP syntax, EL (expression language) Discuss the integrations with JSP Discuss the Standard Tag Library,

More information

Evictor. Prashant Jain Siemens AG, Corporate Technology Munich, Germany

Evictor. Prashant Jain Siemens AG, Corporate Technology Munich, Germany 1 Evictor Prashant Jain Prashant.Jain@mchp.siemens.de Siemens AG, Corporate Technology Munich, Germany Evictor 2 Evictor The Evictor 1 pattern describes how and when to release resources such as memory

More information

Accelerating J2EE Development with Rational XDE

Accelerating J2EE Development with Rational XDE Copyright Rational Software 2002 http://www.therationaledge.com/content/nov_02/t_j2eewithxde_ka.jsp Accelerating J2EE Development with Rational XDE by Khawar Z. Ahmed Rational XDE Technical Marketing Rational

More information

Appendix C WORKSHOP. SYS-ED/ Computer Education Techniques, Inc.

Appendix C WORKSHOP. SYS-ED/ Computer Education Techniques, Inc. Appendix C WORKSHOP SYS-ED/ Computer Education Techniques, Inc. 1 Preliminary Assessment Specify key components of WSAD. Questions 1. tools are used for reorganizing Java classes. 2. tools are used to

More information

Factsheet of Public Services Infrastructure (PSi) Updated on: 1st Sep 03

Factsheet of Public Services Infrastructure (PSi) Updated on: 1st Sep 03 Factsheet of Public Services Infrastructure (PSi) Updated on: 1st Sep 03 1 Objective of Paper 1.1 This document provides an overview of the Public Services Infrastructure (PSi). 2 Overview of PSi 2.1 PSi

More information

WebSphere Application Server, Version 5. What s New?

WebSphere Application Server, Version 5. What s New? WebSphere Application Server, Version 5 What s New? 1 WebSphere Application Server, V5 represents a continuation of the evolution to a single, integrated, cost effective, Web services-enabled, J2EE server

More information

KINGS COLLEGE OF ENGINEERING 1

KINGS COLLEGE OF ENGINEERING 1 KINGS COLLEGE OF ENGINEERING Department of Computer Science & Engineering Academic Year 2011 2012(Odd Semester) QUESTION BANK Subject Code/Name: CS1401-Internet Computing Year/Sem : IV / VII UNIT I FUNDAMENTALS

More information

IBM Workplace Collaboration Services API Toolkit

IBM Workplace Collaboration Services API Toolkit IBM Workplace Collaboration Services API Toolkit Version 2.5 User s Guide G210-1958-00 IBM Workplace Collaboration Services API Toolkit Version 2.5 User s Guide G210-1958-00 Note Before using this information

More information

Database code in PL-SQL PL-SQL was used for the database code. It is ready to use on any Oracle platform, running under Linux, Windows or Solaris.

Database code in PL-SQL PL-SQL was used for the database code. It is ready to use on any Oracle platform, running under Linux, Windows or Solaris. Alkindi Software Technology Introduction Alkindi designed a state of the art collaborative filtering system to work well for both largeand small-scale systems. This document serves as an overview of how

More information

Developing Web Applications

Developing Web Applications Developing Web Applications Ralph Moseley Middlesex University IIICENTCNNIAL 1807 ewiley 2007 13ICCNTENNIAL John Wiley & Sons, Ltd Preface Introduction Features Additional Materials Trademarks Acknowledgments

More information

Hospital System Lowers IT Costs After Epic Migration Flatirons Digital Innovations, Inc. All rights reserved.

Hospital System Lowers IT Costs After Epic Migration Flatirons Digital Innovations, Inc. All rights reserved. Hospital System Lowers IT Costs After Epic Migration 2018 Flatirons Digital Innovations, Inc. All rights reserved. A large hospital system was migrating to the EPIC software product suite and as part of

More information

COMP9321 Web Application Engineering

COMP9321 Web Application Engineering COMP9321 Web Application Engineering Semester 2, 2015 Dr. Amin Beheshti Service Oriented Computing Group, CSE, UNSW Australia Week 7 http://webapps.cse.unsw.edu.au/webcms2/course/index.php?cid=2411 1 Design

More information

Oracle Application Development Framework Overview

Oracle Application Development Framework Overview An Oracle White Paper July 2009 Oracle Application Development Framework Overview Introduction... 1 Oracle ADF Making Java EE Development Simpler... 2 THE ORACLE ADF ARCHITECTURE... 3 The Business Services

More information

The team that wrote this redbook

The team that wrote this redbook Preface p. xix The team that wrote this redbook p. xix Comments welcome p. xxiii Overview of WebSphere Application Server V3.5 p. 1 What is WebSphere Application Server? p. 1 WebSphere Application Server

More information

Notes. Submit homework on Blackboard The first homework deadline is the end of Sunday, Feb 11 th. Final slides have 'Spring 2018' in chapter title

Notes. Submit homework on Blackboard The first homework deadline is the end of Sunday, Feb 11 th. Final slides have 'Spring 2018' in chapter title Notes Ask course content questions on Slack (is651-spring-2018.slack.com) Contact me by email to add you to Slack Make sure you checked Additional Links at homework page before you ask In-class discussion

More information

Pervasive Web Application Architecture. History Scalability Availability Development Application Architecture

Pervasive Web Application Architecture. History Scalability Availability Development Application Architecture Pervasive Web Application Architecture History Scalability Availability Development Application Architecture It support multiple devices, such as PCs, WAP phones, PDAs and voice-only phones enables to

More information

IBM WebSphere Application Server V3.5, Advanced Edition Expands Platform Support and Leverages the Performance of the Java 2 Software Development Kit

IBM WebSphere Application Server V3.5, Advanced Edition Expands Platform Support and Leverages the Performance of the Java 2 Software Development Kit Software Announcement July 25, 2000 IBM V3.5, Expands Platform Support and Leverages the Performance of the Java 2 Software Development Kit Overview WebSphere Application Server V3.5, manages and integrates

More information

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

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

More information

Using JBI for Service-Oriented Integration (SOI)

Using JBI for Service-Oriented Integration (SOI) Using JBI for -Oriented Integration (SOI) Ron Ten-Hove, Sun Microsystems January 27, 2006 2006, Sun Microsystems Inc. Introduction How do you use a service-oriented architecture (SOA)? This is an important

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

AD105 Introduction to Application Development for the IBM Workplace Managed Client

AD105 Introduction to Application Development for the IBM Workplace Managed Client AD105 Introduction to Application Development for the IBM Workplace Managed Client Rama Annavajhala, IBM Workplace Software, IBM Software Group Sesha Baratham, IBM Workplace Software, IBM Software Group

More information

CERTIFICATION SUCCESS GUIDE ENTERPRISE ARCHITECT FOR JAVA 2 PLATFORM, ENTERPRISE EDITION (J2EE ) TECHNOLOGY

CERTIFICATION SUCCESS GUIDE ENTERPRISE ARCHITECT FOR JAVA 2 PLATFORM, ENTERPRISE EDITION (J2EE ) TECHNOLOGY SUN CERTIFICATION CERTIFICATION SUCCESS GUIDE ENTERPRISE ARCHITECT FOR JAVA 2 PLATFORM, ENTERPRISE EDITION (J2EE ) TECHNOLOGY TABLE OF CONTENTS Introduction..............................................

More information

Data Management in Application Servers. Dean Jacobs BEA Systems

Data Management in Application Servers. Dean Jacobs BEA Systems Data Management in Application Servers Dean Jacobs BEA Systems Outline Clustered Application Servers Adding Web Services Java 2 Enterprise Edition (J2EE) The Application Server platform for Java Java Servlets

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

Recommendations for Improving Device Independent Presentation Authoring. Krishna Vedati. Fast. Forward. Wireless.

Recommendations for Improving Device Independent Presentation Authoring. Krishna Vedati. Fast. Forward. Wireless. Recommendations for Improving Device Independent Presentation Authoring Krishna Vedati Agenda Device-Independent Presentation Authoring Current Approaches to Device-Independent Authoring Pros and Cons

More information

Tool Support for Complex Refactoring to Design Patterns

Tool Support for Complex Refactoring to Design Patterns Tool Support for Complex Refactoring to Design Patterns Carmen Zannier 1, Frank Maurer 1 1 University of Calgary, Department of Computer Science, Calgary, Alberta, Canada T2N 1N4 {zannierc, maurer}@cpsc.ucalgary.ca

More information

Work groups meeting 3

Work groups meeting 3 Work groups meeting 3 INF5040 (Open Distributed Systems) Amir Taherkordi amirhost@ifi.uio.no Department of Informatics University of Oslo September 18, 2008 Design Patterns J2EE Design Patterns AntiPatterns

More information

Implementation Architecture

Implementation Architecture Implementation Architecture Software Architecture VO/KU (707023/707024) Roman Kern ISDS, TU Graz 2017-11-15 Roman Kern (ISDS, TU Graz) Implementation Architecture 2017-11-15 1 / 54 Outline 1 Definition

More information

Teamcenter Global Services Customization Guide. Publication Number PLM00091 J

Teamcenter Global Services Customization Guide. Publication Number PLM00091 J Teamcenter 10.1 Global Services Customization Guide Publication Number PLM00091 J Proprietary and restricted rights notice This software and related documentation are proprietary to Siemens Product Lifecycle

More information

N-Tiered Enterprise Styles. Example 1. Key Concepts. Component-Based Software Engineering. ECE493-Topic 4 Winter 2006

N-Tiered Enterprise Styles. Example 1. Key Concepts. Component-Based Software Engineering. ECE493-Topic 4 Winter 2006 Component-Based Software Engineering ECE493-Topic 4 Winter 2006 Lecture 14 Enterprise Styles/Patterns (Part B) Ladan Tahvildari Assistant Professor Dept. of Elect. & Comp. Eng. University of Waterloo N-Tiered

More information

Packaging for Websphere Development Studio was changed with V6R1.

Packaging for Websphere Development Studio was changed with V6R1. Packaging for Websphere Development Studio was changed with V6R1. Websphere Development Studio was divided into three features: ILE Compilers Heritage Compilers (OPM) ADTS Websphere Development Studio

More information

UNIVERSITY EXAMINATIONS: NOV/DEC 2011 REGULATION PERVASIVE COMPUTING PART A

UNIVERSITY EXAMINATIONS: NOV/DEC 2011 REGULATION PERVASIVE COMPUTING PART A UNIVERSITY EXAMINATIONS: NOV/DEC 2011 REGULATION 2008 080250049-PERVASIVE COMPUTING PART A 1. Mention the characteristics of pervasive computing. Minimal user distraction Collaborative interaction User

More information

Enterprise Java Security Fundamentals

Enterprise Java Security Fundamentals Pistoia_ch03.fm Page 55 Tuesday, January 6, 2004 1:56 PM CHAPTER3 Enterprise Java Security Fundamentals THE J2EE platform has achieved remarkable success in meeting enterprise needs, resulting in its widespread

More information

Working with the Seagull Framework. By Demian Turner, Seagull Systems

Working with the Seagull Framework. By Demian Turner, Seagull Systems Working with the Seagull Framework By Demian Turner, Seagull Systems seagullproject.org Who is Demian Turner? Developing websites since 1996, using PHP since 1999 Committer on several open source projects:

More information

DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING

DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING SHRI ANGALAMMAN COLLEGE OF ENGINEERING & TECHNOLOGY (An ISO 9001:2008 Certified Institution) SIRUGANOOR,TRICHY-621105. DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING Year/Sem: IV / VII CS1401 INTERNET

More information

Django with Python Course Catalog

Django with Python Course Catalog Django with Python Course Catalog Enhance Your Contribution to the Business, Earn Industry-recognized Accreditations, and Develop Skills that Help You Advance in Your Career March 2018 www.iotintercon.com

More information

********************************************************************

******************************************************************** ******************************************************************** www.techfaq360.com SCWCD Mock Questions : J2EE DESIGN Pattern ******************************************************************** Question

More information

GemStone Systems. GemStone. GemStone/J 4.0

GemStone Systems. GemStone. GemStone/J 4.0 GemStone Systems The Software Infrastructure Technology Leader for the New B2B Economy GemStone/J 4.0 Minimizes total cost of ownership, while maximizing scalability, high availability, and rapid deployment

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

IBM WebSphere Application Server V3.5, Advanced Edition for Linux Extends Support to Red Hat, Caldera, SuSE, and TurboLinux

IBM WebSphere Application Server V3.5, Advanced Edition for Linux Extends Support to Red Hat, Caldera, SuSE, and TurboLinux Software Announcement December 5, 2000 IBM Server V3.5, Advanced Extends Support to Red Hat, Caldera, SuSE, and TurboLinux Overview WebSphere Application Edition for Linux manages and integrates enterprise-wide

More information

Distributed Transactions and PegaRULES Process Commander. PegaRULES Process Commander Versions 5.1 and 5.2

Distributed Transactions and PegaRULES Process Commander. PegaRULES Process Commander Versions 5.1 and 5.2 Distributed Transactions and PegaRULES Process Commander PegaRULES Process Commander Versions 5.1 and 5.2 Copyright 2007 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products

More information

Introduction. Key Features and Benefits

Introduction. Key Features and Benefits Introduction Stabilix Underwriting Framework is a highly adaptable XML based J2EE com-pliant software platform built on the Stabilix s business process automation (BPA) suite, code named CloudEx. CloudEx

More information

Object Oriented Methods with UML. Introduction to Design Patterns- Lecture 8

Object Oriented Methods with UML. Introduction to Design Patterns- Lecture 8 Object Oriented Methods with UML Introduction to Design Patterns- Lecture 8 Topics(03/05/16) Design Patterns Design Pattern In software engineering, a design pattern is a general repeatable solution to

More information

SUN Sun Certified Enterprise Architect for J2EE 5. Download Full Version :

SUN Sun Certified Enterprise Architect for J2EE 5. Download Full Version : SUN 310-052 Sun Certified Enterprise Architect for J2EE 5 Download Full Version : http://killexams.com/pass4sure/exam-detail/310-052 combination of ANSI SQL-99 syntax coupled with some company-specific

More information

TUTORIAL: WHITE PAPER. VERITAS Indepth for the J2EE Platform PERFORMANCE MANAGEMENT FOR J2EE APPLICATIONS

TUTORIAL: WHITE PAPER. VERITAS Indepth for the J2EE Platform PERFORMANCE MANAGEMENT FOR J2EE APPLICATIONS TUTORIAL: WHITE PAPER VERITAS Indepth for the J2EE Platform PERFORMANCE MANAGEMENT FOR J2EE APPLICATIONS 1 1. Introduction The Critical Mid-Tier... 3 2. Performance Challenges of J2EE Applications... 3

More information

Chapter 6 Architectural Design. Lecture 1. Chapter 6 Architectural design

Chapter 6 Architectural Design. Lecture 1. Chapter 6 Architectural design Chapter 6 Architectural Design Lecture 1 1 Topics covered ² Architectural design decisions ² Architectural views ² Architectural patterns ² Application architectures 2 Software architecture ² The design

More information

Web Applications: A Simple Pluggable Architecture for Business Rich Clients

Web Applications: A Simple Pluggable Architecture for Business Rich Clients Web Applications: A Simple Pluggable Architecture for Business Rich Clients Duncan Mac-Vicar and Jaime Navón Computer Science Department, Pontificia Universidad Católica de Chile {duncan,jnavon}@ing.puc.cl

More information

Whitepaper. Web-based Architecture. Author : Jayamsakthi Shanmugam and Ravi Bhardwaj

Whitepaper. Web-based Architecture. Author : Jayamsakthi Shanmugam and Ravi Bhardwaj Whitepaper Migrating Legacy EGL Platform to Multi-tier Author : Jayamsakthi Shanmugam and Ravi Bhardwaj Contents - 1. Overview 3 2. Introduction 4 3. Current Status 4 4. Proposed Solution Procedure 5 5.

More information