Resolving Key Conversion Error in Oracle Cloud OIC Integration

When running an Oracle Integration Cloud (OIC) integration, you may encounter the following error despite successfully testing and validating the connection: <![CDATA[CASDK-0041: An error occurred while invoking the REST endpoint.[[CloudInvocationException [ java.lang.ClassCastException: java.lang.ClassCastException: class org.bouncycastle.asn1.x509.SubjectPublicKeyInfo cannot be cast to class...
Read More »
Blogger Tricks
*/

Trigger, Invoke, and Trigger & Invoke in OIC REST Connections

Trigger, Invoke, and Trigger & Invoke in OIC REST ConnectionsIn Oracle Integration Cloud (OIC), REST connections allow systems to communicate. You can configure a connection in one of three ways: Trigger, Invoke, or Trigger and Invoke.Trigger: OIC acts as a server, exposing a REST API so that external systems can receive data. Example: Third-party service receiving data using OIC Rest API.Invoke:...
Read More »
*/

How to Create a Sample REST API in Oracle Integration Cloud (OIC)

Let's create a sample REST API using OIC with below stepsStep1: Create REST connectionStep2: Create Integration by using REST connectionStep3: Configure parameters if any and response as wellStep4: Map the elements for response if required and validateStep5: Activate the Integration and testWe need a REST connection to create REST API using OIC.Navigate to Design --> Connections.Create the connection...
Read More »
*/

Browser Navigation issue in OAF

Usually this issue occurs when closing the popup window and moving to the next set of data of search results using table navigation bar.Lets look at the snaps of the issue for reference.Code which has issue:String errorPage = "/ah/oracle/apps/aoc/AHOMUI/webui/AHOMErrorsPG&banner=home&addBreadCrumb=Y&ErrorId={@ErrId}";String destinationURL = APPS_HTML_DIRECTORY + OAWebBeanConstants.APPLICATION_JSP...
Read More »
*/

Assign SQL value to variable in shell script

Requirement is to get the emails list from value set and send an email using shell script.Sample Shell Script:#!/bin/ksh#*******************************************************************************# Name : HH_TEST_SHELL# Date : 19-MAY-2023# By : AskHareesh# Description : Execute JAR File#*******************************************************************************MAILBODY="Hi Team,Please find...
Read More »
*/

Send an email with out attachment from shell script

Requirement is to send an email with out attachment using shell script.Sample Shell Script:#!/bin/ksh#*******************************************************************************# Name : HH_TEST_SHELL# Date : 19-MAY-2023# By : AskHareesh# Description : Execute JAR File#*******************************************************************************MAILBODY="Hi Team,Please find the attached report."MAIL_SUBJECT="Sales...
Read More »
*/

Send an email from shell script with attachment

Requirement is to send an email with file as an attachment using shell script.Sample Shell Script:#!/bin/ksh#*******************************************************************************# Name : HH_TEST_SHELL# Date : 19-MAY-2023# By : AskHareesh# Description : Execute JAR File#*******************************************************************************MAILBODY="Hi Team,Please find the attached...
Read More »
*/