Webinar: XPages Goes Relational! November 18th, 2011

Size: px
Start display at page:

Download "Webinar: XPages Goes Relational! November 18th, 2011"

Transcription

1 = Webinar: XPages Goes Relational! November 18th, 2011 Andrejus Chaliapinas Senior Software Developer XPages, IBM Ireland 2011 IBM Corporation

2 Agenda XPages Extension Library OpenNTF and IBM position in regards to official support Installation steps on server/client Demo of installation steps Stage of XPages Relational support implementation New data sources for RDBMS connectivity Additionally required manual connection configuration available for Server Side Javascript Demo using DB2 Express instance Q&A 2011 IBM Corporation 2

3 XPages Extension Library OpenNTF and IBM position in regards to official support Currently could be found at where all latest demos are posted and discussion threads are available Download from Downloads/Releases section 2011 IBM Corporation 3

4 XPages Extension Library OpenNTF and IBM position in regards to official support (cont.) Notes/Domino targeting version was initially released on October 17th, As of November 18 th latest release is provided via file named: ExtensionLibraryOpenNTF a.zip From News section you should read this important post: XPages Extension Library - News: October 20th Release - Notes from Peter Janzen where you'll find such statement about this release: It sets the stage for many of the controls and objects to become a supported set of features for Lotus Notes and Domino. That means that while this project will continue its existence as an OpenNTF project part of it with the same code base will be officially supported by IBM. There are now 2 sets of plugins included in OpenNTF delivery - extlib and extlibx. The one called extlibx contains now some experimental code (like XPages Relational) and will be added to official support when it will be mature enough for that IBM Corporation 4

5 Installation steps on server (template to use) XPages Extension Library delivery ZIP file contains 2 Eclipse based update sites: updatesiteopenntf.zip (to be installed on Domino server) updatesiteopenntf-designer.zip (to be installed in Domino Designer) Installation on server side should be done using XPages Extension Library Deployment in Domino and IBM XWork Server technique described in Lotus Notes and Domino Application Development wiki: Involves creation of a new NSF application based on updatesite.ntf template and import of updatesiteopenntf.zip into it Requires specification of OSGI_HTTP_DYNAMIC_BUNDLES variable inside your server's notes.ini file to point to update site NSFs Uses additional safeguards when loading plugins (ACL) 2011 IBM Corporation 5

6 Installation steps on server (verification) For Domino server to pick up those new artifacts you need to restart your Domino server issuing console command restart task http To verify that the library is properly installed - you should use such OSGI command on server console: tell http osgi ss com.ibm.xsp.extlib 2011 IBM Corporation 6

7 Installation steps on server (additional plugins) For connection to DB2, MS SQL, mysql, Oracle and other databases you may need to prepare your own plugin, which will wrap specific database JDBC driver (usually available as 1 or 2 vendor's jar files) and then deploy it either to Domino server or Designer client or both Currently sample DB2, MS SQL, mysql (Oracle to follow soon) plugins/update sites with source code are provided on OpenNTF web site For the purpose of this webinar we'll use freely available DB2 Express- C v9.7.4 RDBMS We'll use also Sample DB2 driver update site available as Extlib_8.5.3_DB2_Driver_updateSite zip. This update site wraps DB2 JDBC driver, available for download from IBM site Verification: tell http osgi ss extlib.driver.db IBM Corporation 7

8 Installation steps on server (demo database) With XPages Extension Library you get also demo application, called XPagesJDBC.nsf, which demonstrates main functionality currently available for Relational support. You need to copy it to your server (here we'll have it under <Domino_Data>/demo directory) and sign with some user/server ID. If steps were done correctly till this moment - you'll see: 2011 IBM Corporation 8

9 Installation steps on server (things to notice) At this moment you cannot open yet XPagesJDBC.nsf demo application inside your Domino Designer if you have option Project Build Automatically switched on (which is default), because we don't have yet required plugins installed for Domino Designer and you'll get a lot of compilation errors making demo application inaccessible from your server With Extension Library delivery ZIP you get only embedded Derby database driver installed for quick testing and demo application is configured to use it. We'll change that later using Domino Designer to use DB2 driver instead 2011 IBM Corporation 9

10 Installation steps on client (preferences) Installation for Domino Designer requires Enable Eclipse plug-in install preference to be enabled After that next steps are done via File Application Install menu and selection of updatesiteopenntf-designer.zip file 2011 IBM Corporation 10

11 Installation steps on client (update site) You add that zip as location to install from: 2011 IBM Corporation 11

12 Installation steps on client (features list) One of the features inside it is directly related to XPages Relational support: 2011 IBM Corporation 12

13 Installation steps on client (verification) To verify installation inside Domino Designer you need to open Help About IBM Lotus Domino Designer menu, click Plug-in Details button, sort by Plug-in Id and check if you have these: 2011 IBM Corporation 13

14 Installation steps on client (usage in apps) 2011 IBM Corporation 14

15 Installation steps on server/client live demo Live demo for about minutes 2011 IBM Corporation 15

16 Stage of XPages Relational support implementation Leverages JDBC to connect to the relational databases Accesses any database with a JDBC driver available The data is accessed directly: no synchronization needed with NSF Connections currently could be defined only within NSF A NSF contains a new file design element (with.jdbc extension) for defining database specific connections. Such design element editing requires switch to Navigator view currently and is located in WebContent/WEB-INF/jdbc directory. Global connections definition on server will be addressed later Uses a connection pool to optimize the use of connections Simple connection pool provided, plan to add support of Apache DBCP 2011 IBM Corporation 16

17 New data sources for RDBMS connectivity There are 2 new data sources you could easily make to be used by your xp:viewpanel control: JDBC Query data source, which provides Read Only access for RDBMS JDBC RowSet data source (uses the standard CachedRowSetImpl), which allows you to edit (create/update/delete) RDBMS data Access to different RDBMS table's fields is made through used for Domino views xp:viewcolumn controls thus making such usage transparent for developer by hiding all details At this moment Domino Designer tooling for table definition retrieval for easier column/field selection is under development and you may need to know ahead your table DDL to specify properly columnname attribute of xp:viewcolumn control 2011 IBM Corporation 17

18 New data sources for RDBMS connectivity (choices) This screenshot below demonstrates how you could select those 2 new data sources using Properties area (in this case for xp:viewpanel control): 2011 IBM Corporation 18

19 New data sources for RDBMS connectivity (SQL queries) The SQL query can be provided using either A table name The runtime will generate a select * from <table name> A SQL query, from a data source property (static or computed) A SQL file resource (*.sql) containing the SQL statement The size of the result set can be computed so the pager can display the actual number of pages Enabled using the calculatecount property, which is false by default Generates a hidden select count(*) to get the exact size Just replaces the select part of the original query by count(*) A specific count query can be provided for performance reasons (ex: avoid ordering...) 2011 IBM Corporation 19

20 New data sources for RDBMS connectivity (parameterizing) A data source can either point to a named connection or a JDBC URL Named connections are heavily advised as they take advantage of a connection pool, and they are easier to manage as they are centrally defined The JNDI prefix can be omitted in the name JDBC URL are for debugging purposes only The SQL statement can either be defined (or computed) from a data source property, or defined in a separate file design element (*.sql) sqltable: a simple table name sqlquery: a general sql query sqlfile: points to a.sql design element Parameters, matching the '?' in the SQL query, are also defined at the data source level. The order of the parameters must match the order of '?' in the SQL query 2011 IBM Corporation 20

21 New data sources for RDBMS connectivity (CRUD) In XPagesJDBC.nsf demo application you'll find sample of CRUD provided (XPage called JDBC_RowSetDatasource.xsp) through which you could create/update/delete records in external RDBMS 2011 IBM Corporation 21

22 Additionally required manual connection configuration step (for DB2 here) To configure your DB2 connection you need to create new design element (let's call it db2demo.jdbc) and specify in it JDBC driver class to be used, database name and user's credentials: <jdbc> <driver>com.ibm.db2.jcc.db2driver</driver> <url>jdbc:db2://testvm:50000/demo</url> <user>demo</user> <password>test123</password> </jdbc> Important: part of name before.jdbc of such design element, which is in this case db2demo will be used for JDBC data sources configuration Reminder: db2demo.jdbc design element should be saved into your application's WebContent/WEB-INF/jdbc folder 2011 IBM Corporation 22

23 @Functions available for Server Side JavaScript Currently are (sample provided in JDBC_AtFunctions.xsp) var v = { id: id, firstname: "Albert", lastname: "Einstein", city: "Boston", state: "MA" } var (sample provided in JDBC_AtFunctions.xsp) var v = { city: "Boston", state: "MA" } var (sample provided in JDBC_AtFunctions.xsp) var c 2011 IBM Corporation 23

24 @Functions available for Server Side JavaScript (sample provided in JDBC_TableMetaData.xsp) var sql = "select * from "+tb; var (sample provided IBM Corporation 24

25 Demo of JDBC data sources using DB2 Express instance Live demo for about minutes For XPagesJDBC.nsf to setup test data inside your DB2 instance you would need these changes: Uncomment these lines inside xpages.datainitializer Java class: // case GENERIC: { // createtables_derby(); // } break; Specify your connection name inside xpages.dbutil Java class: this.connectionname = "db2demo"; Specify the database schema: public String getschema() { return "DEMO"; } 2011 IBM Corporation 25

26 Q & A 2011 IBM Corporation 26

Entwicklercamp Track 3 Session 4. XPages und Domino App Dev Erweiterungen. Philippe Riand, IBM Niklas Heidloff, IBM

Entwicklercamp Track 3 Session 4. XPages und Domino App Dev Erweiterungen. Philippe Riand, IBM Niklas Heidloff, IBM Entwicklercamp 2012 - Track 3 Session 4 XPages und Domino App Dev Erweiterungen Philippe Riand, IBM Niklas Heidloff, IBM 1 Disclaimer The information contained in this publication is provided for informational

More information

XPages Beyond the Basics

XPages Beyond the Basics BLUG 2012 XPages Beyond the Basics 22. 23..03.2012 Crowne Plaza, Antwerp Ulrich Krause, is@web, industrial services AG About: Ulrich Krause Lotus Notes / Domino Administrator & Entwickler since 1993 Business

More information

Lotusphere Nachlese 2012: social + mobile + cloud = smart work IBM Corporation

Lotusphere Nachlese 2012: social + mobile + cloud = smart work IBM Corporation Lotusphere Nachlese 2012: social + mobile + cloud = smart work Lotusphere Nachlese 2012 Session: IBM Lotus Domino Designer and XPages Martin Leyrer Yassin Sabir IBM Collaboratrion Solutions Services IBM

More information

Lotus Technical Night School XPages and RDBMS

Lotus Technical Night School XPages and RDBMS Lotus Technical Night School XPages and RDBMS Note: Information regarding potential future products is intended to outline our general product direction and it should not be relied on in making a purchasing

More information

BP115 Deploying and Managing Your IBM Lotus Domino XPages Applications

BP115 Deploying and Managing Your IBM Lotus Domino XPages Applications BP115 Deploying and Managing Your IBM Lotus Domino XPages Applications Warren Elsmore Consultant Bluewave Matt White Consultant London Developer Co-op Warren Elsmore Senior Architect with Organiser of

More information

Notes/Domino Upgrade Pack 1. Michael Sobczak Senior Lotus Specialist Aktion Associates

Notes/Domino Upgrade Pack 1. Michael Sobczak Senior Lotus Specialist Aktion Associates Notes/Domino 8.5.3 Upgrade Pack 1 Michael Sobczak Senior Lotus Specialist Aktion Associates About me Developing Notes/Domino applications since 97 President of the DNP since 99 Started with Aktion Associates

More information

OpenNTF XPages SDK Installation Guide. Version 1.0.0

OpenNTF XPages SDK Installation Guide. Version 1.0.0 OpenNTF XPages SDK Installation Guide Version 1.0.0 Purpose of the SDK The primary purpose of the XPages SDK is to allow Domino developers who wish to work with XPages libraries and other pure Java code

More information

Using XML and RDBMS Data Sources in XPages Paul T. Calhoun NetNotes Solutions Unlimited, Inc

Using XML and RDBMS Data Sources in XPages Paul T. Calhoun NetNotes Solutions Unlimited, Inc Using XML and RDBMS Data Sources in XPages Paul T. Calhoun NetNotes Solutions Unlimited, Inc 2010 by the individual speaker Sponsors 2010 by the individual speaker Speaker Information Independent Consultant,

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

Boost your JAVA Code with the OpenNTF API. Oliver Busse We4IT GmbH, Germany March 17, 2016

Boost your JAVA Code with the OpenNTF API. Oliver Busse We4IT GmbH, Germany March 17, 2016 Boost your JAVA Code with the OpenNTF API Oliver Busse We4IT GmbH, Germany March 17, 2016 Oliver Busse @zeromancer1972 www.oliverbusse.com Bleeding Yellow since R4.5 Software Architect at We4IT Member

More information

IBM Operational Decision Manager Version 8 Release 5. Configuring Operational Decision Manager on WebLogic

IBM Operational Decision Manager Version 8 Release 5. Configuring Operational Decision Manager on WebLogic IBM Operational Decision Manager Version 8 Release 5 Configuring Operational Decision Manager on WebLogic Note Before using this information and the product it supports, read the information in Notices

More information

IBM Notes Browser Plug-in

IBM Notes Browser Plug-in IBM Notes Browser Plug-in Raj Patil Senior Technical Staff Member - Notes Client Archana Pawar QE Lead - Notes Browser Plugin (Notes Client) Date: 3rd September, 2014 Open Mic Team Raj Patil Senior Technical

More information

Creating a SQL Service with IBM WebSphere Portlet Factory. Introduction to creating services from a relational database

Creating a SQL Service with IBM WebSphere Portlet Factory. Introduction to creating services from a relational database Creating a SQL Service with IBM WebSphere Portlet Factory May, 2009 Copyright International Business Machines Corporation 2009. All rights reserved. This article with the accompanying sample shows you

More information

Successfully Delivering XPages Projects All Things Considered. Martin Donnelly Pete Janzen

Successfully Delivering XPages Projects All Things Considered. Martin Donnelly Pete Janzen Successfully Delivering XPages Projects All Things Considered Martin Donnelly Pete Janzen Agenda Speaker Introduction Session Goals Team Based Application Development Application Testing Tuning, Profiling

More information

ThingWorx Relational Databases Connectors Extension User Guide

ThingWorx Relational Databases Connectors Extension User Guide ThingWorx Relational Databases Connectors Extension User Guide Version 1.0 Software Change Log... 2 Introduction and Installation... 2 About the Relational Databases Connectors Extension... 2 Installing

More information

Oracle Java CAPS Database Binding Component User's Guide

Oracle Java CAPS Database Binding Component User's Guide Oracle Java CAPS Database Binding Component User's Guide Part No: 821 2620 March 2011 Copyright 2009, 2011, Oracle and/or its affiliates. All rights reserved. License Restrictions Warranty/Consequential

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

EUSurvey Installation Guide

EUSurvey Installation Guide EUSurvey Installation Guide Guide to a successful installation of EUSurvey May 20 th, 2015 Version 1.2 (version family) 1 Content 1. Overview... 3 2. Prerequisites... 3 Tools... 4 Java SDK... 4 MySQL Database

More information

Lotus Notes Traveler Upgrade Pack 1 High Availability (HA)

Lotus Notes Traveler Upgrade Pack 1 High Availability (HA) Lotus Notes Traveler 8.5.3 Upgrade Pack 1 High Availability (HA) By Shrikant Jamkhandi Sandeep Deshpande OPEN MIC LOTUS TEAM Shrikant Jamkhandi Staff Software Engineer Presenter Sandeep Deshpande Staff

More information

IKAN ALM Architecture. Closing the Gap Enterprise-wide Application Lifecycle Management

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

More information

Database Binding Component User's Guide

Database Binding Component User's Guide Database Binding Component User's Guide Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. Part No: 821 1069 05 December 2009 Copyright 2009 Sun Microsystems, Inc. 4150 Network Circle,

More information

EUSurvey OSS Installation Guide

EUSurvey OSS Installation Guide Prerequisites... 2 Tools... 2 Java 7 SDK... 2 MySQL 5.6 DB and Client (Workbench)... 4 Tomcat 7... 8 Spring Tool Suite... 11 Knowledge... 12 Control System Services... 12 Prepare the Database... 14 Create

More information

Part 2: Notes Plug-in Development

Part 2: Notes Plug-in Development Working smarter with collaborative applications built on IBM Lotus Notes and Domino 8.5 Part 2: Notes Plug-in Development July 1st, 2009 Pierre Carlson Sr. Software Engineer Expeditor Development Michael

More information

Dojo Meets XPages in IBM Lotus Domino 8.5. Steve Leland PouchaPond Software

Dojo Meets XPages in IBM Lotus Domino 8.5. Steve Leland PouchaPond Software Dojo Meets XPages in IBM Lotus Domino 8.5 Steve Leland PouchaPond Software Agenda What is Dojo? We (XPages) use it. Setup for Dojomino development. You can use Dojo too! Demo Q&A What is Dojo? Open source

More information

Page 1

Page 1 Java 1. Core java a. Core Java Programming Introduction of Java Introduction to Java; features of Java Comparison with C and C++ Download and install JDK/JRE (Environment variables set up) The JDK Directory

More information

EDT 0.8 Stakeholder Meeting SQL JNDI Data Sources

EDT 0.8 Stakeholder Meeting SQL JNDI Data Sources EDT 0.8 Stakeholder Meeting SQL JNDI Data Sources February 8, 2012 Project members: Stakeholder Meeting EDT 0.8 is currently under development For more on EDT 0.8 plans, see http://wiki.eclipse.org/edt:0.8.0_planning

More information

Developing Exceptional Mobile and Multi-Channel Applications using IBM Web Experience Factory

Developing Exceptional Mobile and Multi-Channel Applications using IBM Web Experience Factory Developing Exceptional Mobile and Multi-Channel Applications using IBM Web Experience Factory IBM Corporation 2011 Who am I? 2 Agenda Mobile web applications and Web Experience Factory Tour of Web Experience

More information

Expert Tips and Tricks to Optimize the Performance of Your XPages Applications Bruce Elgort Elguji Software

Expert Tips and Tricks to Optimize the Performance of Your XPages Applications Bruce Elgort Elguji Software Expert Tips and Tricks to Optimize the Performance of Your XPages Applications Bruce Elgort Elguji Software 2012 Wellesley Information Services. All rights reserved. In This Session... Users expect that

More information

Perceptive Matching Engine

Perceptive Matching Engine Perceptive Matching Engine Advanced Design and Setup Guide Version: 1.0.x Written by: Product Development, R&D Date: January 2018 2018 Hyland Software, Inc. and its affiliates. Table of Contents Overview...

More information

Best Practices of IBM Notes Traveler Deployment. Date: 27 Aug 2015

Best Practices of IBM Notes Traveler Deployment. Date: 27 Aug 2015 Best Practices of IBM Notes Traveler Deployment Date: 27 Aug 2015 Open Mic Team Sandip Singh - IBM ICS Support engineer Presenter Sukanya Yenneti - IBM ICS Support engineer Presenter Ranjit Rai - IBM ICS

More information

The End of the Beginning: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written.

The End of the Beginning: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written. The End of the Beginning: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Peter Koletzke Technical Director & Principal Instructor Co-author: Duncan Mills, Oracle Moral Don t

More information

... HTTP load balancing for Oracle s JD Edwards EnterpriseOne HTML servers using WebSphere Application Server Express Edition

... HTTP load balancing for Oracle s JD Edwards EnterpriseOne HTML servers using WebSphere Application Server Express Edition HTTP load balancing for Oracle s JD Edwards EnterpriseOne HTML servers using WebSphere Application Server Express Edition........ Diane Webster Performance Consultant IBM Oracle International Competency

More information

Sentences Installation Guide. Sentences Version 4.0

Sentences Installation Guide. Sentences Version 4.0 Sentences Installation Guide Sentences Version 4.0 A publication of Lazysoft Ltd. Web: www.sentences.com Lazysoft Support: support@sentences.com Copyright 2000-2012 Lazysoft Ltd. All rights reserved. The

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: WSAD. J2EE business topologies. Workbench. Project. Workbench components. Java development tools. Java projects

More information

Configuring a JDBC Resource for IBM DB2/ iseries in Metadata Manager HotFix 2

Configuring a JDBC Resource for IBM DB2/ iseries in Metadata Manager HotFix 2 Configuring a JDBC Resource for IBM DB2/ iseries in Metadata Manager 9.5.1 HotFix 2 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic,

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

Logging IBM Traveler Server and Client Issues

Logging IBM Traveler Server and Client Issues Logging IBM Traveler Server and Client Issues Presented by: Marcelo B. Alejo III May 17, 2017 Agenda Introduction Basic Overview of Logs Knowing When and How to Collect Logs (Server and Device) User Connectivity

More information

PROCE55 Mobile: Web API App. Web API. https://www.rijksmuseum.nl/api/...

PROCE55 Mobile: Web API App. Web API. https://www.rijksmuseum.nl/api/... PROCE55 Mobile: Web API App PROCE55 Mobile with Test Web API App Web API App Example This example shows how to access a typical Web API using your mobile phone via Internet. The returned data is in JSON

More information

SQL Reader User Guide

SQL Reader User Guide SQL Reader User Guide 1 Introduction... 3 1.1 Requirements for SQL Reader... 3 1.2 New SQL Reader Test... 3 1.2.1 Basic Information... 3 1.2.2 Database Connection... 4 1.2.3 Database Query... 4 1.2.4 Example

More information

Getting. Started with. smash. IBM WebSphere. Ron Lynn, Karl Bishop, Brett King

Getting. Started with. smash. IBM WebSphere. Ron Lynn, Karl Bishop, Brett King Getting Started with IBM WebSphere smash Ron Lynn, Karl Bishop, Brett King Contents Introduction 1 Situational Applications 1 Rapid Application Development 1 IBM WebSphere smash Development Process 2 Available

More information

IBM LOT-408. IBM Notes and Domino 9.0 Social Edition Application Development Updat.

IBM LOT-408. IBM Notes and Domino 9.0 Social Edition Application Development Updat. IBM LOT-408 IBM Notes and Domino 9.0 Social Edition Application Development Updat http://killexams.com/exam-detail/lot-408 QUESTION: 90 Mary's users run XPages applications on their IBM Notes clients and

More information

Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written.

Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written. Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Peter Koletzke Technical Director & Principal Instructor Co-author: Duncan Mills, Oracle Moral Don t get

More information

Real Life Web Development. Joseph Paul Cohen

Real Life Web Development. Joseph Paul Cohen Real Life Web Development Joseph Paul Cohen joecohen@cs.umb.edu Index 201 - The code 404 - How to run it? 500 - Your code is broken? 200 - Someone broke into your server? 400 - How are people using your

More information

Week 2 Unit 3: Creating a JDBC Application. January, 2015

Week 2 Unit 3: Creating a JDBC Application. January, 2015 Week 2 Unit 3: Creating a JDBC Application January, 2015 JDBC Overview Java Database Connectivity (JDBC) Java-based data access technology Defines how a client can connect, query, and update data in a

More information

PDF Exporter Xpages Custom Control Documentation

PDF Exporter Xpages Custom Control Documentation PDF Exporter Xpages Custom Control Documentation 2(8) 1 What is this custom control and what it does...3 1.1 PDF template...3 1.2 How to use Open Office Impress...4 2 Technical overview...4 3 Installation

More information

Introduction to Worklight Integration IBM Corporation

Introduction to Worklight Integration IBM Corporation Introduction to Worklight Integration Agenda IBM Mobile Foundation Introduction to Worklight How to Integrate Worklight Adapters WebAPI HTTP & SOAP Database (SQL) WebSphere Message Broker Cast Iron 2 IBM

More information

IBM Domino App Dev Futures. Martin Donnelly, IBM

IBM Domino App Dev Futures. Martin Donnelly, IBM IBM Domino App Dev Futures Martin Donnelly, IBM Please Note: IBM s statements regarding its plans, directions, and intent are subject to change or withdrawal without notice at IBM s sole discretion. Information

More information

Database Explorer Quickstart

Database Explorer Quickstart Database Explorer Quickstart Last Revision: Outline 1. Preface 2. Requirements 3. Introduction 4. Creating a Database Connection 1. Configuring a JDBC Driver 2. Creating a Connection Profile 3. Opening

More information

Lotus Learning Management System R1

Lotus Learning Management System R1 Lotus Learning Management System R1 Version 1.0.4 March 2004 Quick Install Guide G210-1793-00 Disclaimer THE INFORMATION CONTAINED IN THIS DOCUMENTATION IS PROVIDED FOR INFORMATIONAL PURPOSES ONLY. WHILE

More information

Connect and Transform Your Digital Business with IBM

Connect and Transform Your Digital Business with IBM Connect and Transform Your Digital Business with IBM 1 MANAGEMENT ANALYTICS SECURITY MobileFirst Foundation will help deliver your mobile apps faster IDE & Tools Mobile App Builder Development Framework

More information

Application Integration with WebSphere Portal V7

Application Integration with WebSphere Portal V7 Application Integration with WebSphere Portal V7 Rapid Portlet Development with WebSphere Portlet Factory IBM Innovation Center Dallas, TX 2010 IBM Corporation Objectives WebSphere Portal IBM Innovation

More information

Don t get it right, just get it written.

Don t get it right, just get it written. Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Peter Koletzke Technical Director & Principal Instructor (coauthored by Duncan Mills, Oracle) Moral Don t

More information

All About Cranking Out High Quality XPages Applications. Martin Donnelly IBM Ireland

All About Cranking Out High Quality XPages Applications. Martin Donnelly IBM Ireland All About Cranking Out High Quality XPages Applications Martin Donnelly IBM Ireland Please Note IBM s statements regarding its plans, directions, and intent are subject to change or withdrawal without

More information

What is Grails4Notes(TM)?

What is Grails4Notes(TM)? What is Grails4Notes(TM)? Justin Hill, CTO, Prominic.NET, Inc. Copyright (c) 2014. All rights reserved. Trademarks mentioned herein are the rights of their respective owners. About me and Prominic: Co-founder

More information

Getting started with WebSphere Portlet Factory V6

Getting started with WebSphere Portlet Factory V6 Getting started with WebSphere Portlet Factory V6 WebSphere Portlet Factory Development Team 03 Jan 07 Copyright International Business Machines Corporation 2007. All rights reserved. Abstract Discover

More information

Real-time video chat XPage application using websocket and WebRTC technologies AD-1077

Real-time video chat XPage application using websocket and WebRTC technologies AD-1077 Real-time video chat XPage application using websocket and WebRTC technologies AD-1077 Dr Csaba Kiss 02/03/2016 LA-UR-16-20047 Credentials Over 25 years experience in molecular biology Began Xpage application

More information

Wildfly Final (SpagoBI 5.2.0) Davide Zerbetto 2016/11/08 16:55

Wildfly Final (SpagoBI 5.2.0) Davide Zerbetto 2016/11/08 16:55 Wildfly 8.2.0 Final (SpagoBI 5.2.0) Davide Zerbetto 2016/11/08 16:55 Table of Contents Introduction... 3 JDBC drivers configuration... 3 Thread pool component configuration... 3 Environment variables...

More information

Connect your Lotus Notes app to the Activity Stream with XPages. Frank van der Linden

Connect your Lotus Notes app to the Activity Stream with XPages. Frank van der Linden Connect your Lotus Notes app to the Activity Stream with XPages Frank van der Linden Agenda Introduction Social Business oauth and OpenSocial Let s connect to the Activity Stream Post to the Activity Stream

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

Jdbc Connection In Java Example For Oracle 10g

Jdbc Connection In Java Example For Oracle 10g Jdbc Connection In Java Example For Oracle 10g Pdf Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names Example of Routing Based on Request Path Prefix. release 10.2.0.3

More information

API Gateway Version September Key Property Store User Guide

API Gateway Version September Key Property Store User Guide API Gateway Version 7.5.2 15 September 2017 Key Property Store User Guide Copyright 2017 Axway All rights reserved. This documentation describes the following Axway software: Axway API Gateway 7.5.2 No

More information

McMaster Service-Based ehealth Integration Environment (MACSeie) Installation Guide July 24, 2009

McMaster Service-Based ehealth Integration Environment (MACSeie) Installation Guide July 24, 2009 McMaster Service-Based ehealth Integration Environment (MACSeie) Installation Guide July 24, 2009 Richard Lyn lynrf@mcmaster.ca Jianwei Yang yangj29@mcmaster.ca Document Revision History Rev. Level Date

More information

Using SQL Developer. Oracle University and Egabi Solutions use only

Using SQL Developer. Oracle University and Egabi Solutions use only Using SQL Developer Objectives After completing this appendix, you should be able to do the following: List the key features of Oracle SQL Developer Identify menu items of Oracle SQL Developer Create a

More information

Contents. Getting Set Up Contents 2

Contents. Getting Set Up Contents 2 Getting Set Up Contents 2 Contents Getting Set Up... 3 Best Practices...3 Installing the JAR File... 3 Configuring Community Manager Reports...4 Configure the Analytics Database...4 Enable the Analytics

More information

An Oracle White Paper April Oracle Application Express 5.0 Overview

An Oracle White Paper April Oracle Application Express 5.0 Overview An Oracle White Paper April 2015 Oracle Application Express 5.0 Overview Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and

More information

Instructor s Notes Web Data Management Web Client/Server Concepts. Web Data Management Web Client/Server Concepts

Instructor s Notes Web Data Management Web Client/Server Concepts. Web Data Management Web Client/Server Concepts Instructor s Web Data Management Web Client/Server Concepts Web Data Management 152-155 Web Client/Server Concepts Quick Links & Text References Client / Server Concepts Pages 4 11 Web Data Mgt Software

More information

Cooking RIA CRUD with Flex and BlazeDS

Cooking RIA CRUD with Flex and BlazeDS Cooking RIA CRUD with Flex and BlazeDS In today s cooking class you ll add to your cookbook a delicious recipe. It s quick and won t cost you a dime. I m sure you ve been in one of these situations when

More information

Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written.

Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written. Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Peter Koletzke Technical Director & Principal Instructor Co-author: Duncan Mills, Oracle Moral Don t get

More information

Quickr Configuration/Administration

Quickr Configuration/Administration IBM Software Group Quickr Configuration/Administration Managing Quickr An IBM Proof of Technology 2008 IBM Corporation Presentation objectives Define configuration and administration of IBM Lotus Quickr

More information

SEPTEMBER 2018 ORACLE PRIMAVERA UNIFIER UNIFIER CUSTOM PRINT USING EXTERNAL DATA MODEL

SEPTEMBER 2018 ORACLE PRIMAVERA UNIFIER UNIFIER CUSTOM PRINT USING EXTERNAL DATA MODEL SEPTEMBER 2018 ORACLE PRIMAVERA UNIFIER Unifier s Custom Print has a very powerful feature called External Data Model. Different from the Internal Data Model with the Unifier BP itself as the data source,

More information

1. The Apache Derby database

1. The Apache Derby database 1. The Apache Derby database In these instructions the directory jdk_1.8.0_112 is named after the version 'number' of the distribution. Oracle tend to issue many new versions of the JDK/ JRE each year.

More information

Create Datamart. Alessandro Taurelli 2010/06/15 13:41

Create Datamart. Alessandro Taurelli 2010/06/15 13:41 Create Datamart Alessandro Taurelli 2010/06/15 13:41 Table of Contents Create Datamart... 3 1 Reverse engineering the target database schema... 3 2 Hibernate mapping adjustement... 16 3 jar production

More information

3 Connecting to Applications

3 Connecting to Applications 3 Connecting to Applications 3 Connecting to Applications...1 3.1 Prerequisites...1 3.2 Introduction...1 3.2.1 Pega, the Widget Supplier...2 3.2.2 Mega, the Widget Procurer...2 3.3 Create Requisition...3

More information

Exam Name: IBM Forms 4 - Form Design and Development

Exam Name: IBM Forms 4 - Form Design and Development Vendor: IBM Exam Code: LOT-916 Exam Name: IBM Forms 4 - Form Design and Development Version: DEMO QUESTION 1 Which of the following statements regarding XML is TRUE? A. All XML elements must be properly

More information

Optimize Enterprise Generation Language (EGL) applications using purequery

Optimize Enterprise Generation Language (EGL) applications using purequery Optimize Enterprise Generation Language (EGL) applications using purequery Venkatesh Gopal, Data Studio Development Team Kathryn Zeidenstein, Data Studio Enablement team 1 About EGL and purequery... 3

More information

Paul Withers Intec Systems Ltd By Kind Permission of Matt White and Tim Clark

Paul Withers Intec Systems Ltd By Kind Permission of Matt White and Tim Clark XPages Blast Paul Withers Intec Systems Ltd By Kind Permission of Matt White and Tim Clark Lead Developer at Matt White Creators of IdeaJam and IQJam Creator of XPages101.net Founder member of the LDC

More information

IBM Operational Decision Manager Version 8 Release 5. Configuring Operational Decision Manager on Tomcat

IBM Operational Decision Manager Version 8 Release 5. Configuring Operational Decision Manager on Tomcat IBM Operational Decision Manager Version 8 Release 5 Configuring Operational Decision Manager on Tomcat Note Before using this information and the product it supports, read the information in Notices on

More information

For detailed technical instructions refer to the documentation provided inside the SDK and updated samples.

For detailed technical instructions refer to the documentation provided inside the SDK and updated samples. The vsphere HTML Client SDK Fling provides libraries, sample plug-ins, documentation and various SDK tools to help you develop and build user interface extensions which are compatible with both vsphere

More information

J2EE: Best Practices for Application Development and Achieving High-Volume Throughput. Michael S Pallos, MBA Session: 3567, 4:30 pm August 11, 2003

J2EE: Best Practices for Application Development and Achieving High-Volume Throughput. Michael S Pallos, MBA Session: 3567, 4:30 pm August 11, 2003 J2EE: Best Practices for Application Development and Achieving High-Volume Throughput Michael S Pallos, MBA Session: 3567, 4:30 pm August 11, 2003 Agenda Architecture Overview WebSphere Application Server

More information

Lab 3: Using Worklight Server and Environment Optimization Lab Exercise

Lab 3: Using Worklight Server and Environment Optimization Lab Exercise Lab 3: Using Worklight Server and Environment Optimization Lab Exercise Table of Contents Lab 3 Using the Worklight Server and Environment Optimizations... 3-4 3.1 Building and Testing on the Android Platform...3-4

More information

BlueMix Hands-On Workshop Lab A - Building and Deploying BlueMix Applications

BlueMix Hands-On Workshop Lab A - Building and Deploying BlueMix Applications BlueMix Hands-On Workshop Lab A - Building and Deploying BlueMix Applications Version : 4.00 Last modification date : 13 June 2014 Owner : IBM Ecosystem Development Table of Contents Part 1: Building

More information

Configuring the module for advanced queue integration

Configuring the module for advanced queue integration Configuring the module for advanced queue integration To configure a module to use the adapter for outbound or inbound processing, use the external service wizard in IBM Integration Designer to create

More information

1. Configuring Azure and EBP for a simple demo

1. Configuring Azure and EBP for a simple demo 1. Configuring Azure and EBP for a simple demo These steps assume you already have an Azure subscription and at least familiarity with the Azure portal. Create a new App Service Search for Apache Tomcat

More information

How To Guide Using and Developing Custom Phases in IKAN ALM

How To Guide Using and Developing Custom Phases in IKAN ALM How To Guide Using and Developing Custom Phases in IKAN ALM Release 5.6 January 2015 N.V. Schaliënhoevedreef 20A 2800 Mechelen BELGIUM 2006-2015 N.V. No part of this document may be reproduced or transmitted

More information

For detailed technical instructions refer to the documentation provided inside the SDK and updated samples.

For detailed technical instructions refer to the documentation provided inside the SDK and updated samples. The vsphere HTML Client SDK Fling provides libraries, sample plug-ins, documentation and various SDK tools to help you develop and build user interface extensions which are compatible with both vsphere

More information

Advanced Topics on the Mirth Connect Interface Engine. July 6, 2016

Advanced Topics on the Mirth Connect Interface Engine. July 6, 2016 Advanced Topics on the Mirth Connect Interface Engine July 6, 2016 You have been automatically muted. Please use the Q&A panel to submit questions during the presentation PRESENTER Nate Bessa Technical

More information

Let's Play... Try to name the databases described on the following slides...

Let's Play... Try to name the databases described on the following slides... Database Software Let's Play... Try to name the databases described on the following slides... "World's most popular" Free relational database system (RDBMS) that... the "M" in "LAMP" and "XAMP" stacks

More information

How to Successfully Set Up the WebSphere ILOG Rule Team Server

How to Successfully Set Up the WebSphere ILOG Rule Team Server IBM Software Group How to Successfully Set Up the WebSphere ILOG Rule Team Server Franck Delporte (franck.delporte@us.ibm.com) Alain Robert (alain.robert@us.ibm.com) Senior Software Engineers - ILOG JRules

More information

Webservices In Java Tutorial For Beginners Using Netbeans Pdf

Webservices In Java Tutorial For Beginners Using Netbeans Pdf Webservices In Java Tutorial For Beginners Using Netbeans Pdf Java (using Annotations, etc.). Part of way) (1/2). 1- Download Netbeans IDE for Java EE from here: 2- Follow the tutorial for creating a web

More information

Just Get It Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Hands on Practice

Just Get It Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Hands on Practice This hands on practice describes the steps for deploying an existing Java EE application written with Oracle ADF technologies. Although the practice refers to specific features and files in a sample application

More information

SIGNATUS USER MANUAL VERSION 2.5

SIGNATUS USER MANUAL VERSION 2.5 SIGNATUS USER MANUAL VERSION 2.5 CONTENTS 1 INTRODUCTION... 3 1.1 Launching SIGNATUS... 4 1.1.1 Launching SIGNATUS for the 1 st time... 4 1.1.2 Update your SIGNATUS License... 5 1.2 Main Menu... 6 2 SETTINGS...

More information

Integrate IBM Case Manager 5.2 with IBM Content Analytics 3.0

Integrate IBM Case Manager 5.2 with IBM Content Analytics 3.0 Integrate IBM Case Manager 5.2 with IBM Content Analytics 3.0 -----Enable IBM Case manager 5.2 Enterprise Search with IBM Content Analytics Author: Gang Zhan (zhangang@cn.ibm.com) Gang Zhan works on QA

More information

Red Hat Fuse 7.1 Fuse Online Sample Integration Tutorials

Red Hat Fuse 7.1 Fuse Online Sample Integration Tutorials Red Hat Fuse 7.1 Fuse Online Sample Integration Tutorials How business users can share data among different applications Last Updated: 2018-09-25 Red Hat Fuse 7.1 Fuse Online Sample Integration Tutorials

More information

The 60-Minute Guide to Development Tools for IBM Lotus Domino, IBM WebSphere Portal, and IBM Workplace Applications

The 60-Minute Guide to Development Tools for IBM Lotus Domino, IBM WebSphere Portal, and IBM Workplace Applications The 60-Minute Guide to Development Tools for IBM Lotus Domino, IBM WebSphere Portal, and IBM Workplace Stuart Duguid Portal & Workplace Specialist TechWorks, IBM Asia-Pacific Overview / Scope The aim of

More information

IBM Cognos Open Mic Cognos Analytics 11 Part 1. 1 st Jun, IBM Corporation

IBM Cognos Open Mic Cognos Analytics 11 Part 1. 1 st Jun, IBM Corporation IBM Cognos Open Mic Cognos Analytics 11 Part 1 1 st Jun, 2016 IBM Cognos Open MIC Team Chakravarthi Mannava Presenter Subhash Kothari Technical Panel Member Deepak Giri Technical Panel Member 2 Agenda

More information

What's New in Notes/Domino 8.5.3

What's New in Notes/Domino 8.5.3 What's New in Notes/Domino 8.5.3 Notes / Domino Development focus Reducing cost of ownership Scalability, reliability, manageability Reducing hardware requirements Reducing administration effort Protecting

More information

Getting started with WebSphere Portlet Factory V7.0.0

Getting started with WebSphere Portlet Factory V7.0.0 Getting started with WebSphere Portlet Factory V7.0.0 WebSphere Portlet Factory Development Team 29 September 2010 Copyright International Business Machines Corporation 2010. All rights reserved. Abstract

More information

C IBM. Developing IBM Lotus Domino Applications- Advanced XPage Design

C IBM. Developing IBM Lotus Domino Applications- Advanced XPage Design IBM C2040-922 Developing IBM Lotus Domino 8.5.2 Applications- Advanced XPage Design Download Full Version : https://killexams.com/pass4sure/exam-detail/c2040-922 QUESTION: 60 John wishes to create a component

More information

Mastering Notes.ini Settings, Both Old and New Chris Miller Connectria

Mastering Notes.ini Settings, Both Old and New Chris Miller Connectria Mastering Notes.ini Settings, Both Old and New Chris Miller Connectria 2007 Wellesley Information Services. All rights reserved. ODS 48 Improvements Potential improvements for I/O optimization Potential

More information

SAP NetWeaver Identity Management Virtual Directory Server. Tutorial. Version 7.0 Rev 3. - Accessing databases

SAP NetWeaver Identity Management Virtual Directory Server. Tutorial. Version 7.0 Rev 3. - Accessing databases SAP NetWeaver Identity Management Virtual Directory Server Tutorial - Accessing databases Version 7.0 Rev 3 SAP Library document classification: PUBLIC No part of this publication may be reproduced or

More information