TransformixTools Axelor Demo Project

Size: px
Start display at page:

Download "TransformixTools Axelor Demo Project"

Transcription

1 TransformixTools Axelor Demo Project Introduction... 2 ADK for Rapid Application Development... 3 Developer High Productivity... 3 Web and Mobile User Interfaces... 3 ADK and Reverse Engineering of Existing Databases... 4 About The Demo... 5 Steps... 7 Phase 1: Prerequisites... 7 Install Axelor Business Suite... 7 Configure the Prerequisites Phase 2: Command Line Demo Install Axelor Development Kit Install the starter demo files Axelor Module Generation with TransformixTools Execution Phase 3: Setup for Eclipse Development Eclipse server configuration Defining a new server Starting the server... 23

2 Introduction The Axelor platform is a rapid development framework for building business applications based on Java technology. It is easy to learn, customizable and saves critical time for complex applications. The application code is object-oriented, allowing you to use the standard Java APIs. The Axelor platform uses a model-driven development approach, wherein the core of your application specified in xml metafiles that model your business code. Axelor resolves these artifacts for you and implements the runtime in a combination of JAVA classes, Ajax and groovy scripts. This means that you can stay productive while maintaining a high level of encapsulation. The foundation of all Axelor applications is the Axelor Development Kit (ADK). The ADK an open source framework based on JPA entities + framework specific annotation to dynamical generate web based application. Figure 1 provides an overview of the overall architecture of the ADK. In short the ADK provides a framework in which the information sources on the far right side of the diagram are made available to the web and mobile clients on the far left as HTTP(S) and RESTful API web services. Internally, the web services are accessible /ws/ endpoints. Every web service returns JSON data to the client. There are several benefits to this architecture. Among those are; industry standard tools used in web and mobile clients can consume these services, the services can be combined and presented to the user as though they came from a single data source (mashups) and the ADK can be used as a toolset to integrate data from disparate and diverse sources. Figure 1 Axelor Development Kit Runtime Architecture Axelor applications fit together in a hierarchy as shown in Figure 2. An application consists of 1 or more modules and modules are defined in terms of domains, views and actions and some code where needed and if needed. The domains, views and actions are specified in XML files. Appendix A provides an example of a minimal Axelor application all specified without any code.

3 From the company Axelor s point of view, the primary function of the ADK is to facilitate the development of the Axelor Business Suite In this role, the design of the data, user interface modules and how the connect together is specified in XML and the actual implementation of the database is generated for you. That is, when building an Axelor application from scratch it is required that the database needed for the application does not already exists. Once the domains, views and actions are specified, the ADK generates a SCRUD application from these artifacts. As a result, with minimal specifications, application designers end up with a cloud ready web and mobile application within minutes of creating the specification. Of course, these applications are not yet production ready but they speed up development considerably. Axelor Business Suite The Axelor Business Suite is a business applications suite fully modular, user-friendly and scalable. Axelor distributes under its AGPL license its ERP Axelor Business Suite, written in JAVA. Applications include customer relationship management, sales, purchasing, stock, production, accounting, HR, document management, project management. It also includes a graphical process design tool (BPM). ADK for Rapid Application Development The Axelor Development Kit is an AJAX Java Framework for Rapid Application Development (RAD) of business web applications. In ADK developers write a combination of specifications in XML, plain Java with annotations and sometimes scripting in Groovy or JavaScript to build production applications in a surprisingly short amount of time. Developer High Productivity It is possible to build an application with the ADK by only specifying a description of the data (domain) and the views. ADK generates the needed HTML, JavaScript, CSS, SQL, etc needed for a SCRUD application. This means that the database logic and user interface are created with those few specifications. Moreover, developers can start building applications with ADK in a short amount of time. Web and Mobile User Interfaces The ADK produces applications with adaptive user interfaces. This means that mobile applications are automatically produced at the same time browser based applications are produced. Technologies Used in the ADK

4 Figure 2 - ADK Technologies ADK and Reverse Engineering of Existing Databases Transformix has adapted the ADK to work with existing databases. More specifically, TransformixTools are used to reverse engineer existing databases into Axelor Applications. TransformixTools4ADK is the tool that is used to generate an Axelor compatible data model (domains) and

5 corresponding views and actions needed to perform SCRUD operations on all of the tables and views that exists in the database. Moreover, the ADK contains the ability to generate eclipse based development structure that helps you build new ADK projects. This document describes a demo on how to create an Axelor Development Kit project based on an existing database and generate the Axelor artifacts based on an existing database using TransformixTools. About The Demo Figure 3 - ncar_users Database This demo takes the database shown in Figure 2 and generates a fully functional application shown in Figure 3 in less than 5 minutes clock time with about 30 seconds of developer effort. Once the environment has been setup, the developer simply enters cd c:\java_apps\axelor-projects\ncar_demo_proj\ncar-demo\scripts.\scripts>build_db postgres Waits a few seconds until the demo database is built..\scripts>re_dbtoaxelor.bat Waits a few seconds until the Axelor module (domains, and views) are generated. cd C:\java_apps\axelor-projects\axelor-ncar.\axelor-ncar>axelor run :generatecode UP-TO-DATE :modules:ncar:generatecode UP-TO-DAT :modules:ncar:compilejava UP-TO-DATE :modules:ncar:processresources UP-TO :modules:ncar:classes UP-TO-DATE :modules:ncar:jar UP-TO-DATE :compilejava UP-TO-DATE :compilegroovy UP-TO-DATE :processresources UP-TO-DATE :classes UP-TO-DATE :copywebapp UP-TO-DATE

6 :tomcatrun The Server is running at Waits a roughly 2-3 minutes until the application is generated Once this is done a login screen appears: Figure 4 - Axelor ncar login This is followed by a working application. Figure 5 - Ncar Demo Application Data Entry

7 There are several objectives in this demo: 1. It shows the power of Axelor Development Kit in that by only specifying the domains and views it can generate a web and mobile capable web and mobile application. 2. It shows how to build a fully functional SCRUD application from an existing database in 5 minutes or less. 3. It shows the steps required to set up an Axelor development environment. 4. It provide a preview of the Axelor Business Suite. 5. It shows Axelor integration with the Eclipse IDE. Steps In this demo we will describe a four step process that will result the creation of a SCRUD application from an existing PostgreSQL database. 1. Prerequisites 2. Command Line Build and Demo 3. IDE Development Environment In Phase 1, configure the workstation, install the database management system, PostgreSQL. Phase 2 installs the ADK and creates the demo database and generates the Axelor domains, views and actions and builds and launches the demo application using command line tools. Phase 3 shows how to integrate the generated application into the Eclipse IDE. There are two different paths that one can follow to perform the demo. They are: Option 1 Using the Axelor Business Suite (ABS) auto install installer. The ABS auto installer installs JAVA, PostgreSQL and Apache Tomcat in one simple install. This reduces the time and complexity of installing the prerequisites needed for running Axelor applications and has the added benefit of providing a set of Axelor Business Applications that can be used for additional future evaluation of Axelor capability. That is the option used in this document. Option 2 Installing prerequisites individually. Using this approach, JAVA, PostgreSQL must be installed and configured individually. These topics are covered extensively elsewhere and are therefore, not discussed in this document. Phase 1: Prerequisites In this phase we will install Axelor Business Suite using the Axelor auto installer and perform some minor configuration functions. Install Axelor Business Suite For those of you who would like to do a local install of Axelor, the easiest way to do it is with the auto install version of the application. There is one for Windows, Linux and OS/X. The main reason using this a

8 Figure 6 - Overview of steps for the demo

9 quick and easy way to install a local copy of Axelor is that the installer installs the Axelor dependencies along with Axelor Business Suite. For example, I installed ABS in c:\java_apps. C:\java_apps\Axelor Business Suite\opt. Note that the sub directories under opt are the Jdk JAVA development kit pgsql PostgreSQL tomcat Apache Tomcat application server The application simply installs and runs. You can find it here: Unfortunately, as of this writing only the French version of the auto installer is available. Still, English language users can make it work with a simple configuration change after install. After installation, you must logon and as the administrator, include the English language modules then restart ABS. Here are the steps: 1) Download and double click the axelor-business-suite-4.x.x-fr-windows-x64.exe file. 2) Choose English as the setup language 3) Select the ports to use. I like to use something other than the default 8080,8443,8009 and 8005 in order to avoid conflicts with other software that might already be installed on the computer. 4) Specify the database port to use. I use 5440 and Choose Import demo data

10 5) If the server does not start automatically, start it from the start menu. Look for Axelor Business Suite and pick Start Axelor Business Suite. The first time startup takes maybe minutes as it loads the database. 6) Log on to the server using: Login: admin Password: axadmin Note that the password will change when we configure the English language modules into ABS. Now the application will start but it is in French. Navigage to Administration/Gestion des modules/les Modules

11 7) In the list of modules to the right of the menu you will see that the English languages module has not been selected. Go on and select it. 8) Once you see the screen below you can log off, stop and then restart Axelor Business Suite.

12 9) Once you see the screen below you can log off, stop and then restart Axelor Business Suite. 10) The application will start and load the new modules with associated data. Load of database and new modules takes another 20 minutes. Note the password was changed by the installer. Login: admin Password: admin Configure the Prerequisites If you followed the instructions above you now have the following at c:\java_apps\axelorbusinesssuite\ opt ³ jdk -JAVA_HOME ³ ³ bin ³ ³ db ³ ³ ³ bin ³ ³ ³ lib ³ pgsql - PGHOME ³ ³ bin ³ ³ lib ³ ³ share ³ ³ contrib ³ ³ extension ³ ³ locale var lib ³ postgresql

13 ³ ³ data Configure the environment variables JAVA_HOME= c:\java_apps\axelorbusinesssuite\opt\jdk PGHOME= c:\java_apps\axelorbusinesssuite\opt\pgsql PATH=%JAVA_HOME%\bin;%PGHOME%\bin;%PATH% 11) Try the Axelor Business Suite Demo Phase 2: Command Line Demo In this phase we will install the Axelor Development Kit and the demo files and generate the demo application. The files you will need are at Unzip the axelor-projects.zip and you will see the following files: axelor-projects -- axelor-ncar `-- ncar_demo_proj -- adk `-- axelor-development-kit tgz -- demo-starter

14 `-- demo-starter.zip -- ncar-demo -- scripts `-- sql -- postgres_config -- pg_hba.conf `-- postgresql.conf `-- profile_info -- axelordev.sh `-- java.sh Place this entire structure at C:\java_apps\ forming c:\java_apps\axelor-projects. Install Axelor Development Kit At the time of this writing, this demo requires the use of a customized version of the Axelor Development Kit. The standard Axelor Development Kit does not allow the use of existing databases. The TransformixTools version does allow existing databases. Cd to c:\java_apps\axelor-projects\ncar_demo_proj\adk. Unzip axelor-development-kit tgz and produce axelor-development-kit Place this directory at C:\java_apps\axelor-development-kit-4.1.0opt/axelor-development-kit Set up system variable AXELOR_HOME that points to axelor-development-kit home. This is mandatory AXELOR_HOME=C:\java_apps\axelor-development-kit-4.1.0opt/axelor-development-kit PATH=%AXELOR_HOME%\bin:%PATH% Install the starter demo files Unzip demo-starter.zip and overlay the directory axelor-ncar. This contains the common files needed to support an Axelor module. It does not contain the module. We will generate that from the database. Axelor Module Generation with TransformixTools cd to c:\java_apps\axelor-projects\ncar_demo_proj\ncar_demo\scripts 1. Create the ncar_users database Build the demo database by running build_db.bat 1. Reverse Engineer the Database Generate the module for the demo application by running RE_DbToAxelor.bat. This step adds files to C:\java_apps\axelor-projects\ and overlays the axelor-ncar folder with modules that will define the application we need. This step also merges the starter project with the generated artifacts. Execution 2. Building and running the Application

15 cd c:\java_apps\axelor-projects\axelor-ncar$ axelor run Started Tomcat Server The Server is running at

16

17 Note: Place the file pgsql.cmd at c:\java_apps\axelorbusinesssuite\. Phase 3: Setup for Eclipse Development The application project can be imported in eclipse ide. In order to import the project, you first have to generate eclipse project files like this: $ cd /path/to/axelor-demo $./gradlew cleaneclipse eclipse This will generate eclipse project files for the application project and all it s submodules. It also generates an external tool launcher configuration to invoke code generation from Run External Tools. From the eclipse, import the projects using File Import General Existing Projects into Workspace menu. In the import project wizard check the Search for nested projects so that all the submodules are also imported. Whenever you made any changes like adding dependencies to some third-party library or adding new module you have to repeat these steps and refresh/reimport projects in eclipse. The application project is configured to be eclipse WTP compatible. Create a tomcat7 server, add the axelordemo module and run the server. You can use axelor shell utility or the included gradlew script to generate code or build the project from external terminal. In this case, always refresh eclipse workspace to see the updated source in eclipse.

18 Eclipse server configuration This is a guide to configure WTP to run and debug ApplicationA in Eclipse. Eclipse WebTools ( WTP ) provides support for a multitide of Java application servers, allowing among others deploy an application on the server directly from Eclipse. In the case of the platform, you can use WTP to start Tomcat (or your favorite server application) from Eclipse and thus observe the effects of changes without redeploying the application and debug the code. Defining a new server In the view Servers bottom of the screen, click the right mouse button, select New, and then clickserver. To see the view Servers : 1. In the Eclipse menu bar, click Window (Window), choose Show View (View view), then click Other... (Other...). 2. In the panel Show View (View view), expand Server, select Servers, then click OK. In the panel New server (New Server), ensure that Server's host name (Host Name Server) is set tolocalhost. Select Apache/Tomcat v7.0 Server as the server type. Make sure Server runtime environment is set to Apache Tomcat v7.0. Click Next (Next).

19 In the next window, specify the installation directory of the JRE and the application server. Select the installation folder Tomcat (eg tomcat /home/axelor/applications/apache). Click Next (Next).

20 In the next window, select the web project to add to the server. Click Finish (Finish).

21 The server that you specified should now appear in the view Servers Open the server with a double-click on Tomcat v7.0 Server at localhost. 1. Under Timeout, increase Start and Stop at 250s. 2. Under Server Options, uncheck auto reload module by default. 3. In the tab Modules in the table, open and uncheck enable Auto reloading.

22

23 The server is ready to be launched from the view Servers at the bottom of the screen. It may have to increase the memory allocated to the server: 1. Open the server with a double-click from the view Servers at the bottom of the screen. 2. Under General Information, clicuez under Open Lauch Configuration 3. In the tab Arguments, add in VM arguments, -Xms2048m -Xmx2048M - XX:PermSize=1024m -XX:MaxPermSize=1024m Starting the server In the tab Servers 1. Right click on Tomcat v7.0 Server at localhost and select Start (or Debug ) 2. Wait until Tomcat is started. 3. Launch the Internet browser:

24

Setting Up the Development Environment

Setting Up the Development Environment CHAPTER 5 Setting Up the Development Environment This chapter tells you how to prepare your development environment for building a ZK Ajax web application. You should follow these steps to set up an environment

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

vsphere Web Client SDK Documentation VMware vsphere Web Client SDK VMware ESXi vcenter Server 6.5.1

vsphere Web Client SDK Documentation VMware vsphere Web Client SDK VMware ESXi vcenter Server 6.5.1 vsphere Web Client SDK Documentation VMware vsphere Web Client SDK 6.5.1 VMware ESXi 6.5.1 vcenter Server 6.5.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

WFCE - Build and deployment. WFCE - Deployment to Installed Polarion. WFCE - Execution from Workspace. WFCE - Configuration.

WFCE - Build and deployment. WFCE - Deployment to Installed Polarion. WFCE - Execution from Workspace. WFCE - Configuration. Workflow function and condition Example WFCE - Introduction 1 WFCE - Java API Workspace preparation 1 WFCE - Creating project plugin 1 WFCE - Build and deployment 2 WFCE - Deployment to Installed Polarion

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

vsphere Client SDK Developer Guide 03 MAY 2018 VMware vsphere vsphere Client SDK

vsphere Client SDK Developer Guide 03 MAY 2018 VMware vsphere vsphere Client SDK vsphere Client SDK Developer Guide 03 MAY 2018 VMware vsphere vsphere Client SDK You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have

More information

GlobalForms v6.1 Installation Guide

GlobalForms v6.1 Installation Guide GlobalForms v6.1 Installation Guide 2015 Square 9 Softworks All rights Reserved The copyright for all material provided herein is held by Square 9 Softworks. None of the material may be copied, reproduced,

More information

i2b2 Workbench Developer s Guide: Eclipse Neon & i2b2 Source Code

i2b2 Workbench Developer s Guide: Eclipse Neon & i2b2 Source Code i2b2 Workbench Developer s Guide: Eclipse Neon & i2b2 Source Code About this guide Informatics for Integrating Biology and the Bedside (i2b2) began as one of the sponsored initiatives of the NIH Roadmap

More information

form layout - we will demonstrate how to add your own custom form extensions in to form layout

form layout - we will demonstrate how to add your own custom form extensions in to form layout Form Extension Example FEE - Introduction 1 FEE - Java API Workspace preparation 1 FEE - Creating project plugin 1 FEE - Deployment to Installed Polarion 1 FEE - Execution from Workspace 1 FEE - Configuration

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

Migrating vrealize Automation 6.2 to 7.1

Migrating vrealize Automation 6.2 to 7.1 Migrating vrealize Automation 6.2 to 7.1 vrealize Automation 7.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.

More information

Appendix A: Courseware setup

Appendix A: Courseware setup Training Course System Requirements This class requires the following minimal machine configuration: Single-Core CPU, 2Ghz+ 2GB RAM 5 GB Free hard disk space Microsoft Windows XP or Vista Firefox 3.x or

More information

SE - Deployment to Installed Polarion. SE - Execution from Workspace. SE - Configuration.

SE - Deployment to Installed Polarion. SE - Execution from Workspace. SE - Configuration. Servlet Example SE - Introduction 1 SE - Java API Workspace preparation 1 SE - Import of the example 1 SE - Hints to develop your own plug-in 1 SE - Deployment to Installed Polarion 4 SE - Execution from

More information

Effacts 4 Installation Guide

Effacts 4 Installation Guide Effacts 4 Installation Guide Contents 1. Introduction... 2 2. Prerequisites... 3 Server... 3 Database... 3 Document Location... 3 Data files... 3 Sending emails... 3 Downloading the software... 3 3. Upgrading

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.0 SP1.5 User Guide P/N 300 005 253 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All

More information

xcp Designer Preview Mode

xcp Designer Preview Mode White Paper Abstract This white paper explains the preview mode feature in xcp Designer and its use cases. It also covers the setup, configurations and troubleshooting tips. January 2015 Copyright 2015

More information

IBM Maximo Anywhere Version 7 Release 6. Planning, installation, and deployment IBM

IBM Maximo Anywhere Version 7 Release 6. Planning, installation, and deployment IBM IBM Maximo Anywhere Version 7 Release 6 Planning, installation, and deployment IBM Note Before using this information and the product it supports, read the information in Notices on page 65. This edition

More information

Composer Guide for JavaScript Development

Composer Guide for JavaScript Development IBM Initiate Master Data Service Version 10 Release 0 Composer Guide for JavaScript Development GI13-2630-00 IBM Initiate Master Data Service Version 10 Release 0 Composer Guide for JavaScript Development

More information

vsphere Client SDK Developer Guide 17 APR 2018 VMware vsphere 6.7 vsphere Client SDK 6.7

vsphere Client SDK Developer Guide 17 APR 2018 VMware vsphere 6.7 vsphere Client SDK 6.7 vsphere Client SDK Developer Guide 17 APR 2018 VMware vsphere 6.7 vsphere Client SDK 6.7 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you

More information

CSCI 201 Lab 1 Environment Setup

CSCI 201 Lab 1 Environment Setup CSCI 201 Lab 1 Environment Setup "The journey of a thousand miles begins with one step." - Lao Tzu Introduction This lab document will go over the steps to install and set up Eclipse, which is a Java integrated

More information

CHAPTER 6. Java Project Configuration

CHAPTER 6. Java Project Configuration CHAPTER 6 Java Project Configuration Eclipse includes features such as Content Assist and code templates that enhance rapid development and others that accelerate your navigation and learning of unfamiliar

More information

Optical Character Recognition. SDK Reference. Issue 04 Date

Optical Character Recognition. SDK Reference. Issue 04 Date Issue 04 Date 2018-09-12 Contents Contents 1 SDK Environment Setup...1 1.1 Applying for a Service...1 1.2 Obtaining the SDK... 1 1.3 Preparing a Java Development Environment... 1 1.4 Installing Eclipse

More information

Installing Fabric Manager

Installing Fabric Manager CHAPTER 3 Before installing Fabric Manager, make sure that the hardware setup and initial configuration using the CLI is completed. See Chapter 2, Initial Switch Configuration, for details. The Cisco Fabric

More information

Homework 9: Stock Search Android App with Facebook Post A Mobile Phone Exercise

Homework 9: Stock Search Android App with Facebook Post A Mobile Phone Exercise Homework 9: Stock Search Android App with Facebook Post A Mobile Phone Exercise 1. Objectives Ø Become familiar with Android Studio, Android App development and Facebook SDK for Android. Ø Build a good-looking

More information

What's New in ActiveVOS 7.1 Includes ActiveVOS 7.1.1

What's New in ActiveVOS 7.1 Includes ActiveVOS 7.1.1 What's New in ActiveVOS 7.1 Includes ActiveVOS 7.1.1 2010 Active Endpoints Inc. ActiveVOS is a trademark of Active Endpoints, Inc. All other company and product names are the property of their respective

More information

Oracle Banking Platform Collections

Oracle Banking Platform Collections Oracle Banking Platform Collections Customization Guide Release 2.6.0.2.0 E91250-01 October 2017 Oracle Banking Collections Customization Guide, Release 2.6.0.2.0 E91250-01 Copyright 2011, 2017, Oracle

More information

About This Guide... 5 Installing P6 Professional... 7 Database Client Software... 7 Oracle Database Client Software... 7

About This Guide... 5 Installing P6 Professional... 7 Database Client Software... 7 Oracle Database Client Software... 7 P6 Professional Installation and Configuration Guide (P6 EPPM) for On-Premises Version 17 August 2017 Contents About This Guide... 5 Installing P6 Professional... 7 Database Client Software... 7 Oracle

More information

Perceptive Process Enterprise - UNIX Installation Guide

Perceptive Process Enterprise - UNIX Installation Guide Perceptive Process Enterprise - UNIX Installation Guide 2013 Lexmark International Technology S.A. Date: 10/28/2013 Version: 3.0.2 Perceptive Software is a trademark of Lexmark International Technology

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

Import Data Connection to an SAP ERP System

Import Data Connection to an SAP ERP System Import Data Connection to an SAP ERP System SAP Analytics Cloud allows you to import data from supported versions SAP ERP Central Component. NOTE: It is recommended that the SAP Cloud Platform Cloud Connector

More information

Oracle Endeca Information Discovery Integrator

Oracle Endeca Information Discovery Integrator Oracle Endeca Information Discovery Integrator Integrator Version 3.0.0 Rev. A May 2013 Copyright and disclaimer Copyright 2003, 2013, Oracle and/or its affiliates. All rights reserved. Oracle and Java

More information

Installation Guide for the TITAN Designer and TITAN Executor for the Eclipse IDE

Installation Guide for the TITAN Designer and TITAN Executor for the Eclipse IDE INSTALLATION GUIDE 1 (13) Installation Guide for the TITAN Designer and TITAN Executor for the Eclipse IDE Abstract This document describes the detailed information of installing the TITAN Designer and

More information

Module 2 ADempiere Installation

Module 2 ADempiere Installation Module 2 ADempiere Installation By Kitti Upariphutthiphong Technical Consultant, ecosoft kittiu@gmail.com ADempiere ERP 1 2 Module Objectives Know how to get the latest version of ADempiere Understand

More information

How to Install (then Test) the NetBeans Bundle

How to Install (then Test) the NetBeans Bundle How to Install (then Test) the NetBeans Bundle Contents 1. OVERVIEW... 1 2. CHECK WHAT VERSION OF JAVA YOU HAVE... 2 3. INSTALL/UPDATE YOUR JAVA COMPILER... 2 4. INSTALL NETBEANS BUNDLE... 3 5. CREATE

More information

Migrating vrealize Automation 6.2 to 7.2

Migrating vrealize Automation 6.2 to 7.2 Migrating vrealize Automation 6.2 to 7.2 vrealize Automation 7.2 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.

More information

Getting Started with Eclipse/Java

Getting Started with Eclipse/Java Getting Started with Eclipse/Java Overview The Java programming language is based on the Java Virtual Machine. This is a piece of software that Java source code is run through to produce executables. The

More information

AutoVue Integration SDK & Sample Integration for Filesys DMS

AutoVue Integration SDK & Sample Integration for Filesys DMS AutoVue Integration SDK & Sample Integration for Filesys DMS Installation Guide AutoVue Integration SDK Contents INTRODUCTION...1 SYSTEM REQUIREMENTS...2 INSTALLATION PREREQUISITES...3 Download the Eclipse

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

IBM. IBM WebSphere Application Server Migration Toolkit. WebSphere Application Server. Version 9.0 Release

IBM. IBM WebSphere Application Server Migration Toolkit. WebSphere Application Server. Version 9.0 Release WebSphere Application Server IBM IBM WebSphere Application Server Migration Toolkit Version 9.0 Release 18.0.0.3 Contents Chapter 1. Overview......... 1 Chapter 2. What's new........ 5 Chapter 3. Support..........

More information

Getting started with Geomajas. Geomajas Developers and Geosparc

Getting started with Geomajas. Geomajas Developers and Geosparc Getting started with Geomajas Geomajas Developers and Geosparc Getting started with Geomajas by Geomajas Developers and Geosparc 1.12.0-SNAPSHOT Copyright 2010-2014 Geosparc nv Abstract Documentation for

More information

HP IDOL Site Admin. Software Version: Installation Guide

HP IDOL Site Admin. Software Version: Installation Guide HP IDOL Site Admin Software Version: 10.9 Installation Guide Document Release Date: March 2015 Software Release Date: March 2015 Legal Notices Warranty The only warranties for HP products and services

More information

Nova Bonita Workflow. Quick Start Guide. Nova BONITA WORKFLOW

Nova Bonita Workflow. Quick Start Guide. Nova BONITA WORKFLOW Nova Bonita Workflow Quick Start Guide Nova BONITA WORKFLOW Nova Bonita Workflow Quick Start Guide Nova Bonita (aka Bonita v4) Software September 2008 Table of Contents 2.1.1 Downloading the products...6

More information

Contents Installing P6 Professional... 5 Installing P6 Visualizer Only Unattended Setup for P6 Professional... 18

Contents Installing P6 Professional... 5 Installing P6 Visualizer Only Unattended Setup for P6 Professional... 18 P6 Professional Installation and Configuration Guide (P6 EPPM) 16 R1 July 2016 Contents Installing P6 Professional... 5 Database Client Software... 5 Oracle Database Client Software... 5 Configuring Client

More information

docalpha 5.0 Server Configuration Utility User Guide

docalpha 5.0 Server Configuration Utility User Guide docalpha 5.0 Server Configuration Utility User Guide Contents 1. docalpha Architecture Overview 3 1.1. docalpha Server Overview 3 2. Working with docalpha Server Configuration Utility 4 2.1. Starting docalpha

More information

Installing Design Room ONE

Installing Design Room ONE Installing Design Room ONE Design Room ONE consists of two components: 1. The Design Room ONE web server This is a Node JS server which uses a Mongo database. 2. The Design Room ONE Integration plugin

More information

PostgreSQL Installation - Install PostgreSQL

PostgreSQL Installation - Install PostgreSQL PostgreSQL 8.3.7 Installation - Install PostgreSQL 8.3.7-1 - Installation Directory = C:\Program Files (x86)\postgresql\8.3 Data Directory = C:\Program Files (x86)\postgresql\8.3\data You need to remove

More information

Living Systems Process Suite. Installation. Living Systems Process Suite Documentation. 3.1 Thu Nov

Living Systems Process Suite. Installation. Living Systems Process Suite Documentation. 3.1 Thu Nov Living Systems Process Suite Installation Living Systems Process Suite Documentation 3.1 Thu Nov 29 2018 Whitestein Technologies AG Hinterbergstrasse 20 CH-6330 Cham Tel +41 44-256-5000 Fax +41 44-256-5001

More information

HYPERION SYSTEM 9 BI+ GETTING STARTED GUIDE APPLICATION BUILDER J2EE RELEASE 9.2

HYPERION SYSTEM 9 BI+ GETTING STARTED GUIDE APPLICATION BUILDER J2EE RELEASE 9.2 HYPERION SYSTEM 9 BI+ APPLICATION BUILDER J2EE RELEASE 9.2 GETTING STARTED GUIDE Copyright 1998-2006 Hyperion Solutions Corporation. All rights reserved. Hyperion, the Hyperion H logo, and Hyperion s product

More information

Compiere 3.3 Installation Instructions Linux System - Oracle Database

Compiere 3.3 Installation Instructions Linux System - Oracle Database Compiere 3.3 Installation Instructions Linux System - Oracle Database Compiere Learning Services Division Copyright 2010 Consona ERP, inc. All rights reserved www.compiere.com Table of Contents Compiere

More information

SAS 9.2 Intelligence Platform. Web Application Administration Guide, Third Edition

SAS 9.2 Intelligence Platform. Web Application Administration Guide, Third Edition SAS 9.2 Intelligence Platform Web Application Administration Guide, Third Edition The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2010. SAS 9.2 Intelligence Platform:

More information

Java EE 7 is ready What to do next? Peter Doschkinow Senior Java Architect

Java EE 7 is ready What to do next? Peter Doschkinow Senior Java Architect Java EE 7 is ready What to do next? Peter Doschkinow Senior Java Architect The following is intended to outline our general product direction. It is intended for information purposes only, and may not

More information

Integra Codebase 4.2 SP1 Installation and Upgrade Guide

Integra Codebase 4.2 SP1 Installation and Upgrade Guide Integra Codebase 4.2 SP1 Installation and Upgrade Guide 2 Copyright and Trademark Copyright 2008 Oracle. All rights reserved. No part of this document may be reproduced, stored in a retrieval system, or

More information

Exercise 3.1 EGL-CE 1.0 and Tomcat 6.0

Exercise 3.1 EGL-CE 1.0 and Tomcat 6.0 Exercise 3.1 EGL-CE 1.0 and Tomcat 6.0 By Gilbert Herschberger (http://www.mindspring.com/~gchii/) Date Written : 6 April 2010 Goal In this exercise, we will download and install Apache Tomcat 6.0 (Tomcat)

More information

Contents Configuring P Creating the WebLogic Environment for P6... 7

Contents Configuring P Creating the WebLogic Environment for P6... 7 P6 and WebLogic Configuration Guide Release 8.4 September 2014 Contents Configuring P6... 5 Creating the WebLogic Environment for P6... 7 Prerequisites for P6 EPPM Configuration... 7 Uninstalling Previous

More information

Polarion Trial Installation 17.2

Polarion Trial Installation 17.2 SIEMENS Polarion Trial Installation 17.2 POL002 17.2 Contents About this guide...................................................... 1-1 Before you begin.....................................................

More information

Import Data Connection to an SAP BW System

Import Data Connection to an SAP BW System Import Data Connection to an SAP BW System SAP Analytics Cloud allows you to import data from an SAP BW System. You must connect to an SAP BW system, version 7.3x or higher release. NOTE: It is recommended

More information

Spring Web Services Tutorial With Example In

Spring Web Services Tutorial With Example In Spring Web Services Tutorial With Example In Eclipse Bottom Up In addition to creating a basic web service and client, the article goes a step further This article will be using the Eclipse IDE (Kepler),

More information

Developing Ajax Web Apps with GWT. Session I

Developing Ajax Web Apps with GWT. Session I Developing Ajax Web Apps with GWT Session I Contents Introduction Traditional Web RIAs Emergence of Ajax Ajax ( GWT ) Google Web Toolkit Installing and Setting up GWT in Eclipse The Project Structure Running

More information

Contents Prerequisites... 5 Installing Contract Management Web Services... 11

Contents Prerequisites... 5 Installing Contract Management Web Services... 11 Installing and Configuring Contract Management Web Services July 2014 Contents Prerequisites... 5 Base Contract Management Installation... 5 Java Runtime Environment Requirements... 5 Contract Management

More information

Aware IM Version 8.1 Installation Guide

Aware IM Version 8.1 Installation Guide Aware IM Version 8.1 Copyright 2002-2018 Awaresoft Pty Ltd CONTENTS 1 INSTALLATION UNDER WINDOWS OPERATING SYSTEM... 3 1.1 HARDWARE AND SOFTWARE REQUIREMENTS... 3 1.2 USING THE INSTALLATION PROGRAM...

More information

Exercise 1. Bluemix and the Cloud Foundry command-line interface (CLI)

Exercise 1. Bluemix and the Cloud Foundry command-line interface (CLI) V10.1 Student Exercises EXempty Exercise 1. Bluemix and the Cloud Foundry command-line interface (CLI) What this exercise is about In this exercise, you sign on to Bluemix and create an application. You

More information

Compiere 3.2 Installation Instructions Linux System - EnterpriseDB

Compiere 3.2 Installation Instructions Linux System - EnterpriseDB Compiere 3.2 Installation Instructions Linux System - EnterpriseDB Compiere Learning Services Division Copyright 2008 Compiere, inc. All rights reserved www.compiere.com Table of Contents Compiere ERP

More information

VERALAB TM. VeraLab TM Server Computer Lab Management Suite Installation and Upgrade Guide 8.3 for Microsoft Windows Standard and Enterprise Edition

VERALAB TM. VeraLab TM Server Computer Lab Management Suite Installation and Upgrade Guide 8.3 for Microsoft Windows Standard and Enterprise Edition VeraLab TM Server Computer Lab Management Suite Installation and Upgrade Guide 8.3 for Microsoft Windows Standard and Enterprise Edition August 2018 VERALAB TM VeraLab Server Installation Guide, 8.3 for

More information

Seam Tools Tutorial. Version: Final-SNAPSHOT

Seam Tools Tutorial. Version: Final-SNAPSHOT Seam Tools Tutorial Version: 4.2.0.Final-SNAPSHOT 1. Create a Seam Application... 1 1.1. Start Development Database... 1 2. 3. 4. 5. 1.2. Create and deploy Seam Web Project... 3 1.3. Start JBoss Application

More information

Perceptive Matching Engine

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

More information

App Studio 4.1 Deployment Guide

App Studio 4.1 Deployment Guide App Studio 4.1 Deployment Guide 2019-03-25 Table of Contents Deployment Guide............................................................................................. 1 Enable social and collaborative

More information

Unified Task List Developer Pack

Unified Task List Developer Pack Unified Task List Developer Pack About the Developer Pack The developer pack is provided to allow customization of the UTL set of portlets and deliver an easy mechanism of developing task processing portlets

More information

jmeter is an open source testing software. It is 100% pure Java application for load and performance testing.

jmeter is an open source testing software. It is 100% pure Java application for load and performance testing. i About the Tutorial jmeter is an open source testing software. It is 100% pure Java application for load and performance testing. jmeter is designed to cover various categories of tests such as load testing,

More information

Compiere 3.3 Installation Instructions Windows System - Oracle Database

Compiere 3.3 Installation Instructions Windows System - Oracle Database Compiere 3.3 Installation Instructions Windows System - Oracle Database Compiere Learning Services Division Copyright 2010 Consona ERP, inc. All rights reserved www.compiere.com Table of Contents Compiere

More information

TEMPO INSTALLATION I O A. Platform Independent Notes 1. Installing Tempo 3. Installing Tools for the Plugins 5. v0.2.

TEMPO INSTALLATION I O A. Platform Independent Notes 1. Installing Tempo 3. Installing Tools for the Plugins 5. v0.2. TEMPO INSTALLATION v0.2.2 (BETA) 2/7/2008 Platform Independent Notes 1 On Windows: 2 On Linux: 2 On OS X (Tiger 10.4.7 and later) 2 I O A Installing Tempo 3 Installing on Windows (Vista/XP/W2K) 3 Installing

More information

Release Date September 30, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA

Release Date September 30, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Adeptia Suite 5.0 Installation Guide Release Date September 30, 2009 Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Copyright Copyright 2000-2009 Adeptia, Inc. All rights reserved.

More information

Developing ASP.NET MVC 5 Web Applications

Developing ASP.NET MVC 5 Web Applications 20486C - Version: 1 23 February 2018 Developing ASP.NET MVC 5 Web Developing ASP.NET MVC 5 Web 20486C - Version: 1 5 days Course Description: In this course, students will learn to develop advanced ASP.NET

More information

Release Date April 9, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA

Release Date April 9, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Adeptia Suite 5.0 SP2 Installation Guide Release Date April 9, 2010 Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Copyright Copyright 2000-2009 Adeptia, Inc. All rights reserved. Trademarks

More information

Application prerequisites

Application prerequisites How to start developing Spark applications in Eclipse By Marko Bonaći In this article, you will learn to write Spark applications using Eclipse, the most widely used development environment for JVM-based

More information

LogicBlaze FUSE for WebSphere Application Server Community Edition Integration Guide

LogicBlaze FUSE for WebSphere Application Server Community Edition Integration Guide LogicBlaze FUSE for WebSphere Application Server Community Edition Integration Guide 07/06 Version 1.2 LogicBlaze FUSE for WebSphere Application Server Community Edition Integration Guide This document

More information

Legacy Metamorphosis. By Charles Finley, Transformix Computer Corporation

Legacy Metamorphosis. By Charles Finley, Transformix Computer Corporation Legacy Metamorphosis By Charles Finley, Transformix Computer Corporation Legacy Metamorphosis By Charles Finley, Transformix Computer Corporation Introduction A legacy application is any application based

More information

WA2056 Building HTML5 Based Mobile Web Sites. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1

WA2056 Building HTML5 Based Mobile Web Sites. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 WA2056 Building HTML5 Based Mobile Web Sites Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum

More information

Release Date October 12, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA

Release Date October 12, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Adeptia Suite 5.0 Installation Guide for Linux and Solaris Release Date October 12, 2009 Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Copyright Copyright 2000-2009 Adeptia, Inc. All

More information

SAS Profitability Management 1.3. Installation Instructions

SAS Profitability Management 1.3. Installation Instructions SAS Profitability Management 1.3 Installation Instructions Copyright Notice The correct bibliographic citation for this manual is as follows: SAS Institute Inc., SAS Profitability Management 1.3 Installation

More information

Lab 1: Getting Started with IBM Worklight Lab Exercise

Lab 1: Getting Started with IBM Worklight Lab Exercise Lab 1: Getting Started with IBM Worklight Lab Exercise Table of Contents 1. Getting Started with IBM Worklight... 3 1.1 Start Worklight Studio... 5 1.1.1 Start Worklight Studio... 6 1.2 Create new MyMemories

More information

P6 EPPM Installation and Configuration Guide for On-Premises

P6 EPPM Installation and Configuration Guide for On-Premises P6 EPPM Installation and Configuration Guide for On-Premises Version 17 January 2018 Contents About This Guide... 5 Prerequisites for P6 EPPM Configuration... 6 Minimum Hard Disk Space... 6 JDK Installation...

More information

Oracle Database Express Edition

Oracle Database Express Edition Oracle Database Express Edition Getting Started Guide 11g Release 2 (11.2) E18585-04 July 2011 Welcome to Oracle Database Express Edition (Oracle Database XE). This guide gets you quickly up and running

More information

'phred dist acd.tar.z'

'phred dist acd.tar.z' Phred is free for academic use but does require registration and for you to obtain a licence. Please visit http://www.phrap.org/consed/consed.html#howtoget and follow the instructions. A copy of the Phred

More information

Installation and Configuration Instructions. SAS Model Manager API. Overview

Installation and Configuration Instructions. SAS Model Manager API. Overview Installation and Configuration Instructions SAS Model Manager 2.1 This document is intended to guide an administrator through the pre-installation steps, the installation process, and post-installation

More information

P6 EPPM Installation and Configuration Guide

P6 EPPM Installation and Configuration Guide P6 EPPM Installation and Configuration Guide 16 R2 October 2016 Contents About Installing and Configuring P6 EPPM... 5 Prerequisites for P6 EPPM Configuration... 6 Minimum Hard Disk Space... 6 JDK Installation...

More information

Purpose. Why use Java? Installing the Software. Java

Purpose. Why use Java? Installing the Software. Java Purpose I am providing instructions for those that want to follow along the progress and missteps of Project BrainyCode. Going forward we will just refer to the project a JGG for Java Game Generator (I

More information

GoPrint Web Update Utility

GoPrint Web Update Utility GoPrint Web Update Utility Perquisites: Backing up the database and the GoPrint Lib and Bin directories. Important: Contact GoPrint Technical Support prior to downloading any Web Update to ensure system

More information

DSE Setup Guide for Oracle Databases

DSE Setup Guide for Oracle Databases DSE Setup Guide for Oracle Databases I. State Steps (Pre-DSE Installation and Setup): States will have to complete the following steps before installing and setting up DSE. 1. Create a new schema in the

More information

Introduction to Web Application Development Using JEE, Frameworks, Web Services and AJAX

Introduction to Web Application Development Using JEE, Frameworks, Web Services and AJAX Introduction to Web Application Development Using JEE, Frameworks, Web Services and AJAX Duration: 5 Days US Price: $2795 UK Price: 1,995 *Prices are subject to VAT CA Price: CDN$3,275 *Prices are subject

More information

Lotus Connections 2.5 Install

Lotus Connections 2.5 Install Copyright IBM Corporation All rights reserved Lotus Connections 2.5 Install Contact you local IBM Representative for more information IBM Corporation Page 1 of 108 The architecture used in this guide is

More information

Demo Framework. Author(s) : Maarten DANIELS Reviewed by :

Demo Framework. Author(s) : Maarten DANIELS Reviewed by : e-trustex Demo Framework Author(s) : Maarten DANIELS Reviewed by : Approved by : 1.00 version : Date: 24/11/2014 Document history Version Date Comment Modified pages 1.00 30/09/2012 Creation for e-trustex

More information

Load testing with WAPT: Quick Start Guide

Load testing with WAPT: Quick Start Guide Load testing with WAPT: Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. A brief insight is provided

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

Installing Design Room ONE

Installing Design Room ONE Installing Design Room ONE Design Room ONE consists of two components: 1. The Design Room ONE web server This is a Node JS server which uses a Mongo database. 2. The Design Room ONE Integration plugin

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

HPE IDOL Site Admin. Software Version: Installation Guide

HPE IDOL Site Admin. Software Version: Installation Guide HPE IDOL Site Admin Software Version: 11.3.0 Installation Guide Document Release Date: February 2017 Software Release Date: February 2017 Legal Notices Warranty The only warranties for Hewlett Packard

More information

This is a known issue (SVA-700) that will be resolved in a future release IMPORTANT NOTE CONCERNING A VBASE RESTORE ISSUE

This is a known issue (SVA-700) that will be resolved in a future release IMPORTANT NOTE CONCERNING A VBASE RESTORE ISSUE SureView Analytics 6.1.1 Release Notes ================================= --------- IMPORTANT NOTE REGARDING DOCUMENTATION --------- The Installation guides, Quick Start Guide, and Help for this release

More information

Installing and configuring an Android device emulator. EntwicklerCamp 2012

Installing and configuring an Android device emulator. EntwicklerCamp 2012 Installing and configuring an Android device emulator EntwicklerCamp 2012 Page 1 of 29 Table of Contents Lab objectives...3 Time estimate...3 Prerequisites...3 Getting started...3 Setting up the device

More information

TGWeb. Step 1: Installer Files Step 2: Installing JAVA Runtime Step 3: Installing Apache/Tomcat Step 4: MSSQL Setup Step 5: DBSelect Utility

TGWeb. Step 1: Installer Files Step 2: Installing JAVA Runtime Step 3: Installing Apache/Tomcat Step 4: MSSQL Setup Step 5: DBSelect Utility Web Step 1: Installer Files Step 2: Installing JAVA Runtime Step 3: Installing Apache/Tomcat Step 4: MSSQL Setup Step 5: DBSelect Utility Web Assumptions You have received an email with ftp links to the

More information

Quick KVM 1.1. User s Guide. ClearCube Technology, Inc.

Quick KVM 1.1. User s Guide. ClearCube Technology, Inc. Quick KVM 1.1 User s Guide ClearCube Technology, Inc. Copyright 2005, ClearCube Technology, Inc. All rights reserved. Under copyright laws, this publication may not be reproduced or transmitted in any

More information