Usecase: simply, we see how to rename an existing connection.
Steps:
Edit >> 3 dots action top right corner >> edit info >> update connection name and >> save.
Screenshots:
Usecase: simply, we see how to rename an existing connection.
Steps:
Edit >> 3 dots action top right corner >> edit info >> update connection name and >> save.
Screenshots:
Overview: This document outlines the key differences between the OIC Stage action and FTP connection functionalities, focusing on their support for cryptographic operations, including encryption, decryption, and signing keys.
OIC Stage Action:
FTP Connection:
Conclusion: Understanding these differences is crucial for selecting the appropriate method for secure data transmission and processing in integration scenarios.
Use case:
In this scenario, we will demonstrate how to retrieve the value of the ErrMsg field in XML using the local-name() XPath function, bypassing the need for a namespace prefix.
The following response was received from an endpoint where the namespace prefix is missing. Our objective is to retrieve the value of the ErrMsg field for further post processing logic:
<enb:ImportDataResponse xmlns:enb="enablon">
<Response>
<RowCount>2</RowCount>
<RowSuc>2</RowSuc>
<ErrMsg />
</Response>
</enb:ImportDataResponse>
Solution:
We need to use xslt xpath function: local-name() as below:
$Invoke_SkillsAssessment_ImportData_Enablon//*[local-name()='Response']/*[local-name()='ErrMsg']
In previous versions of Oracle Integration Cloud (OIC), obtaining the outbound IP address of your OIC instance required raising a service request with Oracle support. Once received, this IP address could be shared with third-party applications or service providers to whitelist your instance, ensuring seamless communication.
However, starting with version 3, the outbound IP address is readily available directly on the OIC instance's home page. This eliminates the need to raise a support request and simplifies the process of whitelisting, streamlining communication with third-party applications.
Navigation:
Go to Home page >> click user name profile >> about >> outbound ip.
Use Case:
In this section, we will demonstrate how to create a secret in Oracle Cloud Infrastructure (OCI) Vault for securely storing your keys. Additionally, we will outline the process for retrieving secret keys using the Secret OCI ID from the OCI Vault through Oracle Integration Cloud.
Part1: Create secret in OCI Vault to store your keys.
Implementation steps:
Part2: Get the keys from vault using OIC integrations.
Implementation steps:
Step1: create a Vault Rest connection:
Step2: Create application integration to configure trigger
Reference:
https://medium.com/@bimands/create-secret-to-store-your-keys-and-access-from-oic-e23bf2613792
Usecase: We have received an encrypted file from source and while trying to decrypt it using stage action, throwing below error:
The error message reads:
"Error occurred while processing activity decryptsf4. Error: java.io.IOException: Error in decrypting the stream for file f: /ocid1_integrationinstance_oc1_ap_singapore_1_amaaaaaalbz6auaavjgs3l7ic3amccbdcvgvjg3zohgwapphstnp4u2rpukq/PzDTInsnEe_TfH17CejA/in/t332/download/SourceName_HCM_PayrollResults_20240827_123456.csv"
Root cause:
The root cause of the error seems to be a mismatch between the key pairs used for encryption and decryption.
Specifically, the key pair used to encrypt the file and the key pair present in the Oracle Integration Cloud (OIC) certificate store for decryption are different. This mismatch is preventing the successful decryption of the file, leading to the IOException error.
Solution:
To resolve this issue, ensure that the same key pair is used for both encrypting and decrypting the file.
Usecase: "Can you provide an iCal expression for scheduling a task to run at 4 PM on June 30th and December 31st each year in the Oracle Integration Cloud (OIC) scheduler?"
Solution:
FREQ=YEARLY;BYMONTH=6,12;BYMONTHDAY=30,31;BYHOUR=16;BYMINUTE=0
1. Export 11g OSB code and import in 12c Jdeveloper. Steps to import OSB project in Jdeveloper: File⇾Import⇾Service Bus Resources⇾ Se...