Found 87 results for "cookbooks java"

The search executed in 0.001132558 seconds. That's fast.

Gitana / 4.0 / Developers / Drivers / Java

Java Connect your Java, Spring MVC and Android applications to Gitana Latest Version Version undefined Date The Gitana Java driver makes it easy for your Java and Android applications to connect to and communicate with the Gitana server. The driver can be utilized with Android mobile devices as well as Java applications running on the server or as a web application (Spring Framework, SEAM, etc, running on Tomcat, Glassfish, WebSphere and many other frameworks). Maven Repository Gitana runs a Mav

Score: 23.586163

Gitana / 4.0 / Developers / Cookbooks / Java Cookbook

Java Cookbook Getting Started To get started with the Java driver, please visit the GitanaJava Driver Page. We recommend that you use Maven. At a minimum, you will need to add the following repository declaration to your pom.xml file: cloudcms-public cloudcms-public https://maven.cloudcms.com/public Note that newer vesions of Maven require secure repositories so if you curr

Score: 23.136528

Gitana / 3.2 / Guide / Guide / Cookbooks

Cookbooks We've put together the following Cook Books to help you get started coding using the Cloud CMS drivers. Content Modeling Cookbook C# Cookbook Go Cookbook Java Cookbook JavaScript (Legacy) Cookbook JavaScript 2.0 Cookbook Node.js Cookbook PHP Cookbook Python Cookbook REST API Cookbook Ruby Cookbook Scripting Cookbook

Score: 22.23463

Gitana / 4.0 / Developers / Cookbooks / Overview

Cookbooks We've put together the following Cook Books to help you get started coding using the Cloud CMS drivers. Content Modeling Cookbook C# Cookbook Go Cookbook Java Cookbook JavaScript (Legacy) Cookbook JavaScript 2.0 Cookbook Node.js Cookbook PHP Cookbook Python Cookbook REST API Cookbook Ruby Cookbook Scripting Cookbook

Score: 13.7844305

Gitana / 4.0 / Self Managed / Monitoring / Overview

Monitoring API Server with an APM The Cloud CMS API Server is a Java application that launches inside of a Java Servlet Container. As such, Application Performance Montioring (APM) frameworks such as New Relic can be used to monitor performance metrics and other run-time data. Production Performance Although APM frameworks are designed such that they do not impact production performance more than is necessary, the impact is not zero. Cloud CMS Support may, therefore, ask you to disable monitorin

Score: 13.213005

Gitana / 3.2 / Guide / Guide / Cookbooks / Java Cookbook

Java Cookbook Getting Started To get started with the Java driver, please visit the Gitana Java Driver Page. We recommend that you use Maven. At a minimum, you will need to add the following repository declaration to your pom.xml file: cloudcms-public cloudcms-public https://maven.cloudcms.com/public Note that newer vesions of Maven require secure repositories so if you cur

Score: 13.149765

Gitana / 4.0 / Developers / Cookbooks / Scripting Cookbook

Scripting Cookbook Getting Started To get started with Server-Side Scripting, please visit the Server Side Scripting page. Code Samples Here are some code samples of common data structures to help you get started. Increment a Property With this example, we want to keep track of a counter that tracks the number of updates made to a node. After a node is created, if the user clicks update ten times, we want to have a counter on the node that indicates it has been updated ten times. This script sho

Score: 12.017558

Gitana / 4.0 / Developers / Cookbooks / Go Cookbook

Go Cookbook Getting Started To get started with the Go driver, visit the Github Page or Package Page to view the source code, tests and basic usage examples. You can install the driver via the command line: go get github.com/gitana/cloudcms-go-driver Connecting to Gitana There are two ways to connect with the Go driver: By finding a gitana.json file in your working directory, or by providing a config configuration. // Connect to Gitana using gitana.json in working directory session, err := clou

Score: 9.168737

Gitana / 4.0 / Developers / Cookbooks / PHP Cookbook

PHP Cookbook Getting Started To get started with the PHP driver, visit Gitana PHP Driver Page or the Github Page. It can be used in any composer php project. To install with composer from the command line: composer require cloudcms/cloudcms Connecting to Gitana You can connect to Gitana with the php driver by providing a config array containing your keys, which can be obtained from a gitana.json file. It should look something like: { "clientKey": "{your client key}", "clientSecret": "{y

Score: 9.168737

Gitana / 4.0 / Developers / Cookbooks / REST API Cookbook

REST API Cookbook Getting Started This guide assumes that you have already installed an HTTP client with which you will be making requests. However, it is highly recommended that you look at our language drivers and you read about the one that you will be using in your application. Connecting to Gitana Gitana uses OAuth2 to perform authentication, and as such to connect you will have to perform the authentication handshake manually to connect directly with the rest api. The specifics of this dif

Score: 9.168737

Gitana / 4.0 / Self Managed / Configuration / API Server

API Server The Cloud CMS API Server is a Java application that launches inside of a Java Servlet Container. The Java application surfaces a REST API as well as backend services and DAOs to support connectivity to Mongo DB, Elastic Search and a slew of Amazon services including S3, SNS, SQS, Route 53, Cloud Front and more. Properties File Cloud CMS is primarily configured via a properties file that is auto-detected and loaded when the underlying Spring Framework starts up. This properties file is

Score: 8.636663

Gitana / 4.0 / Developers / Cookbooks / Python Cookbook

Python Cookbook Getting Started To get started with the Python driver, visit Gitana Python Driver Page or the Github Page. It is written with Python 3 and can be used in any compatible project. You can install the driver via the command line: pip install cloudcms or pip3 install cloudcms Or add something like this to your requirements.txt: cloudcms==1.1.0 Connecting to Gitana You can connect to Gitana by providing a config file or the oauth variables directly. Using a Gitana JSON file You ca

Score: 8.527292

Gitana / 4.0 / Developers / Cookbooks / JavaScript (Legacy) Cookbook

JavaScript (Legacy) Cookbook Getting Started To get started with the JavaScript driver, please visit the Gitana JavaScript (Legacy) Driver Page. Connecting to Gitana To connect, supply your API Keys as the argument to the connect() method. Gitana.connect({ "clientKey": "{clientKey}", "clientSecret": "{clientSecret}", "username": "{username}", "password": "{password}", "baseURL": "https://api.cloudcms.com" }, function(err) { var platform = this; }); If a problem w

Score: 7.9697294

Gitana / 3.2 / Guide / Guide / Supported Stacks

Supported Stacks Cloud CMS certifies certain supported stacks for on-premise Cloud CMS 3.2 installations. This information is relevant to customers who run Cloud CMS 3.2 on-premise and manage their own Elastic Search and MongoDB database tiers. This information is not applicable to SaaS customers since Cloud CMS runs that infrastructure for hosted subscribers. The following links provide detailed information on the combinations of operating systems, databases, application servers, bundled compon

Score: 7.7700787

Gitana / 4.0 / Self Managed / Supported Stacks / Overview

Supported Stacks Gitana certifies certain supported stacks for on-premise Gitana 4.x installations. This information is relevant to customers who run Gitana 4.x on-premise and manage their own Elastic Search and MongoDB database tiers. This information is not applicable to SaaS customers since Gitana runs that infrastructure for hosted subscribers. The following links provide detailed information on the combinations of operating systems, databases, application servers, bundled components and thi

Score: 7.7700787

Gitana / 4.0 / Developers / Cookbooks / C# Cookbook

C# Cookbook Getting Started To get started with the C# driver, visit Gitana C# Driver Page or the Github Page. It is written with .NET Core and can be used in any compatible project. You can install the driver via the command line: dotnet add package cloudcms or from within Visual Studio: Install-Package cloudcms Or by adding this to your .csproj file (you may have to adjust the version): Connecting to Gitana

Score: 7.7174253

Gitana / 4.0 / Developers / Cookbooks / Ruby Cookbook

Ruby Cookbook Getting Started The Ruby driver is published to https://rubygems.org/gems/cloudcms Install the gem as you would any other Gem gem install cloudcms You may choose to use Bundler or other dependency management tool. Connecting to Gitana To connect, create a file called gitana.json in a folder location readable by your application. For information on how to acquire this file, please read up on API Keys. Load the library containing the driver: require 'cloudcms' Connect to Cloud CMS by

Score: 7.7174253

Gitana / 4.0 / Developers / Cookbooks / Node.js Cookbook

Node.js Cookbook Getting Started To get started with the Node.js driver, please visit the Cloud CMS Node.js Driver Page. One thing to keep in mind is that the Node.js driver is based on the JavaScript driver. As such, they're pretty similar. That said, the Node.js driver can do a few important tricks that you can't do in the JavaScript driver. Connecting to Cloud CMS To connect, create a file called gitana.json in your application root. For information on how to acquire this file, please read up

Score: 7.480605

Gitana / 4.0 / Self Managed / Configuration / UI Server

UI Server The Cloud CMS UI Server is a Node.js application that provides the editorial experience for Cloud CMS. It communicates with the Cloud CMS API via HTTP/HTTPS API calls and is built to be very extensible. Developers and system integrators can extend the Cloud CMS UI through the deployment of UI modules. Environment File (.env) The Cloud CMS UI is primarily configured via a series of environment variables. These environment variables are detected by the Node.js application at startup and

Score: 7.1957617

Gitana / 4.0 / Developers / Cookbooks / JavaScript 2.0 Cookbook

JavaScript 2.0 Cookbook Getting Started To get started with the JavaScript driver, please visit the Gitana JavaScript 2.0 Driver Page. This JavaScript driver, in contrast to the Gitana JavaScript 1.0 Driver, fully supports ECMAScript promises, which makes it easier to seamlessly integrate with your javascript apps. Connecting to Gitana You can connect and then use this driver in three different but equivalent ways: Async / Await Promises Callbacks Async / Await const cloudcms = require("cloudcms

Score: 6.8500004

Gitana / 3.2 / Guide / Guide / Docker / Monitoring API Server with an APM

Monitoring API Server with an APM The Cloud CMS API Server is a Java application that launches inside of a Java Servlet Container. As such, Application Performance Montioring (APM) frameworks such as New Relic can be used to monitor performance metrics and other run-time data. Production Performance Although APM frameworks are designed such that they do not impact production performance more than is necessary, the impact is not zero. Cloud CMS Support may, therefore, ask you to disable monitorin

Score: 6.792039

Gitana / 4.0 / Developers / Cookbooks / Content Modeling Cookbook

Content Modeling Cookbook Getting Started To get started with Content Modeling, please visit the Content Modeling Page. Code Samples Here are some code samples of common data structures to help you get started. Array of strings An array of strings. Definition: "prop1": { "type": "array", "items": { "type": "string" } } Form: "prop1": { "type": "array", "items": { "type": "text" } } An Object An object with two properties. Definition: "articleAvailability

Score: 5.232622

Gitana / 3.2 / Guide / Guide / Docker / Security Notices / CVE-2022-22965

CVE-2022-22965 Cloud CMS API Container Cloud CMS API docker containers version 3.2.75 and prior ship with a version of the Spring Framework that has been identified to contain a vulnerability. This vulnerability is identified as CVE-2022-22965 and the vulnerability report can be found here: https://tanzu.vmware.com/security/cve-2022-22965 We have assessed this vulnerability and recommend that our customers either upgrade to Cloud CMS 3.2.76 or apply the workaround recommended in this docoument.

Score: 4.48706

Gitana / 3.2 / Guide / Guide / Cookbooks / Scripting Cookbook

Scripting Cookbook Getting Started To get started with Server-Side Scripting, please visit the Server Side Scripting page. Code Samples Here are some code samples of common data structures to help you get started. Increment a Property With this example, we want to keep track of a counter that tracks the number of updates made to a node. After a node is created, if the user clicks update ten times, we want to have a counter on the node that indicates it has been updated ten times. This script sho

Score: 4.2887416

Gitana / 4.0 / Forms / Cookbooks / Overview

Cookbooks Further Reading Nested Tables

Score: 4.127143