JCR in Action. Content-based Applications with Apache Jackrabbit. Carsten Ziegeler.

Size: px
Start display at page:

Download "JCR in Action. Content-based Applications with Apache Jackrabbit. Carsten Ziegeler."

Transcription

1 JCR in Action Content-based Applications with Apache Jackrabbit Carsten Ziegeler Apache Con US Presentation November Oakland

2 About Member of the ASF Sling, Felix, Cocoon, Portals, Sanselan, Excalibur, Incubator PMC: Felix, Portals, Sling, Incubator, Excalibur (Chair) RnD Team at Day Software Article/Book Author, Technical Reviewer JSR 286 Spec Group (Portlet API 2.0) 2

3 Motivation Tried and trusted NOSQL solution Standard Java API First spec released in May 2005 Open Source Implementation 1.0 Release in April 2006 Think about your data storage use cases JCR might help 3

4 Agenda JCR and Apache Jackrabbit Basic Content Modeling References and Search Advanced Features Demo: Sample Application Summary and Questions 4

5 Content Repository 5

6 Content Storage Hierarchical content Nodes and properties Structured Nodetypes and typed properties And/or unstructured Fine and coarse-grained 6

7 Sample Application Digital Asset Management Hierarchical storage of pictures Upload Tagging Searching Automatic thumbnail generation Poor man's flickr... 7

8 Sample Content Structure Travel Family Europe Weddings Amsterdam Basel City Photo Photo Photo Photo 8

9 Sample Application Java web application Uses Apache Sling as web framework Content repository managed by Apache Jackrabbit Interaction through the JCR API 9

10 JSR 170: Content Repository for Java TM technology API (Java) Standard Version 1.0 Supported by many vendors Used by many products and projects Several open source solutions How do you connect to a CR? How do you interact with a CR? 10

11 JSR 283 : JCR 2.0 is final New features Improved specification Cleaned up API (deprecation) Revised specification document Binary compatible JSR 170 apps run without modification More later... 11

12 CR : Combines Advantages 12

13 Content Repository Features Query (XPath, SQL) Export/Import (XML) Referential Integrity Authentication Access Control Versioning Observation Locking and Transactions (JTA) 13

14 The Repository Model Repository: one (or more) workspaces Workspace contains a tree of items Item: Node or property Nodes provide the content structure May have children Actual data is stored as values of properties Types and namespaces! Implementation of JCR 14

15 Nodes and Properties = Node Root Workspace A Content Repository = Property a b c d e g h Once upon a time i j k true 6.02x10 23 Implementation of JCR 15

16 Connecting to the Repository JCR

17 Connecting to the Repository JCR 2.0 provides RepositoryFactory Uses Service Provider Mechanism META-INF/services/javax.jcr.RepositoryFactory Just use RepositoryFactory.getRepository(null) Or specify connection parameters RepositoryFactory.getRepository(Map) 17

18 Working with the Repository 18

19 Traverse the Hierarchy 19

20 Retrieve a Property 20

21 Interaction Summary Get the repository Login to a workspace Provides a session Use the session to Access nodes and their properties Change and save them 21

22 22 Apache Jackrabbit JSR 170 and 283 reference implementation Apache TLP since 2006 Releases 1.6 (JSR 170 based) 2.0 Beta 2 is out (nearly) 2.0 Final (end of 2009) announcesubscribe@jackrabbit.apache.org Components Commons, API RMI, WebDAV, WebApp, JCA OCM And more

23 Words of Advice Read (or browse) the JCR specification jcr-1.0.jar/jcr-2.0.jar included Getting started with Jackrabbit jackrabbit-webapp: Drop-in deployment First Hops: Embedded repository Take your time Think about your use cases Have a look at Apache Sling 23

24 Agenda JCR and Apache Jackrabbit Basic Content Modeling References and Search Advanced Features Demo: Sample Application Summary and Questions 24

25 Starting point: Leverage the standard node types Type hierarchy Content hierarchy nt:hierarchynode nt:folder nt:file nt:linkedfile nt:unstructured 25

26 Bottom-up modeling: Content types my:album > nt:folder - description (string) - date (date) my:tag - name (string) - description (string) my:photo > nt:file - description (string) - location (string) - tags (string[]) my:resource > nt:resource - width, height (long) - format (string) 26

27 Top-down modeling: Content hierarchies Travel Family Europe Weddings Amsterdam Basel City Photo Photo Photo Photo 27

28 Content Modeling: Words of advice Namespaces Use a single namespace per company or application Use a reasonably unique namespace prefix Prefixed names for structured content Default namespace for unstructured content 28

29 Content Modeling: Words of advice Use an application root node /my:content Good for searching, backup, and migration Avoid flat hierarchies User interface complexity Content-driven design Design your content before your application 29

30 Content Modeling: Words of advice Checkout Apache Jackrabbit wiki and mailing lists "Davids Model" Look at existing node types Mixin node types possible 30

31 David s Model Rule #1: Data First, Structure Later. Maybe Rule #2: Drive the content hierarchy, don t let it happen Rule #6: Files are Files are Files Look at DavidsModel 31

32 Agenda JCR and Apache Jackrabbit Basic Content Modeling References and Search Advanced Features Demo: Sample Application Summary and Questions 32

33 Alternative Views: References Tags Album Favorites Bird Tree Photo Top 10 Picks Photo link link link API: Node.getReferences():PropertyIterator Property.getNode():Node Node.setProperty(String name, Node) 33

34 Sample Alternative Views Reference by name my:photo > nt:file - description (string) - location (string) - tags (string[]) my:tag - name (string) - description (string) 34

35 Sample - Alternative Views Reference by path / my:photo > nt:file - description (string) - location (string) - tags (string[]) /Tags/bird Tags bird 35

36 Alternative Views: Search Looking for Latest photos XPath / jcr:root/my:albums//element(*,my:p hoto) [@data > xs:datetime( )] SQL SELECT * FROM my:photo WHERE jcr:path LIKE /my:albums/% AND date > DATE Favorites with keywords / jcr:root/my:albums//element(*,my:f avorite) /jcr:content[jcr:contains(., )] SELECT * FROM my:favorites WHERE jcr:path LIKE /my:albums/% AND CONTAINS(*, ) API: Session.getWorkspace().getQueryManager():QueryManager QueryManager.createQuery(String stmt, String language):query; Query.execute():QueryResult 36

37 Alternative Views: Words of advice Moderate use of references Circular references only within a subtree Plan for backup and content migration Best search performance when selecting a small subset of content References, path or name property 37

38 Agenda JCR and Apache Jackrabbit Basic Content Modeling References and Search Advanced Features Demo: Sample Application Summary and Questions 38

39 Observation Optional feature of the JCR specification Enables applications to register interest in events Monitor events Respond to events API: ObservationManager: addeventlistener(eventlistener listener, int eventtypes, java.lang.string abspath, boolean isdeep, java.lang.string[] uuid, java.lang.string[] nodetypename, boolean nolocal) Advanced JCR Features 39

40 Event Types Events can be of 5 different types Node added Node removed Property added Property removed Property changed Advanced JCR Features 40

41 Observation Events Describe changes to a workspace Dispatched on persistent change Provide the path of the item Provide the user ID Only provided to sessions with sufficient access privileges Events may not be complete! Example: removal of a tree of nodes Advanced JCR Features 41

42 Event Listeners Registered with a workspace Registration with optional filters Like node types, paths Receive events for every change API: public void onevent(eventiterator events); Advanced JCR Features 42

43 Events Advice Events occur after a save Modification based on events is a new operation Such events can be filtered Events may not tell the complete story Tree removal, copy, move Most common pattern Node added, removed, changed Advanced JCR Features 43

44 Staged Publishing: Versioning Version store Staging Live 44

45 Jackrabbit Configuration Workspace configuration XML configuration Persistence Managers Query index configuration (Lucene) File system configuration Check out the documentation 45

46 Agenda JCR and Apache Jackrabbit Basic Content Modeling References and Search Advanced Features Demo: Sample Application Summary and Questions 46

47 Getting Content Get the repository Login to a workspace Returns a session Starting with the session Navigate to the desired content Get the query manager and search 47

48 Writing Content Get the repository Login to a workspace Returns a session Navigate to the correct node To change it To add new nodes/properties To remove nodes/properties Persist changes 48

49 Advanced Development Apache Sling REST based web framework Powered by OSGi Scripting Inside Apache Jackrabbit OCM Map content to Java objects and vice versa Similar to database ORMs 49

50 JCR 2.0 Features Abstract Query Model Java Query Object Model / SQL ACL and Access Control Policies Plus Retention Policies and Hold Nodetype Registry New Property Types and Nodetypes Shareable Nodes (Graph) Journalling Observation 50

51 Agenda JCR and Apache Jackrabbit Basic Content Modeling References and Search Advanced Features Demo: Sample Application Summary and Questions 51

52 (Nearly) Everthing is Content Application Domain Specific Content Presentation Support (HTML, CSS, JavaScript, Images) Documentation, Translations... 52

53 Conclusion Content Repositories Combine advantages from FS and DB Add important features Structure/Access your data the way your domain requires it JCR The Java API Apache Jackrabbit The Implementation 53

54 Famous Last Words Read the specification JCR in your application? Join the Jackrabbit community! Seriously consider Apache Sling for web applications Check for additional stuff like OCM 54

55 Q&A 55

Managing Installations and Provisioning of OSGi Applications. Carsten Ziegeler

Managing Installations and Provisioning of OSGi Applications. Carsten Ziegeler Managing Installations and Provisioning of OSGi Applications Carsten Ziegeler cziegeler@apache.org About Member of the ASF Current PMC Chair of Apache Sling Apache Sling, Felix, ACE, Portals (Incubator,

More information

APACHE SLING & FRIENDS TECH MEETUP BERLIN, SEPTEMBER APACHE JACKRABBIT: BASIC CONCEPTS Christian Riemath, Igor Sechyn

APACHE SLING & FRIENDS TECH MEETUP BERLIN, SEPTEMBER APACHE JACKRABBIT: BASIC CONCEPTS Christian Riemath, Igor Sechyn APACHE SLING & FRIENDS TECH MEETUP BERLIN, 26-28 SEPTEMBER 2012 APACHE JACKRABBIT: BASIC CONCEPTS Christian Riemath, Igor Sechyn About the speakers Igor Sechyn Senior CMS Developer Christian Riemath Senior

More information

The State of Apache Sling

The State of Apache Sling The State of Apache Sling Carsten Ziegeler cziegeler@apache.org adaptto() 2012 Berlin 1 About Member of the ASF Current PMC Chair of Apache Sling Apache Sling, Felix, Portals, Incubator RnD Team at Adobe

More information

J a v a C o n t e n t R e p o s i t o r y. Senior Software Engineer Object Computing, Inc.

J a v a C o n t e n t R e p o s i t o r y. Senior Software Engineer Object Computing, Inc. J a v a C o n t e n t R e p o s i t o r y Tom Wheeler Senior Software Engineer Object Computing, Inc. W h a t L i e s A h e a d? An introduction What is the Java Content Repository? Basic concepts How

More information

Java Content Repository JSR 170. Michal Malohlava

Java Content Repository JSR 170. Michal Malohlava Java Content Repository JSR 170 Michal Malohlava 1 About presentation JSR 170 description Introduction Level 1 Level 2 Optional features Examples of implementation Jackrabbit (Apache) Jeceira 2 Introduction

More information

Carsten Ziegeler

Carsten Ziegeler Embrace OSGi Change A Developer's Quickstart Carsten Ziegeler cziegeler@apache.org About Member of the ASF Sling, Felix, Cocoon, Portals, Sanselan, Excalibur, Incubator PMC: Felix, Portals, Cocoon, Incubator,

More information

Standards and the Portals Project

Standards and the Portals Project Standards and the Portals Project Carsten Ziegeler cziegeler@apache.org Competence Center Open Source S&N AG, Germany Member of the Apache Software Foundation Committer in some Apache Projects Cocoon,

More information

The Cocoon Portal. A portal solution and framework. Carsten Ziegeler Competence Center Open Source S&N AG, Germany

The Cocoon Portal. A portal solution and framework. Carsten Ziegeler Competence Center Open Source S&N AG, Germany The Cocoon Portal A portal solution and framework Carsten Ziegeler cziegeler@apache.org Competence Center Open Source S&N AG, Germany About Member of the Apache Software Foundation Committer in some Apache

More information

Adobe Experience Manager

Adobe Experience Manager Adobe Experience Manager Extend and Customize Adobe Experience Manager v6.x Student Guide: Volume 1 Contents CHAPTER ONE: BASICS OF THE ARCHITECTURAL STACK... 10 What is Adobe Experience Manager?... 10

More information

Content Repository API for Java (JCR) & ModeShape. Jozef JBoss Community Team

Content Repository API for Java (JCR) & ModeShape. Jozef JBoss Community Team Content Repository API for Java (JCR) & ModeShape Jozef Chocholáček @jchochol JBoss Community Team Agenda JCR what is it (good for) ModeShape beyond JCR How do we use JCR and ModeShape JCR Content Repository

More information

Toromiro User Guide. Toromiro User Guide This is the Toromiro User Guide which will help you install, setup and work with Toromiro.

Toromiro User Guide. Toromiro User Guide This is the Toromiro User Guide which will help you install, setup and work with Toromiro. Toromiro User Guide Contents 1. Getting Started 1.1. What is Toromiro? 1.2. Installation 1.3. First Steps 1.4. Tutorial 1.4.1. Repository Connections 1.4.1.1. Connecting to a Jackrabbit Repository 1.4.1.2.

More information

November Randall Hauch Project Lead

November Randall Hauch Project Lead November 2008 Randall Hauch Project Lead Content Repositories Red Hat Content Repositories Provide Hierarchical graph-based storage Flexible/extensible schema (as needed) Versioning, events, and access

More information

Rapid JCR applications development with Apache Sling

Rapid JCR applications development with Apache Sling Rapid JCR applications development with Apache Sling Bertrand Delacrétaz Senior R&D Developer, Day Software, www.day.com Member and Director, ASF bdelacretaz@apache.org blog at http://grep.codeconsult.ch

More information

Nuxeo Roadmap. From Memphis to Chicago Nuxeo Team

Nuxeo Roadmap. From Memphis to Chicago Nuxeo Team Nuxeo Roadmap From Memphis to Chicago... 2008-06-21 Nuxeo Team 5.1 aka Memphis is a large success 2007/08-5.1.0 2007/09-5.1.1 2007/11-5.1.2 2008/01-5.1.3 2008/04-5.1.4 2008/06-5.1.5 2008/09-5.1.6 5.1 s

More information

Rapid JCR applications development with Apache Sling

Rapid JCR applications development with Apache Sling Rapid JCR applications development with Apache Sling Bertrand Delacrétaz, Senior R&D Developer, Day Software bdelacretaz@apache.org - grep.codeconsult.ch Slides revision: 2008-11-05 Slides theme design:

More information

JBoss DNA. Randall Hauch Principal Software Engineer JBoss Data Services

JBoss DNA. Randall Hauch Principal Software Engineer JBoss Data Services JBoss DNA Randall Hauch Principal Software Engineer JBoss Data Services 1 JBoss DNA New project A few months old http://labs.jboss.org/dna Prior repository experience and IP MetaMatrix Repository Drools

More information

Frequently Asked Questions Oracle Content Management Integration. An Oracle White Paper June 2007

Frequently Asked Questions Oracle Content Management Integration. An Oracle White Paper June 2007 Frequently Asked Questions Oracle Content Management Integration An Oracle White Paper June 2007 NOTE: The following is intended to outline our general product direction. It is intended for information

More information

Extending JON 2.3 Use cases

Extending JON 2.3 Use cases Extending JON 2.3 Use cases Presenter JBoss Senior Solution Architect, Red Hat May 2010 04/30/10 1 Agenda How does JON help you JON in different scenarios 2 New JBoss project Migration project JON at different

More information

What is Liferay and why do we need it? Vy Bui

What is Liferay and why do we need it? Vy Bui What is Liferay and why do we need it? Vy Bui Today s agenda Introduction What is Liferay? Why should developers care about Liferay? What is Liferay as a CMS? How to use some cool features to achieve the

More information

Oracle Forms and Oracle APEX The Odd Couple

Oracle Forms and Oracle APEX The Odd Couple Oracle Forms and Oracle APEX The Odd Couple About me 2 Francis Mignault CTO and Co-founder, Insum Solutions 30+ years with Oracle DB, 14+ years with APEX. (Forms 2.3 / Oracle 5) Books: Expert Oracle Application

More information

Adobe Experience Manager 6 Lead Developer Adobe Certified Expert Exam Guide. Exam number: 9A0-396

Adobe Experience Manager 6 Lead Developer Adobe Certified Expert Exam Guide. Exam number: 9A0-396 Adobe Experience Manager 6 Lead Developer Adobe Certified Expert Exam Guide Exam number: 9A0-396 Revised 05 February 2018 About Adobe Certified Expert Exams To be an Adobe Certified Expert is to demonstrate

More information

Concept - first iteration DAM 2.0 & CMIS

Concept - first iteration DAM 2.0 & CMIS Concept - first iteration DAM 2.0 & CMIS CAUTION: this page simply describes the ideas and discussion of the first iteration of the DAM 2.0 & CMIS implementation effort. Some things are still up to date

More information

Oracle Developer Day

Oracle Developer Day Oracle Developer Day Sponsored by: Session 3 Familiar Techniques: Modeling and Frameworks Speaker Speaker Title Page 1 1 Agenda Forms as a Framework Mapping Forms to Oracle ADF Familiar Concepts Phases

More information

Automate to Innovate L EA RN WHAT SCRIPTING CAN DO FOR YOU P U N E E T S I N G H

Automate to Innovate L EA RN WHAT SCRIPTING CAN DO FOR YOU P U N E E T S I N G H Automate to Innovate LEARN WHAT SCRIPTING CAN DO FOR YOU PUNEET SINGH Agenda Target Audience What will be covered in the session? Why Automate? Where to Automate? Where to Automate Examples How to Start

More information

APACHE SLING & FRIENDS TECH MEETUP BERLIN, SEPTEMBER Rookie Session: JCR & Sling Andres Pegam, Stefan Seifert pro!

APACHE SLING & FRIENDS TECH MEETUP BERLIN, SEPTEMBER Rookie Session: JCR & Sling Andres Pegam, Stefan Seifert pro! APACHE SLING & FRIENDS TECH MEETUP BERLIN, 23-25 SEPTEMBER 2013 Rookie Session: JCR & Sling Andres Pegam, Stefan Seifert pro!vision GmbH JCR adaptto() 2013 2 What is a JCR? Content Repository API for Java

More information

A. Add a property called debugclientlibs to the js.txt and set the value to true.

A. Add a property called debugclientlibs to the js.txt and set the value to true. Volume: 60 Questions Question No: 1 You want to debug a CQ HTML client library in the author instance. You want to avoid compressing the JavaScript file. What must you do? A. Add a property called debugclientlibs

More information

Sunday, May 1,

Sunday, May 1, 1 Governing Services, Data, Rules, Processes and more Randall Hauch Project Lead, ModeShape Kurt Stam Project Lead, Guvnor @rhauch @modeshape @guvtalk 2 Scenario 1 Build business processes using existing

More information

Programming ArchiTech

Programming ArchiTech Programming ArchiTech The intention of this document is to give a description of the way ArchiTech has been programmed, in order to make anyone who wants to take a look to the code easier to understand

More information

Florian Müller Jay Brown Jeff Potts. FOREWORDS BY Richard J. Howarth John Newton MANNING.

Florian Müller Jay Brown Jeff Potts. FOREWORDS BY Richard J. Howarth John Newton MANNING. Florian Müller Jay Brown Jeff Potts FOREWORDS BY Richard J. Howarth John Newton MANNING CMIS and Apache Chemistry in Action CMIS and Apache Chemistry in Action FLORIAN MÜLLER JAY BROWN JEFF POTTS MANNING

More information

White Paper. JSR 170 Overview. Standardizing the Content Repository Interface. Roy T. Fielding, Ph.D. Chief Scientist, Day Software

White Paper. JSR 170 Overview. Standardizing the Content Repository Interface. Roy T. Fielding, Ph.D. Chief Scientist, Day Software White Paper as JSR 170 Overview Standardizing the Content Repository Interface Roy T. Fielding, Ph.D. Chief Scientist, Day Software 13 March 2005 Global Content Management www.day.com Page 2 Table of Contents

More information

Combining Doclets with JDBC and JSP Technologies to Deliver the Next-Generation Documentation System for the Java Platform

Combining Doclets with JDBC and JSP Technologies to Deliver the Next-Generation Documentation System for the Java Platform Combining Doclets with JDBC and JSP Technologies to Deliver the Next-Generation Documentation System for the Java Platform Eitan Suez President UptoData, Inc. Primary Purpose Study the architecture and

More information

Script Portlet Installation and Configuration with Websphere Portal v8.5. Adinarayana H

Script Portlet Installation and Configuration with Websphere Portal v8.5. Adinarayana H Script Portlet Installation and Configuration with Websphere Portal v8.5 Adinarayana H Table Of Contents 1. Script Portlet Overview 2. Script Portlet Download Process 3. Script Portlet Installation with

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

Optimizing OAK repository search

Optimizing OAK repository search APACHE SLING & FRIENDS TECH MEETUP BERLIN, 25-27 SEPTEMBER 2017 Optimizing OAK repository search O. Jentsch, Condat AG Welcome tho the next session. This session is: Optimizing OAK repository search. 1

More information

OpenECOMP SDC Developer Guide

OpenECOMP SDC Developer Guide OpenECOMP SDC Developer Guide Copyright 2017 AT&T Intellectual Property. All rights reserved. Licensed under the Creative Commons License, Attribution 4.0 Intl. (the "License"); you may not use this documentation

More information

2 Java Content Repository (JCR)

2 Java Content Repository (JCR) Oracle Fusion Middleware JCR Adapter Guide for Content Server 11g Release 1 (11.1.1) E17158-01 May 2010 The Oracle Fusion Middleware JCR Adapter Guide for Content Server describes the JCR adapter for Oracle

More information

Not just an App. Server

Not just an App. Server Israel JBoss User Group Session 01 / 16.3.2006 JBoss Not just an App. Server By : Lior Kanfi Tikal Hosted by Tikal. w w w. t i k a l k. c o m Cost-Benefit Open Source Agenda Introduction» The problem domain

More information

A Closer Look at XPages in IBM Lotus Domino Designer 8.5 Ray Chan Advisory I/T Specialist Lotus, IBM Software Group

A Closer Look at XPages in IBM Lotus Domino Designer 8.5 Ray Chan Advisory I/T Specialist Lotus, IBM Software Group A Closer Look at XPages in IBM Lotus Domino Designer 8.5 Ray Chan Advisory I/T Specialist Lotus, IBM Software Group 2008 IBM Corporation Agenda XPage overview From palette to properties: Controls, Ajax

More information

Curriculum Guide. ThingWorx

Curriculum Guide. ThingWorx Curriculum Guide ThingWorx Live Classroom Curriculum Guide Introduction to ThingWorx 8 ThingWorx 8 User Interface Development ThingWorx 8 Platform Administration ThingWorx 7.3 Fundamentals Applying Machine

More information

JavaServer Faces Technology, AJAX, and Portlets: It s Easy if You Know How!

JavaServer Faces Technology, AJAX, and Portlets: It s Easy if You Know How! TS-6824 JavaServer Faces Technology, AJAX, and Portlets: It s Easy if You Know How! Brendan Murray Software Architect IBM http://www.ibm.com 2007 JavaOne SM Conference Session TS-6824 Goal Why am I here?

More information

Introducing Apache Tomcat 7

Introducing Apache Tomcat 7 Chicago, October 19-22, 2010 Introducing Apache Tomcat 7 Mark Thomas - SpringSource Agenda Introduction Overview Servlet 3.0 JSP 2.2 EL 2.2 Other new features Current status Useful resources Questions

More information

Lotus Quickr 8.0: Technical Architecture

Lotus Quickr 8.0: Technical Architecture Lotus Quickr 8.0: Technical Architecture Chai Shong Phua 2007 IBM Corporation Agenda 1 2 Functional Overview Architecture 3 Customization 3 Lotus Quickr: Power to the People Lotus Quickr self-service workspaces

More information

de la session Portal 6.1 Administration

de la session Portal 6.1 Administration IBM Corporation Titre WebSphere de la session Portal 6.1 Administration Nom du speaker email 1 er et 2 octobre 2007 Agenda WebSphere Portal Strategy Delivering Exceptional User Experiences: Deliver the

More information

WSRP Web Services for Remote Portlets

WSRP Web Services for Remote Portlets WSRP Web Services for Remote Portlets Dave Landers WebLogic Portal Architect BEA Systems, Inc. Session Goals Basic WSRP description Outline of protocol Why / when WSRP is useful Developer best practices

More information

open source community experience distilled

open source community experience distilled Alfresco 3 Business Solutions Practical implementation techniques and guidance for delivering business solutions with Alfresco Martin Bergljung [ PUBLISHING I I open source community experience distilled

More information

Integrating the Progress Rollbase Portal into OpenEdge Applications. Mike Fechner, Director, Consultingwerk Ltd.

Integrating the Progress Rollbase Portal into OpenEdge Applications. Mike Fechner, Director, Consultingwerk Ltd. Integrating the Progress Rollbase Portal into OpenEdge Applications Mike Fechner, Director, Consultingwerk Ltd. mike.fechner@consultingwerk.de Consultingwerk Ltd. Independent IT consulting organization

More information

Extend EBS Using Applications Express

Extend EBS Using Applications Express Extend EBS Using Applications Express John Peters JRPJR, Inc. Abstract Few people know about Oracle Applications Express (APEX) an actual free Oracle Tool included with your Oracle DB Licenses. How many

More information

MarkLogic Server. Information Studio Developer s Guide. MarkLogic 8 February, Copyright 2015 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Information Studio Developer s Guide. MarkLogic 8 February, Copyright 2015 MarkLogic Corporation. All rights reserved. Information Studio Developer s Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Information

More information

SAS. Installation Guide Fifth Edition Intelligence Platform

SAS. Installation Guide Fifth Edition Intelligence Platform SAS Installation Guide Fifth Edition 9.1.3 Intelligence Platform The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS 9.1.3 Intelligence Platform: Installation

More information

Contents in Detail. Foreword by Xavier Noria

Contents in Detail. Foreword by Xavier Noria Contents in Detail Foreword by Xavier Noria Acknowledgments xv xvii Introduction xix Who This Book Is For................................................ xx Overview...xx Installation.... xxi Ruby, Rails,

More information

Building JavaServer Faces Applications

Building JavaServer Faces Applications IBM Software Group St. Louis Java User Group Tim Saunders ITS Rational Software tim.saunders@us.ibm.com 2005 IBM Corporation Agenda JSF Vision JSF Overview IBM Rational Application Developer v6.0 Build

More information

IBM Mobile Portal Accelerator Enablement

IBM Mobile Portal Accelerator Enablement IBM Mobile Portal Accelerator Enablement Hands-on Lab Exercise on XDIME Portlet Development Prepared by Kiran J Rao IBM MPA Development kiran.rao@in.ibm.com Jaye Fitzgerald IBM MPA Development jaye@us.ibm.com

More information

CMIS CONNECTOR MODULE DOCUMENTATION DIGITAL EXPERIENCE MANAGER 7.2

CMIS CONNECTOR MODULE DOCUMENTATION DIGITAL EXPERIENCE MANAGER 7.2 CMIS CONNECTOR MODULE DOCUMENTATION SUMMARY 1 OVERVIEW... 4 1.1 About CMIS... 4 1.2 About this module... 4 1.3 Module features... 5 1.4 Implementation notes... 6 2 CONFIGURATION... 6 2.1 Installation...

More information

wcm.io Context-Aware Configuration

wcm.io Context-Aware Configuration wcm.io Context-Aware Configuration PVTRAIN-167 Technical Training wcm.io Last Updated: November 2017 2017 pro!vision GmbH http://training.wcm.io/caconfig/ What is Context-Aware Configuration Short overview

More information

Liferay User Management. Kar Joon Chew Oct 2011

Liferay User Management. Kar Joon Chew Oct 2011 Liferay User Management Kar Joon Chew Oct 2011 Terminology You will See 2 Understand the Relationship 3 Resource Resources are scoped into portal, group, page, and content model-resource and application

More information

Planning the Future with Planets The Planets Interoperability Framework. Presented by Ross King Austrian Research Centers GmbH ARC

Planning the Future with Planets The Planets Interoperability Framework. Presented by Ross King Austrian Research Centers GmbH ARC Planning the Future with Planets The Planets Interoperability Framework Presented by Ross King Austrian Research Centers GmbH ARC Outline Motivation Architecture Demonstration Interoperability Framework:

More information

A c t i v e w o r k s p a c e f o r e x t e r n a l d a t a a g g r e g a t i o n a n d S e a r c h. 1

A c t i v e w o r k s p a c e f o r e x t e r n a l d a t a a g g r e g a t i o n a n d S e a r c h.   1 A c t i v e w o r k s p a c e f o r e x t e r n a l d a t a a g g r e g a t i o n a n d S e a r c h B a l a K a n t h i www.intelizign.com 1 Active workspace can search and visualize PLM data better! Problems:

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

Internet Technologies. Lab Introduction

Internet Technologies. Lab Introduction Internet Technologies Lab1 2011 Introduction Overview What will we do in the labs? Project Requirements Examples Evaluation Tools How to reach us? Cavada Dario: cavada@ectrlsolutions.com Mehdi Elahi: mehdi.elahi@stud-inf.unibz.it

More information

ArcGIS for Server: Administration and Security. Amr Wahba

ArcGIS for Server: Administration and Security. Amr Wahba ArcGIS for Server: Administration and Security Amr Wahba awahba@esri.com Agenda ArcGIS Server architecture Distributing and scaling components Implementing security Monitoring server logs Automating server

More information

Efficient Object-Relational Mapping for JAVA and J2EE Applications or the impact of J2EE on RDB. Marc Stampfli Oracle Software (Switzerland) Ltd.

Efficient Object-Relational Mapping for JAVA and J2EE Applications or the impact of J2EE on RDB. Marc Stampfli Oracle Software (Switzerland) Ltd. Efficient Object-Relational Mapping for JAVA and J2EE Applications or the impact of J2EE on RDB Marc Stampfli Oracle Software (Switzerland) Ltd. Underestimation According to customers about 20-50% percent

More information

Protect Your Application with Secure Coding Practices. Barrie Dempster & Jason Foy JAM306 February 6, 2013

Protect Your Application with Secure Coding Practices. Barrie Dempster & Jason Foy JAM306 February 6, 2013 Protect Your Application with Secure Coding Practices Barrie Dempster & Jason Foy JAM306 February 6, 2013 BlackBerry Security Team Approximately 120 people work within the BlackBerry Security Team Security

More information

OSGi. Tales from the Trenches. OSGitales from the trenches

OSGi. Tales from the Trenches. OSGitales from the trenches OSGi Tales from the Trenches Bertrand Delacretaz Senior R&D Developer, Day Software, www.day.com Apache Software Foundation Member and Director bdelacretaz@apache.org blog: http://grep.codeconsult.ch twitter:

More information

Oracle Audit Vault. Trust-but-Verify for Enterprise Databases. Tammy Bednar Sr. Principal Product Manager Oracle Database Security

Oracle Audit Vault. Trust-but-Verify for Enterprise Databases. Tammy Bednar Sr. Principal Product Manager Oracle Database Security Oracle Audit Vault Trust-but-Verify for Enterprise Databases Tammy Bednar Sr. Principal Product Manager Oracle Database Security Agenda Business Drivers Audit Vault Overview Audit

More information

INTERNET ENGINEERING. HTTP Protocol. Sadegh Aliakbary

INTERNET ENGINEERING. HTTP Protocol. Sadegh Aliakbary INTERNET ENGINEERING HTTP Protocol Sadegh Aliakbary Agenda HTTP Protocol HTTP Methods HTTP Request and Response State in HTTP Internet Engineering 2 HTTP HTTP Hyper-Text Transfer Protocol (HTTP) The fundamental

More information

EBS goes social - The triumvirate Liferay, Application Express and EBS

EBS goes social - The triumvirate Liferay, Application Express and EBS EBS goes social - The triumvirate Liferay, Application Express and EBS Keywords: EBS, Portals, Application Express, Integration Overview Michael Pergande PROMATIS software GmbH Ettlingen As part of Oracle

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!   We offer free update service for one year PASS4TEST IT Certification Guaranteed, The Easy Way! \ http://www.pass4test.com We offer free update service for one year Exam : 0B0-105 Title : BEA8.1 Certified Architect:Enterprise Architecture Vendors

More information

Self-Demo Guide. Oracle ilearning and HTML DB

Self-Demo Guide. Oracle ilearning and HTML DB 2003-2004 Self-Demo Guide Oracle ilearning and HTML DB The Oracle Academy allows a school to offer advanced Database and Java programming courses through the use of Oracle s infrastructure. The school

More information

C exam IBM C IBM Digital Experience 8.5 Fundamentals

C exam IBM C IBM Digital Experience 8.5 Fundamentals C9520-427.exam Number: C9520-427 Passing Score: 800 Time Limit: 120 min IBM C9520-427 IBM Digital Experience 8.5 Fundamentals Exam A QUESTION 1 Roberto, a portal administrator, wants to define the number

More information

Migrating traditional Java EE applications to mobile

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

More information

Certkiller.9A0-327 {92Questions}

Certkiller.9A0-327 {92Questions} Certkiller.9A0-327 {92Questions} Number: 9A0-327 Passing Score: 800 Time Limit: 120 min File Version: 6.0 http://www.gratisexam.com/ Adobe CQ 5.5 Component Developer ACE Exam Version 4.0 i) I get the best

More information

Queries in AEM. JCR-SQL2. Pavel Nosau

Queries in AEM. JCR-SQL2. Pavel Nosau Queries in AEM. JCR-SQL2 Pavel Nosau Agenda Grammar * AEM specific 2 Grammar http://www.h2database.com/jcr/grammar.html https://en.wikipedia.org/wiki/syntax_diagram http://www.day.com/specs/jcr/2.0/6_query.html

More information

New Features Summary PowerDesigner 15.2

New Features Summary PowerDesigner 15.2 New Features Summary PowerDesigner 15.2 Windows DOCUMENT ID: DC10077-01-1520-01 LAST REVISED: February 2010 Copyright 2010 by Sybase, Inc. All rights reserved. This publication pertains to Sybase software

More information

to-end Solution Using OWB and JDeveloper to Analyze Your Data Warehouse

to-end Solution Using OWB and JDeveloper to Analyze Your Data Warehouse An End-to to-end Solution Using OWB and JDeveloper to Analyze Your Data Warehouse Presented at ODTUG 2003 Dan Vlamis dvlamis@vlamis.com Vlamis Software Solutions, Inc. (816) 781-2880 http://www.vlamis.com

More information

WebDAV and Apache. Greg Stein.

WebDAV and Apache. Greg Stein. WebDAV and Apache Greg Stein gstein@collab.net http://www.lyra.org/greg/ Agenda Overview Benefits How does it work? Some scenarios DAV software Setting up mod_dav Futures November 21, 2002 ApacheCon US

More information

SFDC - Content Management - Webcast

SFDC - Content Management - Webcast Unfiled Notes Page 1 SFDC - Content Management - Webcast Wednesday, April 02, 2008 12:06 PM 4/2/2008, 12:07 PM Most business data is unstructured Features from field Hard to find content Sales creates

More information

Tzunami Deployer Oracle WebCenter Interaction Exporter Guide

Tzunami Deployer Oracle WebCenter Interaction Exporter Guide Tzunami Deployer Oracle WebCenter Interaction Exporter Guide Supports extraction of Oracle WebCenter Interaction components and migrate to Microsoft SharePoint using Tzunami Deployer Version 3.2 Table

More information

Introduction to OSGi. Marcel Offermans. luminis

Introduction to OSGi. Marcel Offermans. luminis Introduction to OSGi Marcel Offermans luminis Introduction Marcel Offermans marcel.offermans@luminis.nl Luminis Arnhem Apeldoorn Enschede IT solutions from idea to implementation with and for customers:

More information

Ing. José A. Mejía Villar M.Sc. Computing Center of the Alfred Wegener Institute for Polar and Marine Research

Ing. José A. Mejía Villar M.Sc. Computing Center of the Alfred Wegener Institute for Polar and Marine Research Ing. José A. Mejía Villar M.Sc. jmejia@awi.de Computing Center of the Alfred Wegener Institute for Polar and Marine Research 29. November 2011 Contents 1. Fedora Commons Repository 2. Federico 3. Federico's

More information

Portlet Standard JSR 168 / JSR 286

Portlet Standard JSR 168 / JSR 286 Portlet Standard JSR 168 / JSR 286 Version 1.0 Martin Weiss Martin Weiss Informatik AG Agenda JSR 168 2 JSR 168 What Is Missing? 22 JSR 286 25 Portlet Events 28 Public Render Parameters 32 Events vs. Public

More information

Application Security through a Hacker s Eyes James Walden Northern Kentucky University

Application Security through a Hacker s Eyes James Walden Northern Kentucky University Application Security through a Hacker s Eyes James Walden Northern Kentucky University waldenj@nku.edu Why Do Hackers Target Web Apps? Attack Surface A system s attack surface consists of all of the ways

More information

BUILDING A WEBSITE FOR THE NUMBER ONE CHILDREN S HOSPITAL IN THE U.S. May 10, 2011

BUILDING A WEBSITE FOR THE NUMBER ONE CHILDREN S HOSPITAL IN THE U.S. May 10, 2011 BUILDING A WEBSITE FOR THE NUMBER ONE CHILDREN S HOSPITAL IN THE U.S. May 10, 2011 0 Introduction About me and NorthPoint NorthPoint is a USA-based organization Specializing in Open Source technologies

More information

Selenium Testing Training

Selenium Testing Training About Intellipaat Intellipaat is a fast-growing professional training provider that is offering training in over 150 most sought-after tools and technologies. We have a learner base of 600,000 in over

More information

bbc Content Repository Connector for Adobe LiveCycle ES4 Configure Content Repository Connector APPLIES TO CONTENTS

bbc Content Repository Connector for Adobe LiveCycle ES4 Configure Content Repository Connector APPLIES TO CONTENTS TECHNICAL ARTICLE Content Repository Connector for Adobe LiveCycle ES4 Content Repository Connector for LiveCycle is a Document Services Component (DSC) that permits LiveCycle to connect with Content Repository

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

<Insert Picture Here>

<Insert Picture Here> Oracle Forms Modernization with Oracle Application Express Marc Sewtz Software Development Manager Oracle Application Express Oracle USA Inc. 540 Madison Avenue,

More information

value focused. results driven. MaxEdit Renames Maximo Locations, Assets and other records MaxCompare Compares Maximo Systems

value focused. results driven. MaxEdit Renames Maximo Locations, Assets and other records MaxCompare Compares Maximo Systems value focused. results driven. MaxEdit Renames Maximo Locations, Assets and other records MaxCompare Compares Maximo Systems Frank Vanderham, Ontracks Consulting - November 6, 2012 Outline MaxEdit Renames

More information

JSR-286: Portlet Specification 2.0

JSR-286: Portlet Specification 2.0 JSR-286: Portlet Specification 2.0 for Portal and Portlet Developers Ate Douma Apache Software Foundation Member Apache Portals and Apache Wicket Committer & PMC Member JSR-286 & JSR-301 Expert Group Member

More information

Your Voice is Your Passport: Implementing Voice-driven Applications with Amazon Alexa

Your Voice is Your Passport: Implementing Voice-driven Applications with Amazon Alexa Your Voice is Your Passport: Implementing Voice-driven Applications with Amazon Alexa Stephen Lippens Solutions Architect slippens@microstrategy.com This presentation may include statements that constitute

More information

Building Web Applications With The Struts Framework

Building Web Applications With The Struts Framework Building Web Applications With The Struts Framework ApacheCon 2003 Session TU23 11/18 17:00-18:00 Craig R. McClanahan Senior Staff Engineer Sun Microsystems, Inc. Slides: http://www.apache.org/~craigmcc/

More information

Oracle Fusion Middleware 11g: Build Applications with ADF Accel

Oracle Fusion Middleware 11g: Build Applications with ADF Accel Oracle University Contact Us: +352.4911.3329 Oracle Fusion Middleware 11g: Build Applications with ADF Accel Duration: 5 Days What you will learn This is a bundled course comprising of Oracle Fusion Middleware

More information

Driving Interoperability with CMIS

Driving Interoperability with CMIS A guide to understanding the impact of the draft Content Management Interoperability Specification (CMIS) on content management repositories This white paper also includes developer resources for creating

More information

SQL Developer Oracle Migration Workbench Taking Database Migration to the next level

SQL Developer Oracle Migration Workbench Taking Database Migration to the next level SQL Developer Oracle Migration Workbench Taking Database Migration to the next level Donal Daly Senior Director, Database Tools Agenda Why Migrate to Oracle? Oracle Migration Workbench

More information

Integrating Progress Rollbase with OpenEdge the REST of the story. Mike Fechner, Director, Consultingwerk Ltd.

Integrating Progress Rollbase with OpenEdge the REST of the story. Mike Fechner, Director, Consultingwerk Ltd. Integrating Progress Rollbase with OpenEdge the REST of the story Mike Fechner, Director, Consultingwerk Ltd. mike.fechner@consultingwerk.de Consultingwerk Ltd. Independent IT consulting organization Focusing

More information

Digital Factory 7 Search and Query API under the hood

Digital Factory 7 Search and Query API under the hood Digital Factory 7 Search and Query API under the hood #jahiaone Benjamin Papež, QA Architect Search and Query API under the hood Overview on used search engine frameworks and API Jahia's extensions to

More information

Webinar: XPages Goes Relational! November 18th, 2011

Webinar: XPages Goes Relational! November 18th, 2011 = Webinar: XPages Goes Relational! November 18th, 2011 Andrejus Chaliapinas Senior Software Developer XPages, IBM Ireland 2011 IBM Corporation Agenda XPages Extension Library OpenNTF 8.5.3 and IBM position

More information

Bridging the Gap. Peter Ebell AMIS

Bridging the Gap. Peter Ebell AMIS Bridging the Gap between SOA and the Database Peter Ebell AMIS Agenda Two different worlds: Database and SOA? Bridging the Gap How the Database reaches out to SOA Middleware How SOA Middleware reaches

More information

Tzunami Deployer Oracle WebCenter Interaction Exporter Guide

Tzunami Deployer Oracle WebCenter Interaction Exporter Guide Tzunami Deployer Oracle WebCenter Interaction Exporter Guide Supports extraction of Oracle WebCenter Interaction components and migrate to Microsoft SharePoint using Tzunami Deployer Version 2.8 Table

More information

Enabling Universal Authorization Models using Sentry

Enabling Universal Authorization Models using Sentry Enabling Universal Authorization Models using Sentry Hao Hao - hao.hao@cloudera.com Anne Yu - anneyu@cloudera.com Vancouver BC, Canada, May 9-12 2016 About us Software engineers at Cloudera Apache Sentry

More information

Documentum Client for Siebel User Guide

Documentum Client for Siebel User Guide Documentum Client for Siebel User Guide Version 5.3 SP4 April 2007 Copyright 1994-2007 EMC Corporation. All rights reserved. Table of Contents Preface... 7 Chapter 1 Introduction... 9 About DCS... 9 Getting

More information