Teaching how to use the Oracle OSB/SOA JMS Adapter, BPEL and Mediator

I am using the pre-built virtual image that Oracle provides as a public VM in OTN (http://www.oracle.com/technetwork/middleware/soasuite/learnmore/soa-vm-2870913.html). If you don’t have an existing environment, you can download this VM and use it as part of the following exercises.

In this blog we are going to use Oracle JCA JMS adapter. You will realise that the JMS adapter is part of the JCA framework, together with all the Technology Adapters (300+), such as Database, File, FTP, LDAP, Socket, REST, SOAP, AQ, Coherence, etc. This basically means that all of these technology adapters will be created and configured almost identically.

Continue reading “Teaching how to use the Oracle OSB/SOA JMS Adapter, BPEL and Mediator”

Teaching how to use the Oracle OSB/SOA Database Adapter (read & write)

I am using the pre-built virtual image that Oracle provides as a public VM in OTN (http://www.oracle.com/technetwork/middleware/soasuite/learnmore/soa-vm-2870913.html). If you don’t have an existing environment, you can download this VM and use the underlying Oracle DB for the following exercises. The details are as follows:

  • Sysdba: sys/welcome1
  • Port: 1521
  • SID: soadb

Otherwise modify the connection settings accordingly to point to any other database.

Continue reading “Teaching how to use the Oracle OSB/SOA Database Adapter (read & write)”

Teaching How to Configure Oracle Salesforce Adapter for an on-premise OSB/SOA installation…

This section provides an overview of how to configure the Salesforce adapter as part of an on-premise installation/configuration. Notice that Oracle provides an out-of-the box Integration Cloud Service in the Oracle Public cloud where these steps are not required anymore, as these adapters are provisioned and configured by default. For more information on how to integrate into Salesforce using Oracle Integration Cloud Service, refer to this other blog: https://solutionsanz.wordpress.com/2016/11/22/teaching-how-to-integrate-salesforce-with-ics/

Continue reading “Teaching How to Configure Oracle Salesforce Adapter for an on-premise OSB/SOA installation…”

Teaching how to create a bootable USB flash drive

  1. Insert a USB flash drive into a running computer.
  2. Open a Command Prompt window as an administrator.
  3. Type diskpart.
  4. In the new command line window that opens, to determine the USB flash drive number or drive letter, at the command prompt, type list disk, and then click ENTER. The list disk command displays all the disks on the computer. Note the drive number or drive letter of the USB flash drive.
  5. At the command prompt, type select disk , where X is the drive number or drive letter of the USB flash drive, and then click ENTER.
  6. Type clean, and the click ENTER. This command deletes all data from the USB flash drive.
  7. To create a new primary partition on the USB flash drive, type create part pri, and then click ENTER.
  8. To select the partition that you just created, type select part 1, and then click ENTER.
  9. To format the partition, type format
    fs=fat32 quick, and then click ENTER.

Continue reading “Teaching how to create a bootable USB flash drive”

Teaching how to configure Virtual Box Network Configuration

You can try NAT based connection and it will work just fine, but you will not be able to access your VM servers externally, unless you map ports. Another option is to use “Bridge Adapter”. Look:

Continue reading “Teaching how to configure Virtual Box Network Configuration”

Teaching How to install Google Chrome on OEL

  • As root, run the following command:

cat << EOF > /etc/yum.repos.d/google-chrome.repo

[google-chrome]

name=google-chrome – \$basearch

baseurl=http://dl.google.com/linux/chrome/rpm/stable/\$basearch

enabled=1

gpgcheck=1

gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub

EOF

Continue reading “Teaching How to install Google Chrome on OEL”

Teaching How to Install VNC Server

In order to install VNC Server on Ubuntu 16.04 follow the next instructions (refer to https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-vnc-on-ubuntu-16-04 for more information)

Continue reading “Teaching How to Install VNC Server”

Teaching How to Install SOAPUI on Linux

  1. Download open source SOAPUI – https://www.soapui.org/downloads/latest-release.html
  2. Select “Linux Installer (64-bit)” – Adjust accordingly.
  3. Click on Download.
  4. Once it is download, chmod 755 SoapUI-x64-5.2.1.sh
  5. Then run it: ./SoapUI-x64-5.2.1.sh
  6. A pop-up will open. Accept all the defaults and follow the wizard to get it installed.
  7. It will be installed by default under: $HOME/SmartBear/SoapUI-5.2.1/bin/SoapUI-5.2.1
  8. Select to open it at the end or double click the “SoapUI 5.2.1.desktop” icon at the Desktop.

Teaching How to Add another storage volume to an existing VBox VM (Ubuntu)

If you need to add an extra volume storage into an existing VBox VM, you can use VirtualBox for that.

  • Stop your VM and go to Virtual Box – Storage
  • Select the Controller: SATA and click the green plus icon to add a new disk
  • Select the type and size
  • Start your instance
  • Once it is running you have to format and mount the new disk, for this, as root run

    fdisk –l or lsblk

     

     

    This will let you discover the name of the extended volume. In this case it is /dev/sdb

Continue reading “Teaching How to Add another storage volume to an existing VBox VM (Ubuntu)”

Teaching How to Create SSH keys for Oracle Public Cloud (OPC) access

This section shows you how to create an SSH Key pair to be used to provision Oracle Cloud Services and later on to be able to authenticate via SSH connection from your SSH client.

Oracle Cloud services such as Oracle Java Cloud Service and Oracle Database Cloud – Database as a Service are built on top of infrastructure and functionality that are provided by Oracle Compute Cloud Service. When you create a service instance of one of these Oracle Cloud services, all the Oracle Compute virtual machines (VMs) required to support the service instance are provisioned and configured for you.

Continue reading “Teaching How to Create SSH keys for Oracle Public Cloud (OPC) access”