Red Hat Data Grid 8.2 Data Grid Developer Guide

Total Page:16

File Type:pdf, Size:1020Kb

Red Hat Data Grid 8.2 Data Grid Developer Guide Red Hat Data Grid 8.2 Data Grid Developer Guide Customize, configure, and extend Data Grid Last Updated: 2021-09-21 Red Hat Data Grid 8.2 Data Grid Developer Guide Customize, configure, and extend Data Grid Legal Notice Copyright © 2021 Red Hat, Inc. The text of and illustrations in this document are licensed by Red Hat under a Creative Commons Attribution–Share Alike 3.0 Unported license ("CC-BY-SA"). An explanation of CC-BY-SA is available at http://creativecommons.org/licenses/by-sa/3.0/ . In accordance with CC-BY-SA, if you distribute this document or an adaptation of it, you must provide the URL for the original version. Red Hat, as the licensor of this document, waives the right to enforce, and agrees not to assert, Section 4d of CC-BY-SA to the fullest extent permitted by applicable law. Red Hat, Red Hat Enterprise Linux, the Shadowman logo, the Red Hat logo, JBoss, OpenShift, Fedora, the Infinity logo, and RHCE are trademarks of Red Hat, Inc., registered in the United States and other countries. Linux ® is the registered trademark of Linus Torvalds in the United States and other countries. Java ® is a registered trademark of Oracle and/or its affiliates. XFS ® is a trademark of Silicon Graphics International Corp. or its subsidiaries in the United States and/or other countries. MySQL ® is a registered trademark of MySQL AB in the United States, the European Union and other countries. Node.js ® is an official trademark of Joyent. Red Hat is not formally related to or endorsed by the official Joyent Node.js open source or commercial project. The OpenStack ® Word Mark and OpenStack logo are either registered trademarks/service marks or trademarks/service marks of the OpenStack Foundation, in the United States and other countries and are used with the OpenStack Foundation's permission. We are not affiliated with, endorsed or sponsored by the OpenStack Foundation, or the OpenStack community. All other trademarks are the property of their respective owners. Abstract Learn about Data Grid APIs, how to code your applications to use Data Grid capabilities, and how to customize Data Grid. Table of Contents Table of Contents .R .E . D. H. .A . T. D. .A . T. .A . .G . R. .I D. 6. .D . A. .T .A . .G . .R . I.D . .D . O. .C . .U . M. .E . N. .T . A. .T . I.O . .N . 7. .D . A. .T .A . .G . .R . I.D . .D . O. .W . .N . .L .O . .A . D. .S . 8. .M . A. .K . I.N . .G . .O . P. .E . N. S. .O . U. .R . C. .E . .M . .O . R. .E . .I N. .C . L. .U . S. .I V. .E . 9. .C . H. .A . P. .T .E . R. 1.. .C . O. N. .F . I.G . U. R. I. N. .G . .T . H. .E . .D . A. .T . A. G. .R . I.D . .M . .A . V. .E . N. R. .E .P . O. S. .I T. O. R. .Y . 1.0 . 1.1. DOWNLOADING THE DATA GRID MAVEN REPOSITORY 10 1.2. ADDING RED HAT MAVEN REPOSITORIES 10 1.3. CONFIGURING YOUR DATA GRID POM 11 .C . H. .A . P. .T .E . R. 2. C. .A . C. .H . .E . M. A. .N . A. .G . .E .R . S. 1. 2. 2.1. OBTAINING CACHES 12 2.2. CLUSTERING INFORMATION 13 2.3. MEMBER INFORMATION 13 .C . H. .A . P. .T .E . R. 3. C. A. .C . H. .E . .I N. .T . E. R. .F . A. .C . E. 1.4 . 3.1. CACHE API 14 3.1.1. Performance Concerns of Certain Map Methods 14 3.1.2. Mortal and Immortal Data 14 3.1.3. putForExternalRead operation 14 3.2. ADVANCEDCACHE API 15 3.2.1. Flags 15 3.3. LISTENERS AND NOTIFICATIONS 15 3.3.1. Cache-level notifications 16 3.3.1.1. Cluster Listeners 16 3.3.1.2. Event filtering and conversion 17 3.3.1.3. Initial State Events 17 3.3.1.4. Duplicate Events 18 3.3.2. Cache manager-level notifications 18 3.3.3. Synchronicity of events 18 3.3.3.1. Asynchronous thread pool 19 3.4. ASYNCHRONOUS API 19 3.4.1. Why use such an API? 19 3.4.2. Which processes actually happen asynchronously? 20 .C . H. .A . P. .T .E . R. 4. .Q . U. .E . R. .Y . I.N . G. .V . A. .L .U . E. .S . .I N. C. .A . C. .H . E. .S . 2. .1 . 4.1. CONFIGURING DATA GRID TO INDEX CACHES 21 4.1.1. Enabling Cache Indexing Programmatically 22 4.1.2. Index Annotations 22 4.1.3. Index Configuration 23 4.1.3.1. Index Storage 23 4.1.3.2. Index Reader 23 4.1.3.3. Index Writer 23 4.1.4. Rebuilding Indexes 26 4.2. CREATING ICKLE QUERIES 27 4.2.1. Ickle Query Example 27 Pagination 28 Number of Hits 28 Iteration 28 Named Query Parameters 28 1 Red Hat Data Grid 8.2 Data Grid Developer Guide 4.2.2. Ickle Query Language Parser Syntax 29 Filtering operators 29 Boolean conditions 30 Nested conditions 30 Selecting attributes 31 Sorting 31 Grouping and Aggregation 31 Aggregations 31 Evaluation of queries with grouping and aggregation 32 4.2.3. Using Full-Text Search 33 Fuzzy Queries 33 Range Queries 33 Phrase Queries 33 Proximity Queries 33 Wildcard Queries 33 Regular Expression Queries 33 Boosting Queries 33 4.3. EMBEDDED QUERIES 34 4.3.1. Embedded Query Example 34 4.3.2. Mapping Entities 35 @DocumentId 36 @Transformable keys 36 Programmatic mapping 37 4.4. REMOTE QUERIES 38 4.4.1. Remote Query Example 38 4.4.2. Registering Protobuf Schemas 40 4.4.3. Analysis 41 Default Analyzers 41 Using Analyzer Definitions 42 Creating Custom Analyzer Definitions 42 4.5. CONTINUOUS QUERIES 43 4.5.1. Continuous Query Execution 43 4.5.2. Creating Continuous Queries 44 4.5.3. Removing Continuous Queries 45 4.5.4. Continuous Query Performance 46 4.6. QUERY STATISTICS 46 4.7. QUERY PERFORMANCE TUNING 46 .C . H. .A . P. .T .E . R. 5. C. .L . U. .S . T. .E .R . E. .D . .L . O. .C . K. .S . .4 .8 . 5.1. LOCK API 48 5.2. USING CLUSTERED LOCKS 48 5.3. CONFIGURING INTERNAL CACHES FOR LOCKS 50 .C . H. .A . P. .T .E . R. 6. .C . L. U. .S . T. .E . R. E. .D . .C . O. U. .N . T. .E . R. .S . .5 . 2. 6.1. INSTALLATION AND CONFIGURATION 52 6.1.1. List counter names 54 6.2. COUNTERMANAGER INTERFACE 54 6.2.1. Remove a counter via CounterManager 55 6.3. THE COUNTER 55 6.3.1. The StrongCounter interface: when the consistency or bounds matters. 56 6.3.1.1. Bounded StrongCounter 57 6.3.1.2. Uses cases 57 6.3.1.3. Usage Examples 57 2 Table of Contents 6.3.2. The WeakCounter interface: when speed is needed 59 6.3.2.1. Weak Counter Interface 59 6.3.2.2. Uses cases 60 6.3.2.3. Examples 60 6.4. NOTIFICATIONS AND EVENTS 60 .C . H. .A . P. .T .E . R. 7. U. .S . I.N . .G . .T . H..
Recommended publications
  • Web Applicationapplication Architecturearchitecture && Structurestructure
    WebWeb ApplicationApplication ArchitectureArchitecture && StructureStructure SangSang ShinShin MichèleMichèle GarocheGaroche www.JPassion.comwww.JPassion.com ““LearnLearn withwith JPassion!”JPassion!” 1 Agenda ● Web application, components and Web container ● Technologies used in Web application ● Web application development and deployment steps ● Web Application Archive (*.WAR file) – *.WAR directory structure – WEB-INF subdirectory ● Configuring Web application – Web application deployment descriptor (web.xml file) 2 Web Application & Web Application & WebWeb ComponentsComponents && WebWeb ContainerContainer 3 Web Components & & Container Web Components Applet Applet JNDI Client App App Client App Container Browser Container Browser J2SE J2SE Client Client App App J2SE JMS RMI/IIOP HTTPS HTTPS HTTP/ HTTP/ HTTPS HTTPS HTTP/ JDBC HTTP/ JNDI JSP JMS JSP Web Web Container Web Web Container RMI J2SE RMI JTA JavaMail JAF Servlet Servlet RMI/IIOP JDBC RMI RMI JNDI JMS Database Database EJB Container EJB Container J2SE JTA EJB JavaMail EJB JAF RMI/IIOP 4 JDBC Web Components & Container ● Web components are in the form of either Servlet or JSP (JSP is converted into Servlet) ● Web components run in a Web container – Tomcat/Jetty are popular web containers – All J2EE compliant app servers (GlassFish, WebSphere, WebLogic, JBoss) provide web containers ● Web container provides system services to Web components – Request dispatching, security, and life cycle management 5 Web Application & Components ● Web Application is a deployable package – Web
    [Show full text]
  • Unix Programmer's Manual
    There is no warranty of merchantability nor any warranty of fitness for a particu!ar purpose nor any other warranty, either expressed or imp!ied, a’s to the accuracy of the enclosed m~=:crials or a~ Io ~helr ,~.ui~::~::.j!it’/ for ~ny p~rficu~ar pur~.~o~e. ~".-~--, ....-.re: " n~ I T~ ~hone Laaorator es 8ssumg$ no rO, p::::nS,-,,.:~:y ~or their use by the recipient. Furln=,, [: ’ La:::.c:,:e?o:,os ~:’urnes no ob~ja~tjon ~o furnish 6ny a~o,~,,..n~e at ~ny k:nd v,,hetsoever, or to furnish any additional jnformstjcn or documenta’tjon. UNIX PROGRAMMER’S MANUAL F~ifth ~ K. Thompson D. M. Ritchie June, 1974 Copyright:.©d972, 1973, 1974 Bell Telephone:Laboratories, Incorporated Copyright © 1972, 1973, 1974 Bell Telephone Laboratories, Incorporated This manual was set by a Graphic Systems photo- typesetter driven by the troff formatting program operating under the UNIX system. The text of the manual was prepared using the ed text editor. PREFACE to the Fifth Edition . The number of UNIX installations is now above 50, and many more are expected. None of these has exactly the same complement of hardware or software. Therefore, at any particular installa- tion, it is quite possible that this manual will give inappropriate information. The authors are grateful to L. L. Cherry, L. A. Dimino, R. C. Haight, S. C. Johnson, B. W. Ker- nighan, M. E. Lesk, and E. N. Pinson for their contributions to the system software, and to L. E. McMahon for software and for his contributions to this manual.
    [Show full text]
  • Forcepoint DLP Supported File Formats and Size Limits
    Forcepoint DLP Supported File Formats and Size Limits Supported File Formats and Size Limits | Forcepoint DLP | v8.8.1 This article provides a list of the file formats that can be analyzed by Forcepoint DLP, file formats from which content and meta data can be extracted, and the file size limits for network, endpoint, and discovery functions. See: ● Supported File Formats ● File Size Limits © 2021 Forcepoint LLC Supported File Formats Supported File Formats and Size Limits | Forcepoint DLP | v8.8.1 The following tables lists the file formats supported by Forcepoint DLP. File formats are in alphabetical order by format group. ● Archive For mats, page 3 ● Backup Formats, page 7 ● Business Intelligence (BI) and Analysis Formats, page 8 ● Computer-Aided Design Formats, page 9 ● Cryptography Formats, page 12 ● Database Formats, page 14 ● Desktop publishing formats, page 16 ● eBook/Audio book formats, page 17 ● Executable formats, page 18 ● Font formats, page 20 ● Graphics formats - general, page 21 ● Graphics formats - vector graphics, page 26 ● Library formats, page 29 ● Log formats, page 30 ● Mail formats, page 31 ● Multimedia formats, page 32 ● Object formats, page 37 ● Presentation formats, page 38 ● Project management formats, page 40 ● Spreadsheet formats, page 41 ● Text and markup formats, page 43 ● Word processing formats, page 45 ● Miscellaneous formats, page 53 Supported file formats are added and updated frequently. Key to support tables Symbol Description Y The format is supported N The format is not supported P Partial metadata
    [Show full text]
  • Jurisdictional Immunities
    646 JURISDICTIONAL IMMUNITIES William C. McAuliffe, Jr. The principle of exterritoriality sets question, namely how far this immun­ up exemption from the operation of ity extends.2 the laws of a state or the jurisdiction of its courts on the basis of a fiction In the same vein, Briggs notes: that certain locally situated foreign per­ The theory of exterritoriality of am­ ~ons and facilities should be deemed bassadors is based upon the fiction to 1)(' "outside" 1111' slale. Thus. the that an ambassador, residing in the principle is aelually a rational!' for State to which he is accredited, should a Sl't of immunities accorded f on·ign be treated for purposes of jurisdiction hrads of state temporarily prrsent, to as if he were not present. Ogdon traces this theory to the imperfect their retinues, diplomatic agents and development in the feudal period of members of their households, to con­ the concept of territorial, as opposed suls, and to foreign men-of-war and to personal, jurisdiction and the inor­ other public vessels in port.! dinate development of diplomatic priv­ ileges in the sixteenth century to The principle has been keenly crit­ cover the ambassador, his family, his icized. Brierly says: suite, his chancellery, his dwelling and, at times, even the quarter of the TIll' h'rnl "1'xlt'ITilllriniily" is 1:11111' foreign city in which he lived, all of mllniy used to descriiJe thc st~tus of a which were presumed in legal theory person or thing physically prcsent on a to be outside the jurisdiction of the statc's territory, iJut wholly or partly receiving State .• , , Modern theory withdrawn from the state's jilrisdiction overwhelmingly rejects the theory of by a rule of international law, but for exterritoriality as an explanation of many reasons it is an objectionablc the basis of diplomatic immunitic<.
    [Show full text]
  • Jar Cvf Command Example
    Jar Cvf Command Example Exosporal and elephantine Flemming always garottings puissantly and extruding his urinalysis. Tarzan still rabbet unsensibly while undevout Calhoun elapsed that motorcycles. Bela purchase her coccyx Whiggishly, unbecoming and pluvial. Thanks for newspaper article. Jar file to be created, logical volumes, supports portability. You might want but avoid compression, and archive unpacking. An unexpected error has occurred. Zip and the ZLIB compression format. It get be retained here demand a limited time recognize the convenience of our customers but it be removed in whole in paper at mine time. Create missing number of columns for our datatypes. Having your source files separate from your class files is pay for maintaining the source code in dummy source code control especially without cease to explicitly filter out the generated class files. Best practice thus not to censorship the default package for any production code. Java installation and directs the Jar files to something within the Java Runtime framework. Hide extensions for known file types. How trim I rectify this problem? Java releases become available. Have a glow or suggestion? On the command line, dress can snap a Java application directly from your JAR file. Canvas submission link extract the assignment. To prevent package name collisions, this option temporarily changes the pillar while processing files specified by the file operands. Next, but people a API defined by man else. The immediately two types of authentication is normally not allowed as much are less secure. Create EAR file from the command line. Path attribute bridge the main. Please respond your suggestions in total below comment section.
    [Show full text]
  • Developing and Deploying Java Applications Around SAS: What They Didn't Tell You in Class
    SUGI 29 Applications Development Paper 030-29 Developing and Deploying Java Applications Around SAS: What they didn't tell you in class Jeff Wright, ThotWave Technologies, Cary, NC Greg Barnes Nelson, ThotWave Technologies, Cary, NC ABSTRACT WHAT’S COVERED IN THIS PAPER Java is one of the most popular programming languages today. We cover a tremendous breadth of material in this paper. Before As its popularity continues to grow, SAS’ investment in moving we get started, here's the road map: many of their interfaces to Java promises to make it even more Java Web Application Concepts prevalent. Today more than ever, SAS programmers can take advantage of Java applications for exploiting SAS data and Client Tier analytic services. Many programmers that grew up on SAS are Web Tier finding their way to learning Java, either through formal or informal channels. As with most languages, Java is not merely a Analytics/Data Tier language, but an entire ecosystem of tools and technologies. How Can SAS and Java Be Used Together One of the biggest challenges in applying Java is the shift to the distributed n-tier architectures commonly employed for Java web Comparison of Strengths applications. Choosing an Option for Talking to SAS In this paper, we will focus on guiding the programmer with some SAS and Java Integration Details knowledge of both SAS and Java, through the complex Java Execution Models deployment steps necessary to put together a working web application. We will review the execution models for standard and SAS Service Details enterprise Java, covering virtual machines, application servers, Packaging, Building, and Deployment and the various archive files used in packaging Java code for deployment.
    [Show full text]
  • Code Insight Manage Open Source License Compliance & Security Vulnerabilities
    DATA SHEET KNOW WHAT’S IN YOUR CODE Code Insight Manage Open Source License Compliance & Security Vulnerabilities Key FlexNet Code Insight Facts Discover and Track All • Largest, most comprehensive open-source library with Open Source Software more than 14 million open source components FlexNet Code Insight scans your applications to identify • Detects components across hundreds of programming open source components in: languages, binary formats, and frameworks • Source code • Build dependencies • Secure on-premises application • Software packages • Docker images • Seamless integration with your development tools • Binaries • Multimedia files • Allows users to easily create third-party notices • Code snippets • Compliance library maps over 400,000 component versions to vulnerabilities The product also detects licenses, copyright, email/URLs • Patented scan technology for both source and binary files and custom search terms to find evidence of third-party • Efficiently scan as needed while tuning up/down the depth and commercial code.* and breadth of analysis You can adjust the depth and breadth of scan and analysis Today, developers are leveraging more than 50 percent of based on your project and risk profile. A quick scan helps Open Source Software (OSS) in their proprietary applications. you prioritize issues based on a high-level overview. Trigger That speeds up the time to market drives innovations and deep scans where necessary to create a detailed and revolutionizes the technology world. complete analysis. In this new environment, data breaches, compliance lawsuits, * Use custom library data to represent non-OSS third-party and commercial content in your Bill of Materials. and security vulnerabilities, are real concerns. FlexNet Code Insight is the end-to-end platform that enables your teams to manage your open source compliance and security needs.
    [Show full text]
  • Web Applications Developer's Guide
    Web Applications Developer’s Guide Innovation Release Version 10.0 April 2017 This document applies to webMethods Integration Server and Software AG Designer Version 10.0 and to all subsequent releases. Specifications contained herein are subject to change and these changes will be reported in subsequent release notes or new editions. Copyright © 2007-2017 Software AG, Darmstadt, Germany and/or Software AG USA Inc., Reston, VA, USA, and/or its subsidiaries and/or its affiliates and/or their licensors. The name Software AG and all Software AG product names are either trademarks or registered trademarks of Software AG and/or Software AG USA Inc. and/or its subsidiaries and/or its affiliates and/or their licensors. Other company and product names mentioned herein may be trademarks of their respective owners. Detailed information on trademarks and patents owned by Software AG and/or its subsidiaries is located at hp://softwareag.com/licenses. Use of this software is subject to adherence to Software AG's licensing conditions and terms. These terms are part of the product documentation, located at hp://softwareag.com/licenses and/or in the root installation directory of the licensed product(s). This software may include portions of third-party products. For third-party copyright notices, license terms, additional rights or restrictions, please refer to "License Texts, Copyright Notices and Disclaimers of Third Party Products". For certain specific third-party license restrictions, please refer to section E of the Legal Notices available under "License Terms and Conditions for Use of Software AG Products / Copyright and Trademark Notices of Software AG Products".
    [Show full text]
  • Installing an Actuate Java Component This Documentation Has Been Created for Software Version 11.0.5
    Installing an Actuate Java Component This documentation has been created for software version 11.0.5. It is also valid for subsequent software versions as long as no new document version is shipped with the product or is published at https://knowledge.opentext.com. Open Text Corporation 275 Frank Tompa Drive, Waterloo, Ontario, Canada, N2L 0A1 Tel: +1-519-888-7111 Toll Free Canada/USA: 1-800-499-6544 International: +800-4996-5440 Fax: +1-519-888-0677 Support: https://support.opentext.com For more information, visit https://www.opentext.com Copyright © 2017 Actuate. All Rights Reserved. Trademarks owned by Actuate “OpenText” is a trademark of Open Text. Disclaimer No Warranties and Limitation of Liability Every effort has been made to ensure the accuracy of the features and techniques presented in this publication. However, Open Text Corporation and its affiliates accept no responsibility and offer no warranty whether expressed or implied, for the accuracy of this publication. Document No. 170215-2-781510 February 15, 2017 Contents Introduction . .iii Understanding ActuateOne . .iii About Actuate Java Component documentation . iii Obtaining documentation . v Using PDF documentation . vi Obtaining late-breaking information and documentation updates . vi Obtaining technical support . vi About supported and obsolete products . vii Typographical conventions . vii Syntax conventions . vii About Installing an Actuate Java Component . .viii Chapter 1 Before you begin . 1 About Actuate Java Components . 2 About deployment formats . 2 Checking installation prerequisites . 3 About the license key file . 3 Chapter 2 Deploying a Java Component . 5 Setting web application parameters . 6 Configuring locale parameters . 7 Configuring parameters for Deployment Kit .
    [Show full text]
  • A Research UNIX Reader: Annotated Excerpts from the Programmer's
    AResearch UNIX Reader: Annotated Excerpts from the Programmer’sManual, 1971-1986 M. Douglas McIlroy ABSTRACT Selected pages from the nine research editions of the UNIX®Pro grammer’sManual illustrate the development of the system. Accompanying commentary recounts some of the needs, events, and individual contributions that shaped this evolution. 1. Introduction Since it beganatthe Computing Science Research Center of AT&T Bell Laboratories in 1969, the UNIX system has exploded in coverage, in geographic distribution and, alas, in bulk. It has brought great honor to the primary contributors, Ken Thompson and Dennis Ritchie, and has reflected respect upon many others who have built on their foundation. The story of howthe system came to be and howitgrewand prospered has been told manytimes, often embroidered almost into myth. Still, aficionados seem neverto tire of hearing about howthings were in that special circle where the system first flourished. This collection of excerpts from the nine editions of the research UNIX Programmer’sManual has been chosen to illustrate trends and some of the lively give-and-take—or at least the tangible results thereof—that shaped the system. It is a domestic study,aimed only at capturing the way things were in the system’soriginal home. To look further afield would require a tome, not a report, and possibly a more dis- passionate scholar,not an intimate participant. The rawreadings are supplemented by my own recollec- tions as corrected by the memories of colleagues. The collection emphasizes development up to the Seventh Edition (v7*) in 1979, providing only occasional peeks ahead to v8 and v9.
    [Show full text]
  • Planning, Installation, and Deployment
    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 71. This edition applies to version 7, release 6, modification 2 of IBM Maximo Anywhere and to all subsequent releases and modifications until otherwise indicated in new editions. © Copyright IBM Corporation 2013, 2017. US Government Users Restricted Rights – Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents Chapter 1. Planning to deploy Maximo Maximo Anywhere security groups in Maximo Anywhere .............. 1 Asset Management ........... 38 System requirements for Maximo Anywhere, Enabling Maximo Asset Management MobileFirst Server, and MobileFirst Studio .... 1 applications for maps and labor reporting ... 40 System architecture and components ...... 3 Maximo Asset Management system options that Deployment topologies ........... 6 affect mobile apps ........... 40 Development environment......... 7 Single-server deployment of Maximo Anywhere Chapter 3. Updating the Maximo and MobileFirst Server .......... 8 Anywhere components........ 43 Multiple-server deployment of Maximo Anywhere Updating the required components ...... 43 and MobileFirst Server .......... 9 Updating MobileFirst Server......... 44 Installation overview ........... 12 Updating the Maximo Anywhere build environment 44 Installation planning worksheet ....... 14 Updating the MaximoAnywhere project in Installation checklist for Maximo Anywhere ... 15 MobileFirst Studio ............ 45 What's new in application definitions in 7.6.2 ... 46 Chapter 2. Installing the Maximo Anywhere components........ 19 Chapter 4. Installing help locally.... 49 Installing the Maximo Asset Management required Installing help ............. 49 components .............. 19 IBM Knowledge Center configuration ..... 50 Automatically updating the database and Help components ............ 51 building and deploying the EAR file ....
    [Show full text]
  • Pega Platform
    PEGA PLATFORM Pega Platform 8.1 Installation Guide For WebLogic and Oracle ©2018 Pegasystems Inc., Cambridge, MA. All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks or service marks are property of their respective holders. For information about the third-party software that is delivered with the product, refer to the third-party license file on your installation media that is specific to your release. Notices This publication describes and/or represents products and services of Pegasystems Inc. It may contain trade secrets and proprietary information that are protected by various federal, state, and international laws, and distributed under licenses restricting their use, copying, modification, distribution, or transmittal in any form without prior written authorization of Pegasystems Inc. This publication is current as of the date of publication only. Changes to the publication may be made from time to time at the discretion of Pegasystems Inc. This publication remains the property of Pegasystems Inc. and must be returned to it upon request. This publication does not imply any commitment to offer or deliver the products or services described herein. This publication may include references to Pegasystems Inc. product features that have not been licensed by you or your company. If you have questions about whether a particular capability is included in your installation, please consult your Pegasystems Inc. services consultant. Although Pegasystems Inc. strives for accuracy in its publications, any publication may contain inaccuracies or typographical errors, as well as technical inaccuracies. Pegasystems Inc. shall not be liable for technical or editorial errors or omissions contained herein.
    [Show full text]