>> PM

Size: px
Start display at page:

Download ">> PM"

Transcription

1 >> PM Decided to look at the CLASSPATH, it was completely empty:-) filled it in and relaunching the Application

2 Changing Course: the above had to be done... nevertheless, we need to find other means to adding the records to DB2... using the current method is problematic for now... at the risk of wasting time on it, we will be moving to XML values to forward over to DB2, data available in back-end View... Will use this data to fill in table in DB2, which will have to be via JDeveloper- Suspecting a JavaAgent with XML connection

3 to DB2 via URL is available Actually there isn't one for this particular View, but we can copy the above and just point it to our View, modify it a bit to grab the right fields- Adding BEFORE and AFTER code here, just for fun! BEFORE /** * Created: AM * WebNewsForHTTPUserXMLDataJavaAgent javaagentdataforwebnewshttp.xml * XML data for Xpage to be read by JavaBean */ //load imports import lotus.domino.*; import java.io.printwriter; /** Dököll Solutions, Inc AM * */ // begin class public class NotesLogErrReportJavaAgent extends AgentBase { // open method, this actually runs the whole program public void NotesMain() { // let's add a try catch here, to grab errors near the end try { // open our session... Session session = getsession();

4 .println("webnewsnotesloghttpxmljavaagent NotesLogErrReportJavaAgent session..." + session); // load agentcontext AgentContext agentcontext = session.getagentcontext();.println("webnewsnotesloghttpxmljavaagent NotesLogErrReportJavaAgent agentcontext..." + agentcontext); // get the server name from the current database Database cdb = agentcontext.getcurrentdatabase();.println("database connection to..." + cdb); // grab current servername String ServerName = cdb.getserver();.println("database ServerName..." + ServerName); // Access the Database this agent is running in Database db = session.getdatabase(servername, "docucontent.nsf"); // db.open();.println("webnewsnotesloghttpxmljavaagent NotesLogErrReportJavaAgent Connection to database..." + db + " established"); document View pview = db.getview("logreportviewoutalias");.println("we've got a view..." + pview); // Create Variables to hold the Documents and get the first Document doc; Document ndoc; doc = pview.getfirstdocument(); // Create a Java PrintWriter object variable to save coding time and // size PrintWriter pw = getagentoutput();.println("xml to URL: commenced...");.println("xml Named: /javaagentnoteslogwebnewshttp.xml..."); // Set the content type pw.println("content-type:text/xml"); pw.println(""); // Write out the XML Opening Tags pw.println("<?xml version='1.0'?>"); pw.println("<noteslogerrors>"); while (doc!= null) { // Write the value in the UserName field to // the output stream pw.println("<errorreading>");

5 pw.println("<errordescrip>"); pw.println(doc.getitemvaluestring("errordescrip")); pw.println("</errordescrip>"); pw.println("<errorlang>"); pw.println(doc.getitemvaluestring("errorlang")); pw.println("</errorlang>"); pw.println("<filedate>"); pw.println(doc.getitemvaluestring("filedate")); pw.println("</filedate>"); pw.println("<filetime>"); pw.println(doc.getitemvaluestring("filetime")); pw.println("</filetime>"); pw.println("<errorampm>"); pw.println(doc.getitemvaluestring("errorampm")); pw.println("</errorampm>"); pw.println("</errorreading>"); // Get the next document in the view ndoc = pview.getnextdocument(doc); // recycle the doc object to preserve memory doc.recycle(); //... doc = ndoc; pw.println("</noteslogerrors>");.println("xml Data Created with WebNewsNotesLogHTTPXMLJavaAgent NotesLogErrReportJavaAgent"); catch (Exception e) { e.printstacktrace(); AFTER /** * Copyright 2014 Dököll Solutions, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and

6 limitations under the License. * DöcuLogs.nsf * Created from Copy: PM * Program: WebNewsUserLogHTTPXMLJavaAgent javaagentuserlogwebnewshttp.xml * XML data for Xpage to be read by JavaBean */ //load imports import lotus.domino.*; import java.io.printwriter; /** Dököll Solutions, Inc PM * */ // begin class public class UserLogErrReportJavaAgent extends AgentBase { // open method, this actually runs the whole program public void NotesMain() { // let's add a try catch here, to grab errors near the end try { // open our session... Session session = getsession();.println("webnewsuserloghttpxmljavaagent UserLogErrReportJavaAgent session..." + session); // load agentcontext AgentContext agentcontext = session.getagentcontext();.println("webnewsuserloghttpxmljavaagent UserLogErrReportJavaAgent agentcontext..." + agentcontext); // get the server name from the current database Database cdb = agentcontext.getcurrentdatabase();.println("database connection to..." + cdb); // grab current servername String ServerName = cdb.getserver();.println("database ServerName..." + ServerName); // Access the Database this agent is running in Database db = session.getdatabase(servername, "doculogs.nsf"); // db.open();.println("webnewsuserloghttpxmljavaagent UserLogErrReportJavaAgent Connection to database..." + db + " established");

7 View pview = db.getview("db2subjects");.println("we've got a view..." + pview); // Create Variables to hold the Documents and get the first document and Document doc; Document ndoc; doc = pview.getfirstdocument(); // Create a Java PrintWriter object variable to save coding time // size PrintWriter pw = getagentoutput();.println("xml to URL: commenced...");.println("xml Named: /javaagentuserlogwebnewshttp.xml..."); // Set the content type pw.println("content-type:text/xml"); pw.println(""); // Write out the XML Opening Tags pw.println("<?xml version='1.0'?>"); pw.println("<usercomplaints>"); while (doc!= null) { // Write the value in the UserName field to // the output stream pw.println("<userlogs>"); pw.println("<recid>"); pw.println(doc.getitemvaluestring("id")); pw.println("</recid>"); pw.println("<username>"); pw.println(doc.getitemvaluestring("username")); pw.println("</username>"); pw.println("<allegationcode>"); pw.println(doc.getitemvaluestring("allegationcode")); pw.println("</allegationcode>"); pw.println("<office>"); pw.println(doc.getitemvaluestring("office")); pw.println("</office>"); pw.println("<investigator>"); pw.println(doc.getitemvaluestring("investigator")); pw.println("</investigator>"); pw.println("<dateopen>"); pw.println(doc.getitemvaluestring("dateopen")); pw.println("</dateopen>"); pw.println("<age>"); pw.println(doc.getitemvaluestring("age")); pw.println("</age>"); pw.println("<subject>");

8 pw.println(doc.getitemvaluestring("subject")); pw.println("</subject>"); pw.println("<licensee>"); pw.println(doc.getitemvaluestring("licensee")); pw.println("</licensee>"); pw.println("<allegationnum>"); pw.println(doc.getitemvaluestring("allegationnumber")); pw.println("</allegationnum>"); pw.println("<region>"); pw.println(doc.getitemvaluestring("region")); pw.println("</region>"); pw.println("</userlogs>"); // Get the next document in the view ndoc = pview.getnextdocument(doc); // recycle the doc object to preserve memory doc.recycle(); //... doc = ndoc; pw.println("</usercomplaints>");.println("xml Data Created with WebNewsUserLogHTTPXMLJavaAgent UserLogErrReportJavaAgent"); catch (Exception e) { e.printstacktrace(); Will launch JDeveloper to grab data via URL from Notes Domino-

9 Actually, I need to look at tutorials for that, this is a Windows 10 environment, it wouldn't have had the App sample yet, from Windows 7... Will have a look here...

10 okay, let's copy this code an pop it in JDeveloper to collect data from IBM Domino App... Will not be copying the code over this time, will just post the modified version- Creating a Java class in the View Controller portion of JDeveloper, in this case, we will need a Backing Bean to run code, grab XML data from Notes Domino-

11

12 Will add the code in for button then go from there... simply put, double-click on the button from the design, so it takes me to the actual method section of the Backing Bean code >> PM this is what we are getting for the XML launch, probably a non-issue... somehow the process is reading first column for Subject

13 Looking at this closer, in the next session... Join us!

JDeveloper. Read Lotus Notes Data via URL Part 2

JDeveloper. Read Lotus Notes Data via URL Part 2 JDeveloper Read Lotus Notes Data via URL Part 2 Introduction: Read App Data from Lotus Notes Database into Java Server Faces Page on JDeveloper, running on Weblogic Server Use Existing Code HTTPCSVDataJavaAgent

More information

JDeveloper. Read Lotus Notes Data via URL Part 4

JDeveloper. Read Lotus Notes Data via URL Part 4 JDeveloper Read Lotus Notes Data via URL Part 4 Introduction: Read App Data from Lotus Notes Database into Java Server Faces Page on JDeveloper, running on Weblogic Server Current Lotus Notes JavaAgent,

More information

Döcu Content Notes Document View BackingBean

Döcu Content Notes Document View BackingBean Döcu Content Notes Document View BackingBean Xpages File or Form Element Introduction: Navigate Döcu Content App via links on Xpages form, interact with documents viewing page. This tutorial makes use

More information

Döcu Content Phantom Pages and Links JavaBean

Döcu Content Phantom Pages and Links JavaBean Döcu Content Phantom Pages and Links JavaBean Xpages Controls Per User Access Introduction: Xpages forms and links rendering have never been anymore dynamic. Load Documents, pages and so on via links on

More information

DB2, JavaBean. Retrieve DB2 Data - Xpages Form (Part 3) Xpages

DB2, JavaBean. Retrieve DB2 Data - Xpages Form (Part 3) Xpages DB2, JavaBean Retrieve DB2 Data - Xpages Form (Part 3) Xpages System Requirements: Download DB2 Express-C http://www-01.ibm.com/software/data/db2/express/download.html Download Domino Designer 8.5.3 Environment

More information

>> PM

>> PM +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++>> 2016.10.23.8.27.PM Will try other sets of data... running a different JavaAgent to see if I can get data into the DB at all...

More information

IBM VisualAge for Java,Version3.5. Domino AgentRunner

IBM VisualAge for Java,Version3.5. Domino AgentRunner IBM VisualAge for Java,Version3.5 Domino AgentRunner Note! Before using this information and the product it supports, be sure to read the general information under Notices. Edition notice This edition

More information

NotesFactory/NotesThread/ NotesError classes

NotesFactory/NotesThread/ NotesError classes C H A P T E R 4 NotesFactory/NotesThread/ NotesError classes 4.1 NotesFactory class 33 4.2 What is a thread? 34 4.3 NotesThread class 35 4.4 What is an exception? 35 4.5 NotesException class 35 4.6 NotesError

More information

DB2, Script, Java Retrieve Data DB2 into Notes Documents Xpages

DB2, Script, Java Retrieve Data DB2 into Notes Documents Xpages DB2, Script, Java Retrieve Data DB2 into Notes Documents Xpages System Requirements: Download DB2 Express-C http://www-01.ibm.com/software/data/db2/express/download.html Download Domino Designer 8.5.3

More information

Chapter 11 Upgrading Servlets to Agents

Chapter 11 Upgrading Servlets to Agents Chapter 11 Upgrading Servlets to Agents This chapter is designed especially for two groups of people: (1) Those interested in learning more about the relationship of Servlets to Agents; and (2) those of

More information

/* Copyright 2012 Robert C. Ilardi

/* Copyright 2012 Robert C. Ilardi / Copyright 2012 Robert C. Ilardi Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

More information

Döcu Content IBM Notes Domino, DB2 Oracle JDeveloper, WebLogic

Döcu Content IBM Notes Domino, DB2 Oracle JDeveloper, WebLogic Döcu Content IBM Notes Domino, DB2 Oracle JDeveloper, WebLogic Research/Create App Classes +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++>> 2015.10.31.9.56.AM Getting IBM Lotus Notes

More information

Using Code Templates in DDE by Julian Robichaux, panagenda originally published on socialbizug.org, July 2013

Using Code Templates in DDE by Julian Robichaux, panagenda originally published on socialbizug.org, July 2013 Using Code Templates in DDE by Julian Robichaux, panagenda originally published on socialbizug.org, July 2013 One of the freebies that came with integrating Domino Designer with the Eclipse platform (DDE)

More information

Chapter 8 Writing NOI Agents

Chapter 8 Writing NOI Agents Chapter 8 Writing NOI Agents In Chapter 7 we covered a lot of aspects of using Java and NOI to write applications; could writing Agents be very different? The answer is both yes and no. The basics are

More information

Bitdock. Release 0.1.0

Bitdock. Release 0.1.0 Bitdock Release 0.1.0 August 07, 2014 Contents 1 Installation 3 1.1 Building from source........................................... 3 1.2 Dependencies............................................... 3

More information

ORACLEAS PORTAL 10g (10.1.4) INTEGRATE YOUR ENTERPRISE CONTENT MANAGEMENT SYSTEMS INTO ORACLE PORTAL

ORACLEAS PORTAL 10g (10.1.4) INTEGRATE YOUR ENTERPRISE CONTENT MANAGEMENT SYSTEMS INTO ORACLE PORTAL Oracle WebCenter Technical Note ORACLEAS PORTAL 10g (10.1.4) INTEGRATE YOUR ENTERPRISE CONTENT MANAGEMENT SYSTEMS INTO ORACLE PORTAL April 2007 INTRODUCTION In many enterprise portal environments, it is

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

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

Lotus IBM Lotus Notes Domino 8 Developing Web Applications. Download Full Version :

Lotus IBM Lotus Notes Domino 8 Developing Web Applications. Download Full Version : Lotus 190-836 IBM Lotus Notes Domino 8 Developing Web Applications Download Full Version : http://killexams.com/pass4sure/exam-detail/190-836 A. Create a WebQuerySave agent that writes the message to the

More information

java programming - lotusdomino

java programming - lotusdomino NOTICE: The content of this document should contain java related topics. This is the java-lotusdomino document Table of contents 1 lotusdomino... 2 1.1 addressbooks.java... 2 1.2 aveddataagent.java...2

More information

Introduction to Java Development with IDS

Introduction to Java Development with IDS Introduction to Java Development with IDS Jean Georges Perrin IIUG GreenIvory.com Tuesday, October 3 rd 2006 09:00 10:00. JGP.net Platform: IDS, Java 1 Agenda Who am I? Architecture Requirements Your very

More information

Apps Exception Problem Building Schema Jdeveloper

Apps Exception Problem Building Schema Jdeveloper Apps Exception Problem Building Schema Jdeveloper Getting Error scanning file when running jetty 9 on java 8 using the maven jetty plugin XML- 24500: (Error) Can not build schema located at ' spring-beans-3.1.xsd'

More information

CIS 764 Tutorial: Log-in Application

CIS 764 Tutorial: Log-in Application CIS 764 Tutorial: Log-in Application Javier Ramos Rodriguez Purpose This tutorial shows you how to create a small web application that checks the user name and password. Overview This tutorial will show

More information

Oracle 10g: Build J2EE Applications

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

More information

DefendX Software Control-Audit for Hitachi Installation Guide

DefendX Software Control-Audit for Hitachi Installation Guide DefendX Software Control-Audit for Hitachi Installation Guide Version 4.1 This guide details the method for the installation and initial configuration of DefendX Software Control-Audit for NAS, Hitachi

More information

COURSE DETAILS: CORE AND ADVANCE JAVA Core Java

COURSE DETAILS: CORE AND ADVANCE JAVA Core Java COURSE DETAILS: CORE AND ADVANCE JAVA Core Java 1. Object Oriented Concept Object Oriented Programming & its Concepts Classes and Objects Aggregation and Composition Static and Dynamic Binding Abstract

More information

Andrew Pollack Northern Collaborative Technologies

Andrew Pollack Northern Collaborative Technologies Andrew Pollack Northern Collaborative Technologies English is the only (spoken) language I know I will try to speak clearly, but if I am moving too quickly, or too slowly, please make some kind of sign,

More information

Lab # 7. Extending XPage applications to use the XPages Social Enabler Toolkit

Lab # 7. Extending XPage applications to use the XPages Social Enabler Toolkit IBM Social Business Solutions Development Lab Lab # 7 Extending XPage applications to use the XPages Social Enabler Toolkit Part 4. Configure application to access Sametime and show LiveName 1 Introduction:

More information

International SOS e-learning Training Hub User Guide

International SOS e-learning Training Hub User Guide International SOS e-learning Training Hub User Guide WELCOME TO THE INTERNATIONAL SOS TRAINING HUB.... 2 STEP 1. ACCESSING THE INTERNATIONAL SOS TRAINING HUB... 2 STEP 2. LOGGING INTO INTERNATIONAL SOS

More information

Replicator. Enterprise API Guide VERSION January 04,

Replicator. Enterprise API Guide VERSION January 04, Replicator Enterprise API Guide VERSION 7.4.0 January 04, 2018 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH, 2002-2018. All rights reserved. No part or section of the

More information

Applied Cognitive Computing Fall 2016 Android Application + IBM Bluemix (Cloudant NoSQL DB)

Applied Cognitive Computing Fall 2016 Android Application + IBM Bluemix (Cloudant NoSQL DB) Applied Cognitive Computing Fall 2016 Android Application + IBM Bluemix (Cloudant NoSQL DB) In this exercise, we will create a simple Android application that uses IBM Bluemix Cloudant NoSQL DB. The application

More information

Hitachi Converged Adapter 2.0 for Microsoft SCOM 2012 Administration Manual HCA for SCOM Administration Manual

Hitachi Converged Adapter 2.0 for Microsoft SCOM 2012 Administration Manual HCA for SCOM Administration Manual Hitachi Converged Adapter 2.0 for Microsoft SCOM 2012 Administration Manual MK-92UCP082-01 2014-2016 Hitachi Data Systems Corporation. All rights reserved. No part of this publication may be reproduced

More information

Steps to Access ESR Tool

Steps to Access ESR Tool Steps to Access ESR Tool 1. Register on the software support site (www.ibm.com/software/support) - Only register once - Use email address for IBM ID 2. Be added to an authorized caller list by a Site Technical

More information

Oracle. Field Service Cloud Using Android and ios Mobile Applications 18B

Oracle. Field Service Cloud Using Android and ios Mobile Applications 18B Oracle Field Service Cloud Using Android and ios Mobile Applications 18B Part Number: E94755-02 Copyright 2018, Oracle and/or its affiliates. All rights reserved Authors: The Field Service Cloud Information

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

After signing in, click on the grid icon and then click on Drive from the Google app menu.

After signing in, click on the grid icon and then click on Drive from the Google app menu. !!! A quick way to access Google Drive is to go to https://gmail.maine.edu and sign in using your!!! MaineStreet username and password. After signing in, click on the grid icon and then click on Drive

More information

Introduction Getting Started Checklist... 3 Install the software and register to use the App... 3 Learn to use the App... 3

Introduction Getting Started Checklist... 3 Install the software and register to use the App... 3 Learn to use the App... 3 Contents Introduction... 2 1 Getting Started Checklist... 3 Install the software and register to use the App... 3 Learn to use the App... 3 Sign in to the App to configure the Inventory Items and Containers/Bottles...

More information

Apache Directory Studio. User's Guide

Apache Directory Studio. User's Guide Apache Directory Studio User's Guide Apache Directory Studio: User's Guide Version 2.0.0.v20180908-M14 Copyright 2006-2018 Apache Software Foundation Licensed to the Apache Software Foundation (ASF) under

More information

Mascot Insight Installation and setup guide

Mascot Insight Installation and setup guide Mascot Insight Installation and setup guide System requirements These are the system requirements for a Mascot Insight server. On the client side, Mascot Insight can be accessed from most web browsers.

More information

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

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

More information

Java Training For Six Weeks

Java Training For Six Weeks Java Training For Six Weeks Java is a set of several computer software and specifications developed by Sun Microsystems, later acquired by Oracle Corporation that provides a system for developing application

More information

Web Applications and Database Connectivity using JDBC (Part II)

Web Applications and Database Connectivity using JDBC (Part II) Web Applications and Database Connectivity using JDBC (Part II) Advanced Topics in Java Khalid Azim Mughal khalid@ii.uib.no http://www.ii.uib.no/~khalid/atij/ Version date: 2007-02-08 ATIJ Web Applications

More information

If using Internet Explorer:

If using Internet Explorer: Using Citrix to access QFIS and other applications Citrix offers a secure way to access applications remotely at Queen s, including QFIS. The first time you use Citrix you will need to download and install

More information

Tutorial 1: Introduction to Globus Toolkit. John Watt, National e-science Centre

Tutorial 1: Introduction to Globus Toolkit. John Watt, National e-science Centre Tutorial 1: Introduction to Globus Toolkit John Watt, National e-science Centre National e-science Centre Kelvin Hub Opened May 2003 Kelvin Building Staff Technical Director Prof. Richard Sinnott 6 RAs

More information

Jakarta Struts: An MVC Framework

Jakarta Struts: An MVC Framework Jakarta Struts: An MVC Framework Overview, Installation, and Setup. Struts 1.2 Version. Core Servlets & JSP book: More Servlets & JSP book: www.moreservlets.com Servlet/JSP/Struts/JSF Training: courses.coreservlets.com

More information

Oracle Developer Day

Oracle Developer Day Oracle Developer Day Sponsored by: Session 2 Oracle Application Development Framework Speaker Speaker Title Page 1 1 Agenda Development Environment Expectations Challenges Oracle ADF Architecture Business

More information

Mopidy-Podcast Documentation

Mopidy-Podcast Documentation Mopidy-Podcast Documentation Release 2.0.3 Thomas Kemmer Jul 22, 2018 Contents 1 Installation 3 2 Configuration 5 2.1 Configuration Values........................................... 5 2.2 Default Configuration..........................................

More information

Accessing EJB in Web applications

Accessing EJB in Web applications Accessing EJB in Web applications 1. 2. 3. 4. Developing Web applications Accessing JDBC in Web applications To run this tutorial, as a minimum you will be required to have installed the following prerequisite

More information

Web Development with Java

Web Development with Java Web Development with Java Tim Downey Web Development with Java Using Hibernate, JSPs and Servlets Tim Downey, BS, MS Florida International University Miami, FL 33199, USA British Library Cataloguing in

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

Deployment Guide for Avaya Scopia Add-in for IBM Lotus Notes

Deployment Guide for Avaya Scopia Add-in for IBM Lotus Notes Deployment Guide for Avaya Scopia Add-in for IBM Lotus Notes For Solution 8.3 March 2014 2000-2014 Avaya Inc. All intellectual property rights in this publication are owned by Avaya Inc. and are protected

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

Requirement Document v1.1 WELCOME TO CANLOG.IN. API Help Document. Version SMS Integration Document

Requirement Document v1.1 WELCOME TO CANLOG.IN. API Help Document. Version SMS Integration Document WELCOME TO CANLOG.IN API Help Document Version 1.1 http://www.canlog.in SMS Integration Document Integration 1. Purpose SMS integration with Canlog enables you to notify your customers and agents via Text

More information

2018/2/5 话费券企业客户接入文档 语雀

2018/2/5 话费券企业客户接入文档 语雀 1 2 2 1 2 1 1 138999999999 2 1 2 https:lark.alipay.com/kaidi.hwf/hsz6gg/ppesyh#2.4-%e4%bc%81%e4%b8%9a%e5%ae%a2%e6%88%b7%e6%8e%a5%e6%94%b6%e5%85%85%e5 1/8 2 1 3 static IAcsClient client = null; public static

More information

Copyright Samsung Electronics Co., Ltd. All rights reserved.

Copyright Samsung Electronics Co., Ltd. All rights reserved. Contents Copyright 2014 Samsung Electronics Co., Ltd. All rights reserved. It is subject to Apache License, Version 2.0 (hereinafter referred to as the "License"). You may not use this file except in compliance

More information

Two WPS Portal Clones. Portal A

Two WPS Portal Clones. Portal A WCM Caching Issue Problem description: Content once authored(updated) on the WCM authoring server doesn t get updated on the remote rendering portlets which are placed on four WPS servers those are clustered

More information

TIBCO ActiveMatrix BPM SOA Development Tutorials

TIBCO ActiveMatrix BPM SOA Development Tutorials TIBCO ActiveMatrix BPM SOA Development Tutorials Software Release 4.1 May 2016 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED

More information

National Language Support for Windows NT and AIX Now Available with IBM WebSphere Application Server V3.0.1, Standard Edition

National Language Support for Windows NT and AIX Now Available with IBM WebSphere Application Server V3.0.1, Standard Edition Software Announcement November 16, 1999 National Language Support for Windows NT and AIX Now Available with IBM WebSphere Application Server V3.0.1, Standard Edition Overview WebSphere Application Server

More information

Testing Transactions BMT

Testing Transactions BMT Testing Transactions BMT Example testing-transactions-bmt can be browsed at https://github.com/apache/tomee/tree/master/examples/testing-transactions-bmt Shows how to begin, commit and rollback transactions

More information

Java Development and Grid Computing with the Globus Toolkit Version 3

Java Development and Grid Computing with the Globus Toolkit Version 3 Java Development and Grid Computing with the Globus Toolkit Version 3 Michael Brown IBM Linux Integration Center Austin, Texas Page 1 Session Introduction Who am I? mwbrown@us.ibm.com Team Leader for Americas

More information

The team that wrote this redbook

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

More information

Track 3 Session 5. IBM Notes Browser Plug-in:Leverage your IBM Notes Application investment in a Browser. Stefan Neth

Track 3 Session 5. IBM Notes Browser Plug-in:Leverage your IBM Notes Application investment in a Browser. Stefan Neth Track 3 Session 5 IBM Notes Browser Plug-in:Leverage your IBM Notes Application investment in a Browser Stefan Neth stefan.neth@de.ibm.com IBM Collaboration Solutions Client Technical Specialist 1 Please

More information

Topaz for Java Performance Installation Guide. Release 16.03

Topaz for Java Performance Installation Guide. Release 16.03 Topaz for Java Performance Installation Guide Release 16.03 ii Topaz for Java Performance Installation Guide Please direct questions about Topaz for Java Performance or comments on this document to: Topaz

More information

Servlets by Example. Joe Howse 7 June 2011

Servlets by Example. Joe Howse 7 June 2011 Servlets by Example Joe Howse 7 June 2011 What is a servlet? A servlet is a Java application that receives HTTP requests as input and generates HTTP responses as output. As the name implies, it runs on

More information

Fundamentals of IBM Lotus Domino Application Development

Fundamentals of IBM Lotus Domino Application Development Fundamentals of IBM Lotus Domino 8.5.1 Application Development Duration: 5 Days Course Code: D8L51G Overview: In this course, you will learn to create and modify database applications using IBM Lotus Domino

More information

User Manual. Copyright Thursby Software Systems, Inc. February 2015 Revision 4

User Manual. Copyright Thursby Software Systems, Inc. February 2015 Revision 4 PKard Reader User Manual Copyright 2012-2015 Thursby Software Systems, Inc. February 2015 Revision 4 Description PKard Reader (app) is a mobile web browser that enables smart card authentication. PKard

More information

The system is linked to our database so most elected official and department head information will be pre-populated.

The system is linked to our database so most elected official and department head information will be pre-populated. Event Management Presentation ISAC has built and is unveiling a new meeting registration system for both ISAC members and vendors this summer in preparation for its debut during the 2016 ISAC Fall School

More information

Orgnazition of This Part

Orgnazition of This Part Orgnazition of This Part Table of Contents Tutorial: Organization of This Part...1 Lesson 1: Starting JReport Enterprise Server and Viewing Reports...3 Introduction...3 Installing JReport Enterprise Server...3

More information

Copyright Samsung Electronics Co., Ltd. All rights reserved.

Copyright Samsung Electronics Co., Ltd. All rights reserved. CONTENTS Copyright 2014 Samsung Electronics Co., Ltd. All rights reserved. It is subject to Apache License, Version 2.0 (hereinafter referred to as the "License"). You may not use this file except in compliance

More information

Distributed Multitiered Application

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

More information

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

Oracle Fusion Middleware. 1 Oracle Team Productivity Center Server System Requirements. 2 Installing the Oracle Team Productivity Center Server

Oracle Fusion Middleware. 1 Oracle Team Productivity Center Server System Requirements. 2 Installing the Oracle Team Productivity Center Server Oracle Fusion Middleware Installation Guide for Oracle Team Productivity Center Server 11g Release 1 (11.1.1) E14156-05 June 2010 This document provides information on: Section 1, "Oracle Team Productivity

More information

Procedure for Connecting to OIL VPN

Procedure for Connecting to OIL VPN Procedure for Connecting to OIL VPN Contents Introduction... 1 Pre-requisites... 1 How to Connect to OIL VPN... 1 Access using Checkpoint remote access client... 2 Note for macos users... 6 Accessing using

More information

User Guide Part 2: More Details. March 2014

User Guide Part 2: More Details. March 2014 User Guide Part 2: More Details March 2014 Table of Contents Introduction... 3 More Details... 4 The Home Page... 4 Workflows... 5 Starting a Workflow... 5 Policy Life Cycle Workflows... 6 Start Review

More information

Bonita Open Solution. Introduction Tutorial. Version 5.9. Bonita User Experience. Process Administrator view End User view

Bonita Open Solution. Introduction Tutorial. Version 5.9. Bonita User Experience. Process Administrator view End User view Bonita Open Solution Version 5.9 Introduction Tutorial Bonita User Experience Process Administrator view End User view Contents Introduction...4 The aim of this Introduction tutorial... 4 Who will use

More information

Segment #10 Java Embedding

Segment #10 Java Embedding Segment #10 Java Embedding Problem/Use Case I have a Customer Entity Bean that allows me to retrieve a SSN based on an email id. How can I invoke that bean from within my BPEL process? BPEL call A BPEL

More information

Lync Create an Online Meeting

Lync Create an Online Meeting Lync 2010 - Create an Online Meeting Creating and Joining an Online Meeting After opening Outlook 2010, navigate to the Home tab and select New Items > Online Meeting You'll want to take a moment to make

More information

Fun facts about recursion

Fun facts about recursion Outline examples of recursion principles of recursion review: recursive linked list methods binary search more examples of recursion problem solving using recursion 1 Fun facts about recursion every loop

More information

CE212 Web Application Programming Part 3

CE212 Web Application Programming Part 3 CE212 Web Application Programming Part 3 30/01/2018 CE212 Part 4 1 Servlets 1 A servlet is a Java program running in a server engine containing methods that respond to requests from browsers by generating

More information

juddi Developer Guide

juddi Developer Guide juddi 3.0 - Developer Guide Developer Guide ASF-JUDDI-DEVGUIDE-16/04/09 Contents Table of Contents Contents... 2 About This Guide... 3 What This Guide Contains... 3 Audience... 3 Prerequisites... 3 Organization...

More information

Servlet Fudamentals. Celsina Bignoli

Servlet Fudamentals. Celsina Bignoli Servlet Fudamentals Celsina Bignoli bignolic@smccd.net What can you build with Servlets? Search Engines E-Commerce Applications Shopping Carts Product Catalogs Intranet Applications Groupware Applications:

More information

Configuring Proxy Settings. STEP 1: (Gathering Proxy Information) Windows

Configuring Proxy Settings. STEP 1: (Gathering Proxy Information) Windows This guide is provided to Elluminate Live! users to assist them to make a successful connection to an Elluminate Live! session through a proxy firewall. In some cases settings discussed in this document

More information

Getting started with UCC VirtualApp

Getting started with UCC VirtualApp UNIVERSITY COLLEGE CORK Getting started with UCC VirtualApp Information Services Procedure Version 1.1 Killian Cholbi The following document outlines the procedure that members of staff will follow to

More information

Contents Introduction... 5 Using Gateway API... 9 Using SampleRestAPI Security Troubleshooting Gateway API Legal Notices...

Contents Introduction... 5 Using Gateway API... 9 Using SampleRestAPI Security Troubleshooting Gateway API Legal Notices... Gateway API Programming Guide Version 17 July 2017 Contents Introduction... 5 Prerequisites for On-Premises... 5 REST Style Architecture... 5 Using Gateway API... 9 Sample Java Code that Invokes the API

More information

CSCI 136: Fundamentals of Computer Science II Keith Vertanen Copyright 2012

CSCI 136: Fundamentals of Computer Science II Keith Vertanen Copyright 2012 Web clients in Java CSCI 136: Fundamentals of Computer Science II Keith Vertanen Copyright 2012 The World Wide Web History Main components: URLs, HTTP Protocol, HTML Web support in Java Overview Connecting

More information

Windchill Workflow Tutorial. Release 7.0. November 2003

Windchill Workflow Tutorial. Release 7.0. November 2003 Windchill Workflow Tutorial Release 7.0 November 2003 Introduction This tutorial is designed to demonstrate the creation of a workflow process definition, the initiation of a process instances and the

More information

Perform Database Actions Using Java 8 Stream Syntax Instead of SQL. Emil Forslund Java Developer Speedment, Inc.

Perform Database Actions Using Java 8 Stream Syntax Instead of SQL. Emil Forslund Java Developer Speedment, Inc. Perform Database Actions Using Java 8 Stream Syntax Instead of SQL Emil Forslund Java Developer Speedment, Inc. About Me Emil Forslund Java Developer Speedment Palo Alto Age of Java Why Should You Need

More information

PowerShell-Module Documentation. Release docs

PowerShell-Module Documentation. Release docs PowerShell-Module Documentation Release docs December 29, 2016 User Documentation 1 Requirements 3 2 Installation 5 2.1 Option 1: Installer Script......................................... 5 2.2 Option

More information

CSE 336. Introduction to Programming. for Electronic Commerce. Why You Need CSE336

CSE 336. Introduction to Programming. for Electronic Commerce. Why You Need CSE336 CSE 336 Introduction to Programming for Electronic Commerce Why You Need CSE336 Concepts like bits and bytes, domain names, ISPs, IPAs, RPCs, P2P protocols, infinite loops, and cloud computing are strictly

More information

UIMA Simple Server User Guide

UIMA Simple Server User Guide UIMA Simple Server User Guide Written and maintained by the Apache UIMA Development Community Version 2.3.1 Copyright 2006, 2011 The Apache Software Foundation License and Disclaimer. The ASF licenses

More information

Polycom RealPresence Mobile for Android Phone

Polycom RealPresence Mobile for Android Phone Help 3.3 January 2015 3725-69926-004/A Polycom RealPresence Mobile for Android Phone Copyright 2015, Polycom, Inc. All rights reserved. No part of this document may be reproduced, translated into another

More information

Advanced Internet Technology Lab # 4 Servlets

Advanced Internet Technology Lab # 4 Servlets Faculty of Engineering Computer Engineering Department Islamic University of Gaza 2011 Advanced Internet Technology Lab # 4 Servlets Eng. Doaa Abu Jabal Advanced Internet Technology Lab # 4 Servlets Objective:

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved.

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 ADF Mobile The Data Layer 2 Mobile Device Device Services ADF Mobile Architecture Device Native Container HTML5 & JavaScript Presentation Phone Gap Native View ADF Mobile XML View ADF Controller Local

More information

SITE 2 SITE SYNC DOCUMENTATION. User Guide. User Guide Page 1

SITE 2 SITE SYNC DOCUMENTATION. User Guide. User Guide Page 1 SITE 2 SITE SYNC DOCUMENTATION User Guide User Guide Page 1 Important Notice reserves the right to make corrections, modifications, enhancements, improvements, and other changes to its products and services

More information

IBM A Assessment- Developing IBM Lotus Domino Applications- Advanced XPage.

IBM A Assessment- Developing IBM Lotus Domino Applications- Advanced XPage. IBM A2040-922 Assessment- Developing IBM Lotus Domino 8.5.2 Applications- Advanced XPage http://killexams.com/exam-detail/a2040-922 then set a breakpoint in the code and step through it to examine the

More information

Prototype 1.0 Specification

Prototype 1.0 Specification Prototype 1.0 Specification Javier Ramos Rodríguez Use Case View The prototype 1.0 will implement some basic functionality of the system to check if the technology used is the appropriate one to implement

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

Remote Desktop Services

Remote Desktop Services Remote Desktop Services AMERICAN INSTITUTES FOR RESEARCH AIR REMOTE DESKTOP SERVICES (RDS) GUIDE Overview Welcome to! can be accessed from a Windows computer, a Mac, and even a mobile device; such as an

More information

Oracle Enterprise Single Sign-on Logon Manager How-To: Configuring ESSO-LM Event Logging with Microsoft SQL Server 2005 Release

Oracle Enterprise Single Sign-on Logon Manager How-To: Configuring ESSO-LM Event Logging with Microsoft SQL Server 2005 Release Oracle Enterprise Single Sign-on Logon Manager How-To: Configuring ESSO-LM Event Logging with Microsoft SQL Server 2005 Release 11.1.1.5.0 21012-01 March 2011 Oracle Enterprise Single Sign-on Logon Manager

More information

Sametime Links 3.0 Toolkit

Sametime Links 3.0 Toolkit Sametime Links 3.0 Toolkit Community Services API Developer s Guide and Reference Disclaimer Copyright and Trademark Information THIS DOCUMENTATION IS PROVIDED FOR REFERENCE PURPOSES ONLY. WHILE EFFORTS

More information