Apache Sling A REST-based Web Application Framework Carsten Ziegeler [email protected] ApacheCon NA 2014
|
|
|
- Britton Griffith
- 10 years ago
- Views:
Transcription
1 Apache Sling A REST-based Web Application Framework Carsten Ziegeler [email protected] ApacheCon NA 2014
2 RnD Team at Adobe Research Switzerland Member of the Apache Software Foundation Apache Felix and Apache Sling (PMC and committer) And other Apache projects OSGi Core Platform and Enterprise Expert Groups Member of the OSGi Board Book / article author, technical reviewer, conference speaker 2
3 Web Challenges Publish and process huge amount of information Highly dynamic Different types Different output formats Collaboration and integration Fast changing requirements Rapid prototyping and development Dynamic, extensible but maintainable 3
4 Web Challenges Entering Apache Sling Publish and process huge amount of information Highly dynamic Different types Different output formats Collaboration and integration Fast changing requirements Rapid prototyping and development Dynamic, extensible but maintainable JCR REST / ROA Scripting OSGI 4
5 Apache Sling The Fun is Back Web framework Java Content Repository (JCR) ROA / REST Scripting Inside OSGi Apache Open Source top level project Driving force behind several OSGi related projects at Apache 5
6 Key General Takeaways Leveraging REST Embracing OSG Hidden gems in Apache projects 6
7 Apache Jackrabbit - A Java Content Repository 7
8 Motivation for JCR Tried and trusted NoSQL solution Standard Java API First spec released in May 2005 Various implementations, products, and solutions Open Source implementation since 2006 (Apache Jackrabbit) Think about your data use cases / problems JCR might help! 8
9 Consider JCR Data structure Supporting the web ACID Security Additional features 9
10 The Structure of Data A data storage should be flexible and Allow to model app data in the right way Optimal way of dealing with the data in the app 10
11 The Structure of Data A data storage should be flexible and Allow to model data in the right way What is the right way? Tables? Key-Value-Pairs? Schema based? Semi structured or even unstructured? Flat, hierarchical or graph? 11
12 The Structure of Data The right way depends on the application: Tables Key-Value-Pairs Schema based Semi structured and unstructured Flat, hierarchical, and graph An app might have more than one right way But: A lot of data can be modeled in a hierarchy 12
13 Sample: Product Catalog Books DVDs English English Fiction IT SF Douglas Adams Databases A Hitch.. Apache Jackrabbit 13
14 Java Content Repository Hierarchical content Nodes with properties (Table is a special tree) Structured Nodetypes with typed properties And/or semi structured and unstructured Fine and coarse-grained Single repository for all content! 14
15 Sample: Product Catalog Databases Apache Jackrabbit title authors ISBN cover 15
16 Sample: Product Catalog Databases Apache Jackrabbit title authors ISBN Defined by node type cover 16
17 Sample: Product Catalog Databases Apache Jackrabbit title authors ISBN cover User Images Defined by node type img1 img2 17
18 Authentication and Access Control Apache Jackrabbit supports JAAS Custom login modules possible Deny / Allow of privileges on a node Like read, write, add, delete Inheritance from parent Tree allows structuring based on access rights Access control is done in the data tier! 18
19 Sample Content Structure with ACLs johndoe janedoe public private public private Basel Photo Amsterdam Photo Wedding 1997 Read for everyone, write for owner Write for owner Photo Photo 19
20 JSR 170 / JSR 283: Content Repository for JavaTM technology API (Java) Standard Version 1.0 and 2.0 Supported by many vendors Used by many products and projects Several open source solutions Data model and features Query and observation 20
21 Apache Jackrabbit 21 JSR 170/283 reference implementation Apache TLP since 2006 Vital community New implementation: OAK (!) 21
22 ROA and REST 22
23 Data and the Web? A website is hierarchical by nature Web applications provide data in different ways HTML JSON Provide your data in a RESTful way /products/books/english/it/databases/apachejackrabbit.(html json) Avoid mapping/conversion /products.jsp?id=
24 Resource Oriented Architecture I Every piece of information is a resource News entry, book, book title, book cover image Descriptive URI Stateless web architecture (REST) Request contains all relevant information Targets the resource Leverage HTTP GET for rendering, POST/PUT/DELETE for operations 24
25 Resource Oriented Architecture II JCR and Apache Jackrabbit are a perfect match for the web Hierarchical From a single piece of information to binaries Elegant way to bring data to the web Apache Sling is (the one) web framework 25
26 Sample Application: Slingshot Digital Asset Management Hierarchical storage of pictures Upload Tagging Searching Automatic thumbnail generation Sample application from Apache Sling Poor man's flickr... 26
27 Slingshot Content Structure Travel Family Europe Wedding Amsterdam Basel City Photo Photo Photo Photo 27
28 Facts About Slingshot Java web application Uses Apache Sling as web framework Content repository managed by Apache Jackrabbit Interaction through Sling s Resource API 28
29 REST with Apache Sling Default behavior for GET Creating/Updating content through POST Default behavior Additional operations/methods Resource-first request processing! 29
30 Resource Tree / Travel misc Europe images workflows Resource: /Travel/Europe 30
31 Resource Apache Sling s abstraction of the thing addressed by the request URI Usually mapped to a JCR node File system, bundle, Cassandra, MongoDB, database.. Attributes of resources Path in the resource tree Resource type Metadata, e.g. last modification date 31
32 Resource-first Request Processing URI Decomposition Resource and representation /Travel/Europe/Basel.print.a4.html Resource Path Selectors Extension Content retrieved from resource tree Rendering based on resource type, selectors and extension 32
33 Basic Request Processing Steps Resolve the resource (using URI) Decomposition Resolve rendering script Source: resource type, selectors and extension Scripts wrapped by generic servlet Create rendering chain Configurable (servlet) filters Rendering servlet Invoke rendering chain 33
34 Resource Resolver I Tasks: Finding resources Getting resources Querying resources Not Thread Safe! Includes all objects fetched via resolver 34
35 Resource Resolver II Central gateway for resource handling Abstracts path resolution Abstracts access to the persistence layer(s) Configurable Mappings (Multi site mgmt, beautify paths) 35
36 Resource Tree / Travel misc Europe images workflows 36
37 Mounting Resource Providers / Travel misc Europe images workflows Resource Provider [DB] Resource Provider [JCR] Resource Provider [File] Resource Provider [Mongo] 37
38 Scripting 38
39 Scripting Inside It s your choice JSP, servlet, ESP, Scala javax.script own script handlers Scripts stored in OSGi bundles or the resource tree Scripts are searched at configured locations Default servlets JSON, XML Error Handling 39
40 Script Resolving I Path to script is build from Configured search paths ( /apps, /libs ) Resource type converted to path (slingshot/album) Selector string (print/a4) Request method & extension GET à Extension (html) Else -> Method ( POST, PUT, DELETE ) 40
41 Script Resolving Example URI: /Travel/Europe/Basel.print.a4.html Resource: /Travel/Europe/Basel Resource Type: slingshot:album Script for GET: /apps/slingshot/album/print/a4/html.* Script for POST: /libs/slingshot/album/print/a4/post.* 41
42 Script Resolving II Scripts are searched by best matching /apps/slingshot/album/print/a4/html.* /libs/slingshot/album/print/a4/html.* /apps/slingshot/album/html.* /libs/slingshot/album/html.* Resource has a type and a super type Script inheritance Default script (JSON...) 42
43 Sample JSP Script import="org.apache.sling.api.resource.resource, org.apache.sling.api.resource.valuemap" %><% prefix="sling" uri=" %><% %><sling:defineobjects/><% final ValueMap attributes = resource.getvaluemap(); final String albumname = attributes.get( title,resource.getname()); %><html> <head> <title>album <%= albumname %></title> </head> <body> <h2>contained Albums</h2> <% for ( final Resource current : resource.getchildren() ) { if ( current.isresourcetype(constants.resourcetype_album) ) { %><sling:include resource="<%= current %> /><% } } %> 43
44 Resource-first Request Processing ROA URI decomposition Resource resolving Script resolving Recursion Flexible script search algorithm 44
45 OSGi 45
46 Runtime Requirements Modularization Modularity is key Manage growing complexity Support (dynamic) extensibility Lifecycle management Configuration management Modules, services Different distributions/feature sets Dynamic system changes 46
47 OSGi in 5..ehm..1 Minute Specification of a framework Module concept (bundles) with lifecycle Simple but powerful component model Lifecycle management Publish/Find/Bind service registration Dynamic! Uses the concept of bundles 47
48 An OSGi Bundle Leverages the Java packaging mechanism: JAR files Contains Java classes and resources Additional meta-data Implicit dependencies to other bundles Package imports/exports Semantic versioning of API 48
49 Services OSGi offers an API to register services Service is registered by its interface name(s) Implementation is bundle private Several components for same service possible (from different bundles) Bundles can find and use services By interface names With additional filters 49
50 The OSGi Core Minimal but sufficient API for services Minimal overhead: Good for simple bundles No support for component management No support for configuration management Requires sometimes a lot of Java coding Additional (optional) OSGi extensions Declarative Service Specification Configuration Admin Service Specification 50
51 OSGi Declarative Service Specification Component model Component lifecycle management Publishing services Consuming services Default configuration Support for Config Admin 51
52 Config Admin and Metatype OSGi Config Admin Configuration Manager Persistence storage API to retrieve/update/remove configs Works with Declarative Services OSGi Metatype Service Description of bundle metadata Description of service configurations 52
53 Apache Felix Top-level project (March 2007) Healthy and diverse community OSGi R5 implementation Framework (frequent releases) Various interesting subprojects Tools Maven Plugins, Web Console 53
54 Contributions to Apache Felix Declarative service implementation Config admin implementation Metatype implementation Preferences implementation Web console (!) Maven SCR Plugin (!) and SCR tooling 54
55 Apache Sling Runtime Uses Apache Felix Runtime: Apache Sling Launchpad Two flavors Standalone Java Application Web application But Sling can be deployed in any OSGi framework! 55
56 Standalone Java Application One single executable JAR file Small Launcher Starts OSGi Framework (Apache Felix) Uses Jetty in an OSGi Bundle 56
57 Web Application Extends Standalone Application Replaces Main with a Servlet Uses a bridge to connect Sling to the Servlet Container 57
58 Facts About Apache Sling Sling API Uses resource abstraction Use JCR, MongoDB, Cassandra Highly modular and runtime configurable Everything is a OSGi bundle Deploy what you need! Commons Bundles (Threads, Scheduling ) OSGi Provisioning Cloud discovery Distributed eventing 58
59 Apache Sling The Fun is Back Web Framework Java Content Repository REST Scripting inside OSGi Apache Open Source project Check it out today! 59
Creating a REST API for Cloud services using Apache Felix and Sling Carsten Ziegeler and David Bosschaert
Creating a REST API for Cloud services using Apache Felix and Sling Carsten Ziegeler and David Bosschaert Agenda A REST site with Apache Sling Scale it up! with OSGi Speakers David Bosschaert ([email protected])
Server-side OSGi with Apache Sling. Felix Meschberger Day Management AG 124
Server-side OSGi with Apache Sling Felix Meschberger Day Management AG 124 About Felix Meschberger > Senior Developer, Day Management AG > [email protected] > http://blog.meschberger.ch > VP Apache Sling
Effective Web Application Development with Apache Sling. Robert Munteanu ( @rombert ), Adobe Systems Romania
Effective Web Application Development with Apache Sling Robert Munteanu ( @rombert ), Adobe Systems Romania About the Speaker Apache Sling PMC member Fanboy of the Sling/JCR/OSGi stack Enthusiastic Open-Source
NextRow - AEM Training Program Course Catalog
NextRow - AEM Training Program Course Catalog Adobe Experience Manager Training Program Course Catalog NextRow provides Adobe CQ training solutions designed to meet your unique project demands. To optimize
APACHE SLING & FRIENDS TECH MEETUP BERLIN, 26-28 SEPTEMBER 2012. APACHE SLING & SCALA Jochen Fliedner
APACHE SLING & FRIENDS TECH MEETUP BERLIN, 26-28 SEPTEMBER 2012 APACHE SLING & SCALA Jochen Fliedner About the speaker Jochen Fliedner Senior Developer pro!vision GmbH Wilmersdorfer Str. 50-51 10627 Berlin
RESTful web applications with Apache Sling
RESTful web applications with Apache Sling Bertrand Delacrétaz Senior Developer, R&D, Day Software, now part of Adobe Apache Software Foundation Member and Director http://grep.codeconsult.ch - twitter:
Developer s Guide. How to Develop a Communiqué Digital Asset Management Solution
Developer s Guide How to Develop a Communiqué Digital Asset Management Solution 1 PURPOSE 3 2 CQ DAM OVERVIEW 4 2.1 2.2 Key CQ DAM Features 4 2.2 How CQ DAM Works 6 2.2.1 Unified Architecture 7 2.2.2 Asset
Continuous Delivery of Apache Sling Applications
Continuous Delivery of Apache Sling Applications Master s Thesis by Artyom Stetsenko Presented for the Degree of Master of Science in Computer Science Supervisors: Prof. Willy Zwaenepoel Operating Systems
CQCON 2013: five Sling features you should know
CQCON 2013: five Sling features you should know Olaf Otto 19.06.2013 1: Write custom tag libraries Use current XSD Fully qualified identifier
Apache Karaf in real life ApacheCon NA 2014
Apache Karaf in real life ApacheCon NA 2014 Agenda Very short history of Karaf Karaf basis A bit deeper dive into OSGi Modularity vs Extensibility DIY - Karaf based solution What we have learned New and
FUSE-ESB4 An open-source OSGi based platform for EAI and SOA
FUSE-ESB4 An open-source OSGi based platform for EAI and SOA Introduction to FUSE-ESB4 It's a powerful OSGi based multi component container based on ServiceMix4 http://servicemix.apache.org/smx4/index.html
GlassFish v3. Building an ex tensible modular Java EE application server. Jerome Dochez and Ludovic Champenois Sun Microsystems, Inc.
GlassFish v3 Building an ex tensible modular Java EE application server Jerome Dochez and Ludovic Champenois Sun Microsystems, Inc. Agenda Java EE 6 and GlassFish V3 Modularity, Runtime Service Based Architecture
IBM WebSphere Server Administration
IBM WebSphere Server Administration This course teaches the administration and deployment of web applications in the IBM WebSphere Application Server. Duration 24 hours Course Objectives Upon completion
Apache Sentry. Prasad Mujumdar [email protected] [email protected]
Apache Sentry Prasad Mujumdar [email protected] [email protected] Agenda Various aspects of data security Apache Sentry for authorization Key concepts of Apache Sentry Sentry features Sentry architecture
Configuring CQ Security
Configuring CQ Security About Me CQ Architect for Inside Solutions http://inside-solutions.ch CQ Blog: http://cqblog.inside-solutions.ch Customer Projects with Adobe CQ Training Material on Adobe CQ Agenda
Introducing Apache Pivot. Greg Brown, Todd Volkert 6/10/2010
Introducing Apache Pivot Greg Brown, Todd Volkert 6/10/2010 Speaker Bios Greg Brown Senior Software Architect 15 years experience developing client and server applications in both services and R&D Apache
WebSphere Server Administration Course
WebSphere Server Administration Course Chapter 1. Java EE and WebSphere Overview Goals of Enterprise Applications What is Java? What is Java EE? The Java EE Specifications Role of Application Server What
Building a Modular Server Platform with OSGi. Dileepa Jayakody Software Engineer SSWSO2 Inc.
Building a Modular Server Platform with OSGi Dileepa Jayakody Software Engineer SSWSO2 Inc. Outline Complex Systems OSGi for Modular Systems OSGi in SOA middleware Carbon : A modular server platform for
Communiqué 4. Standardized Global Content Management. Designed for World s Leading Enterprises. Industry Leading Products & Platform
Communiqué 4 Standardized Communiqué 4 - fully implementing the JCR (JSR 170) Content Repository Standard, managing digital business information, applications and processes through the web. Communiqué
Nuxeo, an open source platform for content-centric business applications. Stéfane Fermigier, Nuxeo Laurent Doguin, Nuxeo
Nuxeo, an open source platform for content-centric business applications Stéfane Fermigier, Nuxeo Laurent Doguin, Nuxeo Nuxeo, the Company Providing an Open Source Content Management Platform for Business
MicroStrategy Course Catalog
MicroStrategy Course Catalog 1 microstrategy.com/education 3 MicroStrategy course matrix 4 MicroStrategy 9 8 MicroStrategy 10 table of contents MicroStrategy course matrix MICROSTRATEGY 9 MICROSTRATEGY
Collaborative Open Market to Place Objects at your Service
Collaborative Open Market to Place Objects at your Service D6.4.1 Marketplace integration First version Project Acronym COMPOSE Project Title Project Number 317862 Work Package WP6 Open marketplace Lead
Portal Factory 1.0 - CMIS Connector Module documentation
DOCUMENTATION Portal Factory 1.0 - CMIS Connector Module documentation Rooted in Open Source CMS, Jahia s Digital Industrialization paradigm is about streamlining Enterprise digital projects across channels
Learning GlassFish for Tomcat Users
Learning GlassFish for Tomcat Users White Paper February 2009 Abstract There is a direct connection between the Web container technology used by developers and the performance and agility of applications.
Introducing the Adobe Digital Enterprise Platform
Adobe Enterprise Technical Enablement Introducing the Adobe Digital Enterprise Platform In this topic, you will you will learn about the components that make up the Adobe Digital Enterprise Platform. You
Architecture Guide Jahia EE v6.1
Documentation Architecture Guide Jahia EE v6.1 Jahia delivers the first Web Content Integration Software by combining Enterprise Web Content Management with Document and Portal Management features. Jahia
Digital Asset Management Beyond CMIS
Digital Asset Management Beyond CMIS CMIS is an important component of DAM for many organizations, but knowing how to use it to maximize its effectiveness is the key. In this paper: How organizations use
NetBeans IDE Field Guide
NetBeans IDE Field Guide Copyright 2005 Sun Microsystems, Inc. All rights reserved. Table of Contents Introduction to J2EE Development in NetBeans IDE...1 Configuring the IDE for J2EE Development...2 Getting
The end. Carl Nettelblad 2015-06-04
The end Carl Nettelblad 2015-06-04 The exam and end of the course Don t forget the course evaluation! Closing tomorrow, Friday Project upload deadline tonight Book presentation appointments with Kalyan
Building native mobile apps for Digital Factory
DIGITAL FACTORY 7.0 Building native mobile apps for Digital Factory Rooted in Open Source CMS, Jahia s Digital Industrialization paradigm is about streamlining Enterprise digital projects across channels
Content Management Systems: Drupal Vs Jahia
Content Management Systems: Drupal Vs Jahia Mrudula Talloju Department of Computing and Information Sciences Kansas State University Manhattan, KS 66502. [email protected] Abstract Content Management Systems
San Jose State University
San Jose State University Fall 2011 CMPE 272: Enterprise Software Overview Project: Date: 5/9/2011 Under guidance of Professor, Rakesh Ranjan Submitted by, Team Titans Jaydeep Patel (007521007) Zankhana
Course Description. Course Audience. Course Outline. Course Page - Page 1 of 5
Course Page - Page 1 of 5 WebSphere Application Server 7.0 Administration on Windows BSP-1700 Length: 5 days Price: $ 2,895.00 Course Description This course teaches the basics of the administration and
Data Modeling for Big Data
Data Modeling for Big Data by Jinbao Zhu, Principal Software Engineer, and Allen Wang, Manager, Software Engineering, CA Technologies In the Internet era, the volume of data we deal with has grown to terabytes
Flattening Enterprise Knowledge
Flattening Enterprise Knowledge Do you Control Your Content or Does Your Content Control You? 1 Executive Summary: Enterprise Content Management (ECM) is a common buzz term and every IT manager knows it
IKAN ALM Architecture. Closing the Gap Enterprise-wide Application Lifecycle Management
IKAN ALM Architecture Closing the Gap Enterprise-wide Application Lifecycle Management Table of contents IKAN ALM SERVER Architecture...4 IKAN ALM AGENT Architecture...6 Interaction between the IKAN ALM
HP Systinet. Software Version: 10.01 Windows and Linux Operating Systems. Concepts Guide
HP Systinet Software Version: 10.01 Windows and Linux Operating Systems Concepts Guide Document Release Date: June 2015 Software Release Date: June 2015 Legal Notices Warranty The only warranties for HP
Software Architecture Document
Software Architecture Document Project Management Cell 1.0 1 of 16 Abstract: This is a software architecture document for Project Management(PM ) cell. It identifies and explains important architectural
D5.4.4 Integrated SemaGrow Stack API components
ICT Seventh Framework Programme (ICT FP7) Grant Agreement No: 318497 Data Intensive Techniques to Boost the Real Time Performance of Global Agricultural Data Infrastructures Deliverable Form Project Reference
Apache Jakarta Tomcat
Apache Jakarta Tomcat 20041058 Suh, Junho Road Map 1 Tomcat Overview What we need to make more dynamic web documents? Server that supports JSP, ASP, database etc We concentrates on Something that support
Operations and Monitoring with Spring
Operations and Monitoring with Spring Eberhard Wolff Regional Director and Principal Consultant SpringSource Copyright 2009 SpringSource. Copying, publishing or distributing without express written permission
Web Application Development
Web Application Development Introduction Because of wide spread use of internet, web based applications are becoming vital part of IT infrastructure of large organizations. For example web based employee
enterprise^ IBM WebSphere Application Server v7.0 Security "publishing Secure your WebSphere applications with Java EE and JAAS security standards
IBM WebSphere Application Server v7.0 Security Secure your WebSphere applications with Java EE and JAAS security standards Omar Siliceo "publishing enterprise^ birmingham - mumbai Preface 1 Chapter 1:
Spring Security 3. rpafktl Pen source. intruders with this easy to follow practical guide. Secure your web applications against malicious
Spring Security 3 Secure your web applications against malicious intruders with this easy to follow practical guide Peter Mularien rpafktl Pen source cfb II nv.iv I I community experience distilled
Decoding the Big Data Deluge a Virtual Approach. Dan Luongo, Global Lead, Field Solution Engineering Data Virtualization Business Unit, Cisco
Decoding the Big Data Deluge a Virtual Approach Dan Luongo, Global Lead, Field Solution Engineering Data Virtualization Business Unit, Cisco High-volume, velocity and variety information assets that demand
Cross-domain Identity Management System for Cloud Environment
Cross-domain Identity Management System for Cloud Environment P R E S E N T E D B Y: N A Z I A A K H TA R A I S H A S A J I D M. S O H A I B FA R O O Q I T E A M L E A D : U M M E - H A B I B A T H E S
Enterprise Service Bus
We tested: Talend ESB 5.2.1 Enterprise Service Bus Dr. Götz Güttich Talend Enterprise Service Bus 5.2.1 is an open source, modular solution that allows enterprises to integrate existing or new applications
Alfresco. Wiley Publishing, Inc. PROFESSIONAL. PRACTICAL SOLUTIONS FOR ENTERPRISE. John Newton CONTENT MANAGEMENT. Michael Farman Michael G.
PROFESSIONAL. Alfresco PRACTICAL SOLUTIONS FOR ENTERPRISE CONTENT MANAGEMENT David Caruana John Newton Michael Farman Michael G. Uzquiano Kevin Roast WILEY Wiley Publishing, Inc. INTRODUCTION xxix CHAPTER
Business Process Management with @enterprise
Business Process Management with @enterprise March 2014 Groiss Informatics GmbH 1 Introduction Process orientation enables modern organizations to focus on the valueadding core processes and increase
Java EE Web Development Course Program
Java EE Web Development Course Program Part I Introduction to Programming 1. Introduction to programming. Compilers, interpreters, virtual machines. Primitive types, variables, basic operators, expressions,
Structured Content: the Key to Agile. Web Experience Management. Introduction
Structured Content: the Key to Agile CONTENTS Introduction....................... 1 Structured Content Defined...2 Structured Content is Intelligent...2 Structured Content and Customer Experience...3 Structured
MongoDB Developer and Administrator Certification Course Agenda
MongoDB Developer and Administrator Certification Course Agenda Lesson 1: NoSQL Database Introduction What is NoSQL? Why NoSQL? Difference Between RDBMS and NoSQL Databases Benefits of NoSQL Types of NoSQL
Open For Business in a Nutshell
Open For Business in a Nutshell Open Source Foundations for Enterprise Applications Si Chen Open Source Strategies, Inc. What is OFBiz? Open Source Project for Enterprise Applications (ERP/CRM/MRP) Applications
JBoss Data Services. Enabling Data as a Service with. Gnanaguru Sattanathan Twitter:@gnanagurus Website: bushorn.com
1 Enabling Data as a Service with JBoss Data Services Prajod Vettiyattil Twitter: @prajods Gnanaguru Sattanathan Twitter:@gnanagurus Website: bushorn.com 2 What this session is about v The why and what
Building Java Servlets with Oracle JDeveloper
Building Java Servlets with Oracle JDeveloper Chris Schalk Oracle Corporation Introduction Developers today face a formidable task. They need to create large, distributed business applications. The actual
Eclipse Open Healthcare Framework
Eclipse Open Healthcare Framework Eishay Smith [1], James Kaufman [1], Kelvin Jiang [2], Matthew Davis [3], Melih Onvural [4], Ivan Oprencak [5] [1] IBM Almaden Research Center, [2] Columbia University,
Converting Java EE Applications into OSGi Applications
Converting Java EE Applications into OSGi Applications Author: Nichole Stewart Date: Jan 27, 2011 2010 IBM Corporation THE INFORMATION CONTAINED IN THIS REPORT IS PROVIDED FOR INFORMATIONAL PURPOSES ONLY.
Core Java+ J2EE+Struts+Hibernate+Spring
Core Java+ J2EE+Struts+Hibernate+Spring Java technology is a portfolio of products that are based on the power of networks and the idea that the same software should run on many different kinds of systems
Combining SAWSDL, OWL DL and UDDI for Semantically Enhanced Web Service Discovery
Combining SAWSDL, OWL DL and UDDI for Semantically Enhanced Web Service Discovery Dimitrios Kourtesis, Iraklis Paraskakis SEERC South East European Research Centre, Greece Research centre of the University
Customer Bank Account Management System Technical Specification Document
Customer Bank Account Management System Technical Specification Document Technical Specification Document Page 1 of 15 Table of Contents Contents 1 Introduction 3 2 Design Overview 4 3 Topology Diagram.6
JBoss Portlet Container. User Guide. Release 2.0
JBoss Portlet Container User Guide Release 2.0 1. Introduction.. 1 1.1. Motivation.. 1 1.2. Audience 1 1.3. Simple Portal: showcasing JBoss Portlet Container.. 1 1.4. Resources. 1 2. Installation. 3 2.1.
Windows Azure Data Services (basics) 55093A; 3 Days
Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Windows Azure Data Services (basics) 55093A; 3 Days Course Description This
Cloud Powered Mobile Apps with Azure
Cloud Powered Mobile Apps with Azure Malte Lantin Technical Evanglist Microsoft Azure Agenda Mobile Services Features and Demos Advanced Features Scaling and Pricing 2 What is Mobile Services? Storage
Portals, Portlets & Liferay Platform
Portals, Portlets & Liferay Platform Repetition: Web Applications and Model View Controller (MVC) Design Pattern Web Applications Frameworks in J2EE world Struts Spring Hibernate Data Service Java Server
Developing modular Java applications
Developing modular Java applications Julien Dubois France Regional Director SpringSource Julien Dubois France Regional Director, SpringSource Book author :«Spring par la pratique» (Eyrolles, 2006) new
Accessing Data with ADOBE FLEX 4.6
Accessing Data with ADOBE FLEX 4.6 Legal notices Legal notices For legal notices, see http://help.adobe.com/en_us/legalnotices/index.html. iii Contents Chapter 1: Accessing data services overview Data
Querying MongoDB without programming using FUNQL
Querying MongoDB without programming using FUNQL FUNQL? Federated Unified Query Language What does this mean? Federated - Integrates different independent stand alone data sources into one coherent view
Client-Server Architecture & J2EE Platform Technologies Overview Ahmed K. Ezzat
Client-Server Architecture & J2EE Platform Technologies Overview Ahmed K. Ezzat Page 1 of 14 Roadmap Client-Server Architecture Introduction Two-tier Architecture Three-tier Architecture The MVC Architecture
How to Build an E-Commerce Application using J2EE. Carol McDonald Code Camp Engineer
How to Build an E-Commerce Application using J2EE Carol McDonald Code Camp Engineer Code Camp Agenda J2EE & Blueprints Application Architecture and J2EE Blueprints E-Commerce Application Design Enterprise
Java Application Developer Certificate Program Competencies
Java Application Developer Certificate Program Competencies After completing the following units, you will be able to: Basic Programming Logic Explain the steps involved in the program development cycle
WebSphere Training Outline
WEBSPHERE TRAINING WebSphere Training Outline WebSphere Platform Overview o WebSphere Product Categories o WebSphere Development, Presentation, Integration and Deployment Tools o WebSphere Application
Onegini Token server / Web API Platform
Onegini Token server / Web API Platform Companies and users interact securely by sharing data between different applications The Onegini Token server is a complete solution for managing your customer s
<Insert Picture Here> GlassFish v3 - A Taste of a Next Generation Application Server
GlassFish v3 - A Taste of a Next Generation Application Server Peter Doschkinow Senior Java Architect Agenda GlassFish overview and positioning GlassFish v3 architecture Features
Template Development Guide Jahia EE v6.1
Documentation Template Development Guide Jahia EE v6.1 Jahia delivers the first Web Content Integration Software by combining Enterprise Web Content Management with Document and Portal Management features.
Adobe Training Services Course Catalog
Adobe Training Services Course Catalog Adobe Training Services Course Catalog The Adobe Training Services Course Catalog gives basic information on the courses offered for each product. The first few pages
DataDirect XQuery Technical Overview
DataDirect XQuery Technical Overview Table of Contents 1. Feature Overview... 2 2. Relational Database Support... 3 3. Performance and Scalability for Relational Data... 3 4. XML Input and Output... 4
PowerTier Web Development Tools 4
4 PowerTier Web Development Tools 4 This chapter describes the process of developing J2EE applications with Web components, and introduces the PowerTier tools you use at each stage of the development process.
EMC Documentum Connector for Microsoft SharePoint
EMC Documentum Connector for Microsoft SharePoint Version 7.1 Installation Guide EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Legal Notice Copyright 2013-2014
S3 Monitor Design and Implementation Plans
S 3 Monitor Version 1.0 Specifications and Integration Plan 1 Copyright c 2011 Hewlett Packard Copyright c 2011 Purdue University Permission is hereby granted, free of charge, to any person obtaining a
MathCloud: From Software Toolkit to Cloud Platform for Building Computing Services
MathCloud: From Software Toolkit to Cloud Platform for Building Computing s O.V. Sukhoroslov Centre for Grid Technologies and Distributed Computing ISA RAS Moscow Institute for Physics and Technology MathCloud
JEE Web Applications Jeff Zhuk
JEE Web Applications Jeff Zhuk From the book and beyond Integration-Ready Architecture and Design Cambridge University Press Software Engineering With XML, Java,.NET, Wireless, Speech and Knowledge Technologies
Glassbox: Open Source and Automated Application Troubleshooting. Ron Bodkin Glassbox Project Leader [email protected]
Glassbox: Open Source and Automated Application Troubleshooting Ron Bodkin Glassbox Project Leader [email protected] First a summary Glassbox is an open source automated troubleshooter for Java
BMC Remedy Action Request System 7.0 Configuring
BMC Remedy Action Request System 7.0 Configuring May 2006 Part No: 58466 Copyright 1991 2006 BMC Software, Inc. All rights reserved. BMC, the BMC logo, all other BMC product or service names, BMC Software,
Developing a Web Server Platform with SAPI Support for AJAX RPC using JSON
Revista Informatica Economică, nr. 4 (44)/2007 45 Developing a Web Server Platform with SAPI Support for AJAX RPC using JSON Iulian ILIE-NEMEDI, Bucharest, Romania, [email protected] Writing a custom web
Terms and Definitions for CMS Administrators, Architects, and Developers
Sitecore CMS 6 Glossary Rev. 081028 Sitecore CMS 6 Glossary Terms and Definitions for CMS Administrators, Architects, and Developers Table of Contents Chapter 1 Introduction... 3 1.1 Glossary... 4 Page
Java Servlet 3.0. Rajiv Mordani Spec Lead
Java Servlet 3.0 Rajiv Mordani Spec Lead 1 Overview JCP Java Servlet 3.0 API JSR 315 20 members > Good mix of representation from major Java EE vendors, web container developers and web framework authors
Adobe ColdFusion 11 Enterprise Edition
Adobe ColdFusion 11 Enterprise Edition Version Comparison Adobe ColdFusion 11 Enterprise Edition Adobe ColdFusion 11 Enterprise Edition is an all-in-one application server that offers you a single platform
MarkLogic Server. Java Application Developer s Guide. MarkLogic 8 February, 2015. Copyright 2015 MarkLogic Corporation. All rights reserved.
Java Application Developer s Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-3, June, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Java Application
Agile Best Practices and Patterns for Success on an Agile Software development project.
Agile Best Practices and Patterns for Success on an Agile Software development project. Tom Friend SCRUM Master / Coach 1 2014 Agile On Target LLC, All Rights reserved. Tom Friend / Experience Industry
Jackalope JCR & PHP. OpenExpo Herbst 2009, Winterthur, 23. September Tobias Ebnöther & Christian Stocker
Jackalope JCR & PHP OpenExpo Herbst 2009, Winterthur, 23. September Tobias Ebnöther & Christian Stocker What is Content? Everything is Content! Content is Everything! Images, Documents, Video, Audio Newsentries,
GlassFish. Developing an Application Server in Open Source
GlassFish Developing an Application Server in Open Source Santiago Pericas-Geertsen Sun Microsystems, Inc. http://weblogs.java.net/blog/spericas/ [email protected] 1 1 Who am I? BA from
Servlet 3.0. Alexis Moussine-Pouchkine. mercredi 13 avril 2011
Servlet 3.0 Alexis Moussine-Pouchkine 1 Overview Java Servlet 3.0 API JSR 315 20 members Good mix of representation from major Java EE vendors, web container developers and web framework authors 2 Overview
Cloud3DView: Gamifying Data Center Management
Cloud3DView: Gamifying Data Center Management Yonggang Wen Assistant Professor School of Computer Engineering Nanyang Technological University [email protected] November 26, 2013 School of Computer Engineering
An Approach to Implement Map Reduce with NoSQL Databases
www.ijecs.in International Journal Of Engineering And Computer Science ISSN: 2319-7242 Volume 4 Issue 8 Aug 2015, Page No. 13635-13639 An Approach to Implement Map Reduce with NoSQL Databases Ashutosh
Copyright Pivotal Software Inc, 2013-2015 1 of 10
Table of Contents Table of Contents Getting Started with Pivotal Single Sign-On Adding Users to a Single Sign-On Service Plan Administering Pivotal Single Sign-On Choosing an Application Type 1 2 5 7 10
Eclipse 4 RCP application Development COURSE OUTLINE
Description The Eclipse 4 RCP application development course will help you understand how to implement your own application based on the Eclipse 4 platform. The Eclipse 4 release significantly changes
