White Paper: ELK stack configuration for OpenEdge BPM

Size: px
Start display at page:

Download "White Paper: ELK stack configuration for OpenEdge BPM"

Transcription

1 White Paper: ELK stack configuration for OpenEdge BPM

2

3 Copyright 2017 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress software products are copyrighted and all rights are reserved by Progress Software Corporation. The information in these materials is subject to change without notice, and Progress Software Corporation assumes no responsibility for any errors that may appear therein. The references in these materials to specific platforms supported are subject to change. Business Making Progress, Corticon, DataDirect (and design), DataDirect Cloud, DataDirect Connect, DataDirect Connect64, DataDirect XML Converters, DataDirect XQuery, Deliver More Than Expected, Icenium, Kendo UI, Making Software Work Together, NativeScript, OpenEdge, Powered by Progress, Progress, Progress Software Developers Network, Rollbase, SequeLink, Sitefinity (and Design), SpeedScript, Stylus Studio, TeamPulse, Telerik, Telerik (and Design), Test Studio, and WebSpeed are registered trademarks of Progress Software Corporation or one of its affiliates or subsidiaries in the U.S. and/or other countries. AccelEvent, Analytics360, AppsAlive, AppServer, Arcade, BravePoint, BusinessEdge, DataDirect Spy, DataDirect SupportLink, DevCraft, DigitalFactory, Fiddler, Future Proof, High Performance Integration, JustCode, JustDecompile, JustMock, JustTrace, OpenAccess, ProDataSet, Progress Arcade, Progress Profiles, Progress Results, Progress RFID, Progress Software, ProVision, PSE Pro, SectorAlliance, Sitefinity, SmartBrowser, SmartComponent, SmartDataBrowser, SmartDataObjects, SmartDataView, SmartDialog, SmartFolder, SmartFrame, SmartObjects, SmartPanel, SmartQuery, SmartViewer, SmartWindow, WebClient, and Who Makes Progress are trademarks or service marks of Progress Software Corporation and/or its subsidiaries or affiliates in the U.S. and other countries. Java is a registered trademark of Oracle and/or its affiliates. Any other marks contained herein may be trademarks of their respective owners. Please refer to the Release Notes applicable to the particular Progress product release for any third-party acknowledgements required to be provided in the documentation associated with the Progress product. The Release Notes can be found in the OpenEdge installation directory and online at: For the latest documentation updates see OpenEdge Product Documentation on Progress Communities: ( openedge-product-documentation-overview.aspx). June 2017 Last updated with new content: Release Updated: 2017/06/19 3

4 Copyright 4

5 Contents Table of Contents Chapter 1: Introduction...7 Supported versions...8 Chapter 2: Understanding OpenEdge BPM logging...9 Component specific logs...9 Container specific logs...10 Script debug logs...11 Adapter logs...11 External logs...11 Chapter 3: Configuring ELK stack for OpenEdge BPM...13 Prerequisites...14 FORMAT 1 (Component and Container specific logs)...14 FORMAT 2 (Adapter logs)...14 FORMAT 3 (AppServer logs)...14 Logstash configuration...15 Logstash input...15 Logstash filters...15 Logstash output...19 Exploring Elasticsearch with Kibana...19 Chapter 4: Use cases...25 Use case 1 (Tracking user login and logout events)...25 Use case 2 (Troubleshooting OpenEdge Adapter)

6 Contents 6

7 1 Introduction This document describes how to configure the ELK (Elasticsearch, Logstash, and Kibana) stack for optimizing log management in OpenEdge BPM. To gain better visibility and control of various logs scattered across different locations in different machines, ELK stack provides a scalable and real-time solutions to easily troubleshoot different failures. The ELK stack consists of three open source products: Elasticsearch A NoSQL database based on the Lucene search engine. Logstash A log pipeline tool that accepts inputs from various sources, executes different transformations, and exports the data to various targets (along with Elasticsearch). Kibana A visualization layer that works on top of Elasticsearch. 7

8 Chapter 1: Introduction The following figure shows the ELK stack flow for monitoring OpenEdge BPM and AppServer logs: Note: This document is not intended to provide complete information about ELK stack components. For more information about these components, refer to For details, see the following topics: Supported versions Supported versions The steps to configure the ELK stack in this document are specific to the following product versions and may not be applicable for other versions: Product OpenEdge Elasticsearch Logstash Kibana Supported versions (Latest version as of 5th June, 2017) You can download the latest version of ELK from 8

9 2 Understanding OpenEdge BPM logging OpenEdge BPM executes various business processes which involve different components of BPM and occasionally interacts with external systems, thereby generating many logs which help you to monitor and troubleshoot the runtime behavior of these processes. OpenEdge BPM logs are categorized based on their usage. For details, see the following topics: Component specific logs Container specific logs Script debug logs Adapter logs External logs Component specific logs Component specific logs help you to troubleshoot any issues specific to the BP Server and the deployed applications. 9

10 Chapter 2: Understanding OpenEdge BPM logging The following table describes the logs specific to each OpenEdge BPM Server component: Log file oebps.log bpserver.log dbconfigtool.log bpmportal.log bpmprocessstore.log bpmevents.log dms.log oebpswebsecurity.log mconsole.log bpmwebflow.log webservice.log distcache.log Description The root logger category of OpenEdge BPM components which contains logs from most of the components and other third-party libraries such as Spring, Axis, Apache tools, etc. Logs generated by BPM Process runtime component. Logs generated by Database Configuration Tool. Logs generated by BPM Web Portal. Logs generated by BPM Process Store component. Any failures of BPM Process Store are logged here. This primarily effects the historical process instance data from the Management tab of BPM Portal. Logs generated by BPM Events (BizPulse) engine. Any failures of BPM Events (BizPulse) rules are logged here. Logs generated by Document Management System. Logs generated by Web Security component of BPM Web Portal. Any exceptions from XSS/XSRF filters are logged here. Logs generated by Management Console table populator. Logs generated by BPM WebFlow (BizSolo) applications. Any issues with custom JSP tags with "bizsolo" prefix are logged here. Logs generated by BP Server Web Services deployed on Portal. Logs generated by distributed cache framework. Container specific logs Container specific logs allow you to inspect and troubleshoot sever container specific issues such as database transaction failures, JMS failures, servers failed to start, etc. These logs are available in the following locations: $DLC\oebpm\jboss\server\ejbServer\log $DLC\oebpm\jboss\server\portalServer\log 10

11 Script debug logs Script debug logs Script debug logs are generated when JSTools.writeLog() writes debug messages from pre and post scripts, and custom adapters to bpserver.log file. Adapter logs Adapter logs are generated during the execution of a Managed Adapter. They are appended to their respective log files, and are created with the adapter workstep name $OEBPS_HOME\ebmsapps\<PROCESS_NAME>\logs\<ADAPTER_WS_NAME>.log. External logs External logs are generated by third-party systems such as External WebServices, Corticon, OpenEdge AppServer, PASOE, etc. These must be inspected in case of any failure in their respective Managed Adapters configured in BPM. 11

12 Chapter 2: Understanding OpenEdge BPM logging 12

13 Configuring ELK stack for OpenEdge BPM 3 This section describes how to set up ELK stack to monitor various logs created by OpenEdge BPM. For details, see the following topics: Prerequisites Logstash configuration Exploring Elasticsearch with Kibana 13

14 Chapter 3: Configuring ELK stack for OpenEdge BPM Prerequisites Apply the configuration changes described in the following sections to OpenEdge BPM logs and other logs generated by external systems. FORMAT 1 (Component and Container specific logs) In the oebpslog.conf and oebpswebsecuritylog.conf files located in the $OEBPS_HOME\conf directory, consider the following: 1. Set the ConversionPattern attribute for every logger category to %d{iso8601 %p %c - %m%n. This gives a standard date format across all Component specific logs. For example: log4j.appender.<logger_category>.layout.conversionpattern=%d{iso8601 %p %c - %m%n. Where: %d{iso8601 yyyy-mm-dd<date format> %p Priority %c Component %m%n Message appended with platform specific line separator 2. Set the log level as required. For more information, refer to Business Process Portal Administrators Guide. FORMAT 2 (Adapter logs) Adapter logs have a fixed format and cannot be modified. For example: Mon May 29 14:41:32 IST 2017 [MESSAGE] [ #424] [44] Adapter invoked. FORMAT 3 (AppServer logs) Configure the log formats of the external systems to similar formats. Consider the example of the default bpsbroker1 log for OpenEdge Classic AppServer. This log has the following format: [2017/03/31@18:42: ] [3] [AdminServer] Reading environment from file: C:\Progress\OpenEdge\fathom.init.params 14

15 Logstash configuration Logstash configuration Logstash uses a configuration file which defines which log files to inspect (Logstash Input), how to parse different log formats (Logstash Filters), and the location of Elasticsearch database to post each log entry (Logstash Output). The following sections briefly describe how to configure Logstash specific to OpenEdge BPM logs. For more information about Logstash configuration, see Logstash input To analyze various logs from log files and identify which log files to inspect, use the file input plugin of Logstash to configure different log files. Consider the following example of the configuration of the file input: input { file { path => "$OEBPS_HOME/server/logs/*.log" start_position => "beginning" type => "oebpm_logs" codec => multiline { pattern => "^%{TIMESTAMP_ISO8601" negate => true what => "previous" Where: path Path to one or more files to inspect. type Attribute used to uniquely identify a group of log files. This can be used to apply filters specific to a type of logs. codec Encodes or decodes before the filters are applied to the log entry. In this example, multiline codec is used to differentiate multi-line log messages. By default, every new line in a log file is considered as a single log entry. Using multiline codec, any log message spanning across multiple lines is configured in a way that anything which does not start with a timestamp is considered as a part of previous log entry. Logstash filters Filters are a crucial part of Logstash configuration. The configuration must be able to parse the timestamp for each log entry appropriately which in turn allows you to run time-based queries on Elasticsearch using Kibana. 15

16 Chapter 3: Configuring ELK stack for OpenEdge BPM To parse different log formats, consider the following: 1. Logstash parses each log entry using GROK expressions. You must identify the different log formats you want to inspect, and then create a GROK expression for each one. 2. The following are three different GROK expressions provided for three different formats described in Prerequisites on page 14. a. GROK 1 for FORMAT 1 (Component and Container specific logs) %{TIMESTAMP_ISO8601:timestamp\s+%{LOGLEVEL:bpm_loglevel\s+%{WORD:bpm_category\s+%{GREEDYDATA b. GROK 2 for FORMAT 2 (Adapter logs) %{ADAPTER_LOG_DATEFORMAT:timestamp \[%{WORD:priority\] \[%{NOTSPACE:piName\] %{GREEDYDATA:message c. GROK 3 for FORMAT 3 (AppServer logs) \[%{BPSBROKER_TIMESTAMP:timestamp\]\s+%{GREEDYDATA 3. When you inspect various log files with different formats, you may find a non-standard (custom) date format. In such cases, add a custom GROK, specific to that format, to the <LOGSTASH_HOME>\vendor\bundle\jruby\1.9\gems\logstash-patterns-core-4.1.0\patterns\grok-patterns file. For example: For Mon May 29 14:41:32 IST 2017 date format, the custom GROK can be ADAPTER_LOG_DATEFORMAT %{DAY %{MONTH %{MONTHDAY %{HOUR:%{MINUTE:%{SECOND %{WORD %{YEAR For 2017/03/31@18:42: date format, the custom GROK can be BPSBROKER_TIMESTAMP %{YEAR/%{MONTHNUM/%{MONTHDAY@%{HOUR:%{MINUTE:%{SECOND\.\d{3%{ISO8601_TIMEZONE To create or verify your GROK expression, you can use the tool available at 4. When you have the appropriate GROK expression ready, add the grok section under the filer configuration as shown in the following code: 16

17 Logstash configuration filter { # filter for bpsbroker AppServer logs if [type] == "bpsbroker" { grok { match => { "message" => "\[%{BPSBROKER_TIMESTAMP:timestamp\]\s+%{GREEDYDATA" date { match => ["timestamp","yy/mm/dd@hh:mm:ss.sssz"] # filter for BPM Adapter logs else if [type] == "adapter_log" { grok { match => { "message" => "%{ADAPTER_LOG_DATEFORMAT:timestamp \[%{WORD:priority\] \[%{NOTSPACE:piName\] %{GREEDYDATA:message " date { match => ["timestamp", "yy/mm/dd@hh:mm:ss.sssz"] # filter for BPM component & container specific logs else { grok { match => { "message" => "%{TIMESTAMP_ISO8601:timestamp \s+%{loglevel:bpm_loglevel \s+%{bpm_log_category:bpm_category \s+%{greedydata" date { match => ["timestamp", "ISO8601"] 5. You must set the timestamp for each log entry before it is posted to Elasticsearch using the date plugin. 17

18 Chapter 3: Configuring ELK stack for OpenEdge BPM 6. Even when Logstash fails to parse a log entry using the given GROK expression, it is still included in the output with a _grokparsfailure tag appended to the Elasticsearch record. 7. Adapter logs for OpenEdge adapter contain logs from BPM and logs from 1PAdapters in the same file, where each log follows different formats. Following is an example of OpenEdge Adapter log entries with two different formats: Tue Jun 06 12:16:01 IST 2017 [MESSAGE] [WSAdapter#274] [189] Executing OE Managed Adapter Workstep Activity 1 Tue Jun 06 12:16:01 IST 2017 [-1] [WSAdapter#274] [189] Tue Jun 06 12:16:01 IST 2017 [TRACE] [WSAdapter#274] [189] Created OECafAdapter :16: [INFO][OEAdapter] Managed adapter running in BizLogic :16: [INFO][OECafAdapter] Invoking CAF adapter :16: [INFO][OECafAdapter] Using Cached CAF Context... Following is a sample filter to handle such scenarios: filter { grok { # Match different formats with their corresponding GROK expressions # An array of even numbered entries where each checked for a match, till a match found match => [ "message", "%{ADAPTER_LOG_DATEFORMAT:timestamp \s+\[%{notspace:priority\] \s+\[%{notspace:piname\] \s+\[%{notspace:threadid\] \s+%{greedydata", "message", "%{1PADAPTER_DATEFORMAT:timestamp \s+\[%{notspace:priority\]\[%{notspace:component\] \s+%{greedydata" ] # Three letter timezones are not supported by default, mutate with the ZZZ format # Otherwise the date parsing will be failed. mutate { gsub => ["timestamp", "IST", "+05:30"] # Parse timestamp for different date formats date { match => [ "timestamp", "E MMM dd HH:mm:ss ZZ yyyy", "yyyy-mm-dd HH:mm:ss.SSS" ] 18

19 Exploring Elasticsearch with Kibana Logstash output To define the location of Elasticsearch database for posting each log entry, consider the following: 1. The output configuration of Logstash defines the destination where the filtered log entries must be written. 2. Before configuring Elasticsearch output plugin, it is recommended to configure a file output for verifying if the input and filter sections are configured properly. output { file { path => "c:/temp/log-stash-all.json" 3. To launch Logstash with a specific configuration, save the Logstash configuration in the C:\Temp\oebpm-logstash.conf file and run this command: $LOGSTASH_HOME\bin>logstash -f C:\Temp\oebpm-logstash.conf 4. The filtered log entries from all the log files are stored in the log-stash-all.json file. Each entry has a JSON object which lists the source file, variables configured in GROK express, tags attaches, type, and timestamp. For a log entry, :51:28,155 INFO OEBPS - SQL script file <archiveschedulerdrop.sql> executed successfully the following JSON is generated: "Jun 02nd 2017, 1, _id: AVv3gTGX0oo0B9iv, _type: "oebpm_logs", bpm_category: "OEBPS", bpm_loglevel: "INFO", host: "nbhydskothuri10", message: "SQL script file <archiveschedulerdrop.sql> executed successfully", path: "C:/Progress/OpenEdge/oebpm/server/logs/oebps.log", type: "oebpm_logs", timestamp: "Jun 02nd 2017, 16:51:28.155" 5. When there is a failure during parsing, check for additional tags that get attached such as _grokparsefailure, _dateparsefailure, etc. in each entry. Also, check for field value which is a default timestamp for the output entry if the parsing is performed properly. Exploring Elasticsearch with Kibana Once the Logstash output is verified with the file output plugin and no errors are found, you can start other components of the stack Elasticsearch and Kibana. 19

20 Chapter 3: Configuring ELK stack for OpenEdge BPM Consider the following: 1. You can configure the Elasticsearch output plugin for posting the log entries to Elasticsearch only if no errors are found after writing the output to the file. 2. Before posting the log entries to Elasticsearch database, start elastic search ibn localhost with the following command: $ELASTICSEARCH_HOME\bin>elasticsearch This starts the Elasticsearch database on localhost at port Add the Elasticsearch output to Logstash configuration and re-launch Logstash. output { elasticsearch { hosts => ["localhost:9200"] index => "oebpm" Elasticsearch requires an index name (for example, oebpm) to group the incoming log entries together. If this is not specified, Logstash creates an index in the logstash-timestamp format. 4. Start Kibana using the following command: $KIBANA_HOME\bin>kibana This starts the Kibana server on localhost at port Open Kibana in your favorite web browser with URL 5. When you launch Kibana for the first time and if no indexes are created, the following configuration window appears: 20

21 Exploring Elasticsearch with Kibana 21

22 Chapter 3: Configuring ELK stack for OpenEdge BPM 6. If you already provided the index name as oebpm and it is created in Elasticsearch database successfully, Kibana detects it and enables other fields. 7. Click Create to start browsing the logs (Elasticsearch records) from the Discover page. 22

23 Exploring Elasticsearch with Kibana For more details about how to use Kibana interface, refer to 23

24 Chapter 3: Configuring ELK stack for OpenEdge BPM 24

25 4 Use cases For details, see the following topics: Use case 1 (Tracking user login and logout events) Use case 2 (Troubleshooting OpenEdge Adapter) Use case 1 (Tracking user login and logout events) This use case demonstrates how to audit BPM user login and logout events using custom GROK patterns to scan Business Process Portal logs. 1. Business Process Portal generates Audit Logs to inspect various process specific events, and you can inspect user login and logout events only by using these logs. 2. But now, you can query the login and logout event of BPM users using the Logstash configuration with the following GROK patterns: grok { match => { # temp_qstring is a placeholder for quoted strings "message" => "%{TIMESTAMP_ISO8601:timestamp \s+%{loglevel:bpm_loglevel \s+%{bpm_log_category:bpm_category \s+[^\"]*%{space(?:%{qs:temp_qstring)?%{space%{greedydata" if [bpm_category] == "Portal" { # Log patterns when a user logged in. if [message] =~ ".*dologin.*6119.*" { 25

26 Chapter 4: Use cases mutate { add_tag => "bpm_user_login" # Capture the quoted string in a field named bpm_user add_field => {"bpm_user" => "%{temp_qstring" else if [message] =~ ".*logoutuser.*6134.*" { mutate { add_tag => "bpm_user_logout" add_field => {"bpm_user" => "%{temp_qstring" mutate { # Drop the placeholder field temp_qstring remove_field => ["temp_qstring"] gsub => ["bpm_user", "\"", ""] 3. When the configuration is successfully parsed and posted to Elasticsearch, you can run the following queries from Kibana: bpm_category:"portal" AND (tags:"bpm_user_login" OR tags:"bpm_user_logout") 26

27 Use case 1 (Tracking user login and logout events) 4. The query lists all the BPM user s login and logout events with time stamps. Further, to query the details for a user, run the following query including the user specific condition: bpm_category:"portal" AND (tags:"bpm_user_login" OR tags:"bpm_user_logout") AND bpm_user:"skothuri" 27

28 Chapter 4: Use cases Use case 2 (Troubleshooting OpenEdge Adapter) This use case demonstrates how the ELK setup helps you to identify the root cause of an OEAdapter failure using time-based filtering and custom queries. 1. Consider an OEAdapter workstep which is suspended due to an unknown internal error. 2. In the Home module of Business Process Portal, click My Instances > Process Status Viewer > Audit History. 3. Note the time stamp when the OEAdapter workstep is activated. In this example, the time stamp is 12th June 12, :31 PM as shown in the following figure: 4. Navigate to Kibana s Discover page and perform the following: a) Using BPM audit logs, you can observe that the adapter has been activated and suspended at :31. Set the time filter based on the time frame starting from :31:00 to a small buffer till 17:32:59:

29 Use case 2 (Troubleshooting OpenEdge Adapter) b) In the query field, available at the bottom of the page, query using the type, tags, and fields to filter the logs for more specific components. In this example, the query type:"oe_adapter_log" AND priority:"error" AND tags:"abl_runtime_error" searches for OEAdapter logs with loglevel set to ERROR and has a tag abl_runtime_error. This query checks if there is a failure when the AppServer executes the ABL procedure. For more details, refer to the sample Logstash configuration available at 5. If you find that there are entries tagged as abl_runtime_error, check the OpenEdge AppServer broker logs for BPM (bpsbroker1). 6. To get the bpsbroker logs for the specified time frame, run the following query in the query field: 29

30 Chapter 4: Use cases 7. As you browse through the 16 log entries, you can locate an application log which reads Input received as ERROR logged from a procedure MutateInput.p at line no. 22 (as it is programmed in ABL procedure). 30

White Paper: Supporting Java Style Comments in ABLDoc

White Paper: Supporting Java Style Comments in ABLDoc White Paper: Supporting Java Style Comments in ABLDoc Notices 2015 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress software products

More information

Progress DataDirect for ODBC for Apache Cassandra Driver

Progress DataDirect for ODBC for Apache Cassandra Driver Progress DataDirect for ODBC for Apache Cassandra Driver Quick Start for Windows Release 8.0.0 Copyright 2017 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.

More information

White Paper: Addressing POODLE Security Vulnerability and SHA 2 Support in Progress OpenEdge in 10.2B08

White Paper: Addressing POODLE Security Vulnerability and SHA 2 Support in Progress OpenEdge in 10.2B08 White Paper: Addressing POODLE Security Vulnerability and SHA 2 Support in Progress OpenEdge in 10.2B08 Table of Contents Copyright...5 Chapter 1: Introduction...7 About POODLE vulnerability...7 Chapter

More information

Using update to install a Corticon Studio

Using update to install a Corticon Studio Using update to install a Corticon Studio Notices Copyright agreement 2013 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress software

More information

Progress DataDirect for ODBC for Apache Hive Wire Protocol Driver

Progress DataDirect for ODBC for Apache Hive Wire Protocol Driver Progress DataDirect for ODBC for Apache Hive Wire Protocol Driver Quick Start for UNIX/Linux Release 8.0.0 Copyright 2017 Progress Software Corporation and/or one of its subsidiaries or affiliates. All

More information

Corticon Server: Web Console Guide

Corticon Server: Web Console Guide Corticon Server: Web Console Guide Notices Copyright agreement 2016 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. These materials and all Progress software

More information

Corticon Server: Web Console Guide

Corticon Server: Web Console Guide Corticon Server: Web Console Guide Notices Copyright agreement 2015 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress software

More information

Corticon Server: Web Console Guide

Corticon Server: Web Console Guide Corticon Server: Web Console Guide Copyright 2018 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. These materials and all Progress software products are

More information

The Progress DataDirect for

The Progress DataDirect for The Progress DataDirect for ODBC for SQL Server Wire Protocol Driver Quick Start for Windows Release 8.0.2 Copyright 2018 Progress Software Corporation and/or one of its subsidiaries or affiliates. All

More information

White Paper: Addressing POODLE vulnerability and SHA2 support in Progress OpenEdge HF

White Paper: Addressing POODLE vulnerability and SHA2 support in Progress OpenEdge HF White Paper: Addressing POODLE vulnerability and SHA2 support in Progress OpenEdge 11.5.1 HF Notices 2015 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These

More information

DataDirect Cloud Distribution Guide

DataDirect Cloud Distribution Guide DataDirect Cloud Distribution Guide August 2014 Notices For details, see the following topics: Copyright Copyright 2014 Progress Software Corporation and/or its subsidiaries or affiliates. All rights

More information

Progress DataDirect Hybrid Data Pipeline

Progress DataDirect Hybrid Data Pipeline Progress DataDirect Hybrid Data Pipeline Installation Guide Release 4.3 Copyright 2018 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. These materials

More information

The Progress DataDirect for

The Progress DataDirect for The Progress DataDirect for ODBC for Apache Hive Wire Protocol Driver Quick Start for Windows Release 8.0.1 Copyright 2018 Progress Software Corporation and/or one of its subsidiaries or affiliates. All

More information

Corticon Installation Guide

Corticon Installation Guide Corticon Installation Guide Notices Copyright agreement 2015 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress software products

More information

Corticon Studio: Quick Reference Guide

Corticon Studio: Quick Reference Guide Corticon Studio: Quick Reference Guide Notices Copyright agreement 2016 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. These materials and all Progress

More information

Corticon. Installation Guide

Corticon. Installation Guide Corticon Installation Guide Copyright 2017 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. These materials and all Progress software products are copyrighted

More information

Progress DataDirect Connect Series for JDBC Installation Guide

Progress DataDirect Connect Series for JDBC Installation Guide Progress DataDirect Connect Series for JDBC Installation Guide Release 5.1.4 Notices For details, see the following topics: Copyright Copyright 2016 Progress Software Corporation and/or one of its subsidiaries

More information

Progress Application Server for OpenEdge (PASOE) Spring security configuration

Progress Application Server for OpenEdge (PASOE) Spring security configuration Progress Application Server for OpenEdge (PASOE) Spring security configuration 2017 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. These materials and

More information

Guide to Creating Corticon Extensions

Guide to Creating Corticon Extensions Guide to Creating Corticon Extensions Notices Copyright agreement 2016 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. These materials and all Progress

More information

Corticon: Data Integration Guide

Corticon: Data Integration Guide Corticon: Data Integration Guide Copyright 2018 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. These materials and all Progress software products are

More information

The Progress DataDirect Autonomous REST Connector for JDBC

The Progress DataDirect Autonomous REST Connector for JDBC The Progress DataDirect Autonomous REST Connector for JDBC Quick Start for Using HTTP Header Authentication Release Copyright 2018 Progress Software Corporation and/or one of its subsidiaries or affiliates.

More information

Corticon. Installation Guide

Corticon. Installation Guide Corticon Installation Guide Copyright 2018 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. These materials and all Progress software products are copyrighted

More information

Progress DataDirect for ODBC Drivers. Installation Guide

Progress DataDirect for ODBC Drivers. Installation Guide Progress DataDirect for ODBC Drivers Installation Guide December 2017 Copyright 2017 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. These materials and

More information

OpenEdge : New Information. Service Pack

OpenEdge : New Information. Service Pack OpenEdge 11.7.2: New Information Service Pack Copyright 2017 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. These materials and all Progress software

More information

Corticon Migration Guide

Corticon Migration Guide Corticon Migration Guide Notices Copyright agreement 2014 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress software products are

More information

OpenEdge. Database Essentials. Getting Started:

OpenEdge. Database Essentials. Getting Started: OpenEdge Database Essentials Getting Started: Copyright 2017 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress software products

More information

Progress DataDirect for JDBC for Apache Hive Driver

Progress DataDirect for JDBC for Apache Hive Driver Progress DataDirect for JDBC for Apache Hive Driver Quick Start Release 6.0.1 Quick Start: Progress DataDirect for JDBC for Apache Hive Driver This quick start provides basic information that allows you

More information

Corticon EDC: Using Enterprise Data Connector

Corticon EDC: Using Enterprise Data Connector Corticon EDC: Using Enterprise Data Connector Notices Copyright agreement 2015 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress

More information

Corticon Studio: Quick Reference Guide

Corticon Studio: Quick Reference Guide Corticon Studio: Quick Reference Guide Notices Copyright agreement 2014 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress software

More information

OpenEdge : New Information. Service Pack

OpenEdge : New Information. Service Pack OpenEdge 11.7.3: New Information Service Pack Copyright 2018 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress software products

More information

Corticon Studio: Quick Reference Guide

Corticon Studio: Quick Reference Guide Corticon Studio: Quick Reference Guide Notices Copyright agreement 2013 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress software

More information

Corticon Studio: Rule Language Guide

Corticon Studio: Rule Language Guide Corticon Studio: Rule Language Guide Notices Copyright agreement 2015 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress software

More information

Corticon Studio: Rule Modeling Guide

Corticon Studio: Rule Modeling Guide Corticon Studio: Rule Modeling Guide Copyright 2018 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. These materials and all Progress software products

More information

Corticon Server: Deploying Web Services with.net

Corticon Server: Deploying Web Services with.net Corticon Server: Deploying Web Services with.net Notices Copyright agreement 2015 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress

More information

Corticon Server: Deploying Web Services with.net

Corticon Server: Deploying Web Services with.net Corticon Server: Deploying Web Services with.net Notices Copyright agreement 2016 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. These materials and all

More information

Corticon Server: Deploying Web Services with Java

Corticon Server: Deploying Web Services with Java Corticon Server: Deploying Web Services with Java Notices Copyright agreement 2015 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress

More information

Progress DataDirect for JDBC for Oracle Eloqua

Progress DataDirect for JDBC for Oracle Eloqua Progress DataDirect for JDBC for Oracle Eloqua User's Guide 6.0.0 Release Copyright 2017 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all

More information

Corticon Studio: Rule Language Guide

Corticon Studio: Rule Language Guide Corticon Studio: Rule Language Guide Notices Copyright agreement 2016 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. These materials and all Progress

More information

White Paper Version 1.0. Architect Preferences and Properties OpenEdge 10.2A

White Paper Version 1.0. Architect Preferences and Properties OpenEdge 10.2A White Paper Version 1.0 Architect Preferences and Properties OpenEdge 10.2A Architect Preferences and Properties 2009 Progress Software Corporation. All rights reserved. These materials and all Progress

More information

Corticon Extensions Guide

Corticon Extensions Guide Corticon Extensions Guide Copyright 2018 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. These materials and all Progress software products are copyrighted

More information

Java Browser User Guide

Java Browser User Guide Java Browser User Guide Release 6.1 February 2003 Release 6.1Copyright Java Browser User Guide ObjectStore Release 6.1 for all platforms, February 2003 2003 Progress Software Corporation. All rights reserved.

More information

What's New in Corticon

What's New in Corticon What's New in Corticon What s new and changed in Corticon 5.3.2 1 This chapter summarizes the new, enhanced, and changed features in Progress Corticon 5.3.2. Service Pack 2 includes the changes that were

More information

DataDirect Connect Series

DataDirect Connect Series DataDirect Connect Series for ODBC Installation Guide Release 7.1.6 Notices For details, see the following topics: Copyright Copyright 2016 Progress Software Corporation and/or one of its subsidiaries

More information

ARTIX PROGRESS. Using the Artix Library

ARTIX PROGRESS. Using the Artix Library ARTIX PROGRESS Using the Artix Library Version 5.6, May 2011 2011 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress software products

More information

Corticon Studio: Rule Modeling Guide

Corticon Studio: Rule Modeling Guide Corticon Studio: Rule Modeling Guide Notices For details, see the following topics: Copyright Copyright 2014 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These

More information

Progress DataDirect for ODBC for Oracle Wire Protocol Driver

Progress DataDirect for ODBC for Oracle Wire Protocol Driver Progress DataDirect for ODBC for Oracle Wire Protocol Driver User's Guide and Reference Release 8.0.2 Copyright 2017 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights

More information

Corticon Foundation User Guide

Corticon Foundation User Guide Corticon Foundation User Guide Notices Copyright agreement 2016 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. These materials and all Progress software

More information

Corticon Server: Deploying Web Services with Java

Corticon Server: Deploying Web Services with Java Corticon Server: Deploying Web Services with Java Notices Copyright agreement 2013 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress

More information

Progress DataDirect OpenAccess REST IP Generator User's Guide. Release 7.2

Progress DataDirect OpenAccess REST IP Generator User's Guide. Release 7.2 Progress DataDirect OpenAccess REST IP Generator User's Guide Release 7.2 Notices For details, see the following topics: Copyright Copyright 2014 Progress Software Corporation. All rights reserved. These

More information

Progress DataDirect. for ODBC for Apache Cassandra Driver. User's Guide and Reference. Release 8.0.0

Progress DataDirect. for ODBC for Apache Cassandra Driver. User's Guide and Reference. Release 8.0.0 Progress DataDirect for ODBC for Apache Cassandra Driver User's Guide and Reference Release 8.0.0 Copyright 2018 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights

More information

What's New in Corticon

What's New in Corticon What's New in Corticon What s new and changed in Corticon 5.3.3 1 This chapter summarizes the new, enhanced, and changed features in Progress Corticon 5.3.3. Service Pack 3 includes the changes that were

More information

Corticon Studio: Rule Language Guide

Corticon Studio: Rule Language Guide Corticon Studio: Rule Language Guide Notices Copyright agreement 2013 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress software

More information

Corticon Server: Integration & Deployment Guide

Corticon Server: Integration & Deployment Guide Corticon Server: Integration & Deployment Guide Notices Copyright agreement 2014 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress

More information

Corticon Studio: Installation Guide

Corticon Studio: Installation Guide Corticon Studio: Installation Guide Notices Copyright agreement 2013 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress software

More information

Corticon Migration Guide

Corticon Migration Guide Corticon Migration Guide Notices Copyright agreement 2013 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress software products are

More information

Corticon Server: Deploying Web Services with Java

Corticon Server: Deploying Web Services with Java Corticon Server: Deploying Web Services with Java Notices Copyright agreement 2014 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress

More information

Installing ObjectStore for Windows. Release 6.1 February 2003

Installing ObjectStore for Windows. Release 6.1 February 2003 Installing ObjectStore for Windows Release 6.1 February 2003 Copyright Installing ObjectStore for Windows ObjectStore Release 6.1 for all platforms, February 2003 2003 Progress Software Corporation. All

More information

Corticon Server: Integration & Deployment Guide

Corticon Server: Integration & Deployment Guide Corticon Server: Integration & Deployment Guide Notices Copyright agreement 2013 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress

More information

ARTIX PROGRESS. Getting Started with Artix

ARTIX PROGRESS. Getting Started with Artix ARTIX PROGRESS Getting Started with Artix Version 5.6, August 2011 2011 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all Progress software

More information

Webspeed. I am back. Enhanced WebSpeed

Webspeed. I am back. Enhanced WebSpeed Webspeed. I am back Enhanced WebSpeed OpenEdge 11.6 WebSpeed!!! Modernize your Progress OpenEdge web apps through enhanced Progress Application Server (PAS) support for WebSpeed Achieve improved performance

More information

The OpenEdge Application Modernization Framework. Mike Fechner, Director, Consultingwerk Ltd.

The OpenEdge Application Modernization Framework. Mike Fechner, Director, Consultingwerk Ltd. The OpenEdge Application Modernization Framework Mike Fechner, Director, Consultingwerk Ltd. mike.fechner@consultingwerk.de SmartComponent Library 2 Consultingwerk Ltd. Independent IT consulting organization

More information

PSE Pro for Java Release Notes. Release 7.1

PSE Pro for Java Release Notes. Release 7.1 PSE Pro for Java Release Notes Release 7.1 Copyright PSE Pro for Java Release Notes PSE Pro for Java Release 7.1 for all platforms, August 2008 2008 Progress Software Corporation. All rights reserved.

More information

Modernization and how to implement Digital Transformation. Jarmo Nieminen Sales Engineer, Principal

Modernization and how to implement Digital Transformation. Jarmo Nieminen Sales Engineer, Principal Modernization and how to implement Digital Transformation Jarmo Nieminen Sales Engineer, Principal jarmo.nieminen@progress.com 2 Reinvented 8000 years old tool...? Leveraxe!! 3 In this Digital Economy...

More information

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony MobileFabric TM Integration Service Admin Console User Guide On-Premises Release 7.3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and

More information

Progress DataDirect for

Progress DataDirect for Progress DataDirect for JDBC for Apache Cassandra User's Guide 6.0.0 Release Copyright 2018 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and

More information

The OpenEdge Application Modernization Framework. Mike Fechner, Director, Consultingwerk Ltd.

The OpenEdge Application Modernization Framework. Mike Fechner, Director, Consultingwerk Ltd. The OpenEdge Application Modernization Framework Mike Fechner, Director, Consultingwerk Ltd. mike.fechner@consultingwerk.de http://www.consultingwerk.de/ 2 Consultingwerk Ltd. Independent IT consulting

More information

Progress DataDirect: OpenAccess for OpenEdge Application Server

Progress DataDirect: OpenAccess for OpenEdge Application Server Progress DataDirect: OpenAccess for OpenEdge Application Server Notices For details, see the following topics: Copyright Copyright 2014 Progress Software Corporation and/or its subsidiaries or affiliates.

More information

Accessing the Progress OpenEdge AppServer. From Progress Rollbase. Using Object Script

Accessing the Progress OpenEdge AppServer. From Progress Rollbase. Using Object Script Accessing the Progress OpenEdge AppServer From Progress Rollbase Using Object Script Introduction Progress Rollbase provides a simple way to create a web-based, multi-tenanted and customizable application

More information

Leverage the Power of Progress Developer Studio for OpenEdge. 8 th Oct, 2013

Leverage the Power of Progress Developer Studio for OpenEdge. 8 th Oct, 2013 Leverage the Power of Progress Developer Studio for OpenEdge Srinivas Kantipudi Sr Manager 8 th Oct, 2013 Swathi Yellavaram Principal Engineer Agenda Brief Introduction to Eclipse and PDS for OpenEdge

More information

Java API User Guide. Release 6.1. February 2003

Java API User Guide. Release 6.1. February 2003 Java API User Guide Release 6.1 February 2003 Java API User Guide ObjectStore Release 6.1 for all platforms, February 2003 2003 Progress Software Corporation. All rights reserved. Progress software products

More information

Managing ObjectStore. Release 6.1 Service Pack 2

Managing ObjectStore. Release 6.1 Service Pack 2 Managing ObjectStore Release 6.1 Service Pack 2 Copyright Managing ObjectStore ObjectStore Release 6.1 Service Pack 2 for all platforms, March 2004 2004 Progress Software Corporation. All rights reserved.

More information

REST in Peace Mastering the JSDO with a Dynamic ABL backend. Mike Fechner, Consultingwerk Ltd.

REST in Peace Mastering the JSDO with a Dynamic ABL backend. Mike Fechner, Consultingwerk Ltd. REST in Peace Mastering the JSDO with a Dynamic ABL backend Mike Fechner, Consultingwerk Ltd. mike.fechner@consultingwerk.de http://www.consultingwerk.de/ 2 Consultingwerk Ltd. Independent IT consulting

More information

Wrangling Logs with Logstash and ElasticSearch

Wrangling Logs with Logstash and ElasticSearch Wrangling Logs with Logstash and ElasticSearch Nate Jones & David Castro Media Temple OSCON 2012 Why are we here? Size Quantity Efficiency Access Locality Method Filtering Grokability Noise Structure Metrics

More information

Tutorial: Deploying a Progress Corticon Decision Service as a Web Service for.net. Product Version: Corticon 5.6

Tutorial: Deploying a Progress Corticon Decision Service as a Web Service for.net. Product Version: Corticon 5.6 Tutorial: Deploying a Progress Corticon Decision Service as a Web Service for.net Product Version: Corticon 5.6 Introduction... 3 Setting up the tutorial... 4 Step 1: Installing Corticon Server for.net...

More information

Progress DataDirect for JDBC for SQL Server

Progress DataDirect for JDBC for SQL Server Progress DataDirect for JDBC for SQL Server User's Guide Release 6.0.0 Copyright 2018 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and all

More information

Building ObjectStore C++ Applications

Building ObjectStore C++ Applications Building ObjectStore C++ Applications Release 6.1 February 2003 Building ObjectStore C++ Applications ObjectStore Release 6.1 for all platforms, February 2003 2003 Progress Software Corporation. All rights

More information

Progress DataDirect for

Progress DataDirect for Progress DataDirect for JDBC for Salesforce Driver User's Guide Release 6.0.0 Copyright 2019 Progress Software Corporation and/or its subsidiaries or affiliates. All rights reserved. These materials and

More information

Are you visualizing your logfiles? Bastian Widmer

Are you visualizing your logfiles? Bastian Widmer Are you visualizing your logfiles? Bastian Widmer / @dasrecht Visualizing Logfiles with ELK Stack Bastian Widmer / @dasrecht Hola Com estàs? Bastian Widmer @dasrecht / bastianwidmer.ch DrupalCI: Modernizing

More information

Netwrix Auditor Add-on for Privileged User Monitoring

Netwrix Auditor Add-on for Privileged User Monitoring Netwrix Auditor Add-on for Privileged User Monitoring Quick-Start Guide Version: 9.6 5/8/2018 Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

What s New in OpenEdge 11.4?

What s New in OpenEdge 11.4? What s New in OpenEdge 11.4? Or, Why should I upgrade? Brian Bowman Principal Product Manager Progress Software Happy Birthday, OpenEdge! 2 Introducing Progress OpenEdge 11.4 Why Make the Move? Staying

More information

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony Fabric Integration Service Admin Console User Guide On-Premises Release V8 SP1 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the

More information

Application monitoring with BELK. Nishant Sahay, Sr. Architect Bhavani Ananth, Architect

Application monitoring with BELK. Nishant Sahay, Sr. Architect Bhavani Ananth, Architect Application monitoring with BELK Nishant Sahay, Sr. Architect Bhavani Ananth, Architect Why logs Business PoV Input Data Analytics User Interactions /Behavior End user Experience/ Improvements 2017 Wipro

More information

Managing System Administration Settings

Managing System Administration Settings This chapter contains the following sections: Setting up the Outgoing Mail Server, page 2 Working with Email Templates, page 2 Configuring System Parameters (Optional), page 5 Updating the License, page

More information

Forescout. Configuration Guide. Version 3.5

Forescout. Configuration Guide. Version 3.5 Forescout Version 3.5 Contact Information Forescout Technologies, Inc. 190 West Tasman Drive San Jose, CA 95134 USA https://www.forescout.com/support/ Toll-Free (US): 1.866.377.8771 Tel (Intl): 1.408.213.3191

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

AuditConfigurationArchiveandSoftwareManagementChanges (Network Audit)

AuditConfigurationArchiveandSoftwareManagementChanges (Network Audit) This section contains the following topics: Audit Configuration Archive and Software Management Changes (Network Audit), on page 1 Audit Changes Made By Users (Change Audit), on page 1 Audit Actions Executed

More information

About the Tutorial. Audience. Prerequisites. Copyright and Disclaimer. Logstash

About the Tutorial. Audience. Prerequisites. Copyright and Disclaimer. Logstash About the Tutorial is an open-source, centralized, events and logging manager. It is a part of the ELK (ElasticSearch,, Kibana) stack. In this tutorial, we will understand the basics of, its features,

More information

Mike Fechner Director

Mike Fechner Director Mike Fechner Director 2 3 Consultingwerk Software Services Ltd. Independent IT consulting organization Focusing on OpenEdge and related technology Located in Cologne, Germany, subsidiaries in UK and Romania

More information

SAS Job Monitor 2.2. About SAS Job Monitor. Overview. SAS Job Monitor for SAS Data Integration Studio

SAS Job Monitor 2.2. About SAS Job Monitor. Overview. SAS Job Monitor for SAS Data Integration Studio SAS Job Monitor 2.2 About SAS Job Monitor Overview SAS Job Monitor is a component of SAS Environment Manager that integrates information from SAS Data Integration Studio, DataFlux Data Management Server,

More information

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

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

Guided Exercise 1.1: Setting up the sample OpenEdge Data Object Services

Guided Exercise 1.1: Setting up the sample OpenEdge Data Object Services Guided Exercise 1.1: Setting up the sample OpenEdge Data Object Services Overview Before you can develop a web app, you must set up the back-end services for the data providers that the web app will use.

More information

Building Satellite Rollbase Applciation for an existing OpenEdge application

Building Satellite Rollbase Applciation for an existing OpenEdge application Building Satellite Rollbase Applciation for an existing OpenEdge application Authors: Ganesh Cherivirala Dr Ganesh Neelakanta Iyer 2016 Progress Software Corporation and/or its subsidiaries or affiliates.

More information

What s new in IBM Operational Decision Manager 8.9 Standard Edition

What s new in IBM Operational Decision Manager 8.9 Standard Edition What s new in IBM Operational Decision Manager 8.9 Standard Edition Release themes User empowerment in the Business Console Improved development and operations (DevOps) features Easier integration with

More information

SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide

SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide Copyright and Trademark Statements 2014 ViewSonic Computer Corp. All rights reserved. This document contains proprietary information that

More information

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

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

More information

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

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

More information

OpenEdge 11 Strategy & Roadmap. Jarmo Nieminen Senior Solution Engineer, Nordics

OpenEdge 11 Strategy & Roadmap. Jarmo Nieminen Senior Solution Engineer, Nordics OpenEdge 11 Strategy & Roadmap Jarmo Nieminen Senior Solution Engineer, Nordics OpenEdge Vision The leading integrated Application Platform for Simplifying Development and Deployment of Responsive Business

More information

TIBCO Jaspersoft running in AWS accessing a back office Oracle database via JDBC with Progress DataDirect Cloud.

TIBCO Jaspersoft running in AWS accessing a back office Oracle database via JDBC with Progress DataDirect Cloud. TIBCO Jaspersoft running in AWS accessing a back office Oracle database via JDBC with Progress DataDirect Cloud. This tutorial walks through the installation and configuration process to access data from

More information

Kendo UI. Builder by Progress : Using Kendo UI Designer

Kendo UI. Builder by Progress : Using Kendo UI Designer Kendo UI Builder by Progress : Using Kendo UI Designer Copyright 2017 Telerik AD. All rights reserved. December 2017 Last updated with new content: Version 2.1 Updated: 2017/12/22 3 Copyright 4 Contents

More information