Node.js
Oracle Kubernetes (OKE): Deploying a Custom Node.js Web Application Integrated with Identity Cloud Service for Unique Single Sign On (SSO) User Experience
In this post we are deploying a custom Node.js web application in Oracle Kubernetes Engine (OKE). What we want to show is how to configure the custom web application in order to have a unique Single Sing On experience. First part Follow this tutorial here explaining how to enable SSO to the web app running locally Second […]
MoreCreating a Fast&Simple Container for Sending Messages to a Topic in Oracle Event Hub Cloud Service (aka OEHCS, which is a Kafka cluster) and Deploying it to Kubernetes Cluster
The container uses 4 environment variables, you can find a container already built for you here SOURCE CODE OF THE PRODUCER var sleep = require(‘system-sleep’); const oehcs_connect_url = process.env.OEHCS_CONNECTURL const topic_name = process.env.TOPIC_NAME const num_partitions = process.env.NUM_PARTITIONS const message = process.env.MESSAGE var kafka = require(‘kafka-node’), HighLevelProducer = kafka.HighLevelProducer, client = new kafka.KafkaClient({kafkaHost: oehcs_connect_url}), producer = new […]
MoreOracle IdCS Tips Part II: Simple Workflow for Creating Registered Users in IdCS with Node.js
In this post we explained how to create users in IdCS with the REST API. Typically you would like to put an approval process in between, here we explain a simple solution for those use cases where you don’t have or don’t want to put in the picture other pieces such as BPM, workflow or […]
MoreOracle IdCS Tips Part I: Create Users Programatically in Node.js for Oracle Cloud Services with the REST API in less than a Basketball Quarter Length
Oracle Cloud provides Identity Cloud Services (IdCS) as the identity provider (and more) for all the cloud services offered in the stack. STEP ONE Ask your identity administrator to create a trusted application in IdCS with the settings as shown in the following screenshots: STEP TWO Ask your IdCS administrator for the ClientID and secret […]
Morenode-oracledb: Connect Node program to Oracle Database Cloud Service in 30 minutes
If you want to execute sequel code against ORCL DB from Node your approach is node-oracledb. To get started follow setup instructions here. Follow the steps I made to get it running in my new Mac here but documentation explains how to do it for a bunch of platforms. NOTE: You need an oracle client, in my case […]
More