Sunday, May 10, 2020

B2B Features with OIC

During last couple of months various new features are getting introduced in Oracle Integration Cloud, out of those there is a new feature for B2B connectivity with OIC which I am going to cover in this blog post.

Earlier only Oracle SOA Cloud Services used to provide support for B2B for which users/administrators need to enable B2B functionalities during server provisioning, but with OIC B2B is enabled by default with both Standard as well as enterprise licence but with limited functionalities.

The New B2B feature provides creation of Documents and Schema's as part of OIC functionality and provides support only for EDI-X12 Protocol having different document version and Types.

Below Steps will help in creation for B2B schema & document Creation:

Create B2B Schema

#1. Go To OIC Home Page and Click on B2B

#2. Click on B2B Schema and Click Create button on the Right. Provide all the details and Create.


#3. Once Created, you can edit your schema and save it.



Create B2B Document:
#1. Click on B2B Documents and Click Create button on the Right. Provide all the details and Create document.


#2. You can now select the Schema you created in above section and associate with the B2B document.



This will complete our process of creation  of B2B Schema and Documents while working on OIC.

In our next post we will work on how we can integrate these B2B documents with OIC till then keep learning.


Wednesday, October 9, 2019

What is AWS SQS (Simple Queue Service)?

Hello Readers, I want to share what I learnt about AWS SQS.

As per AWS documentation, Amazon Simple Queue Service (SQS) is a fully managed message queuing service that enables you to decouple and scale microservices, distributed systems, and server-less applications.

SQS includes key features which helps in building serverless applications and Microservice Architectures. Lets us have a look on few of those.
  • These are Pull based system
  • Decouples the components of an application
  • Acts as a buffer between Producer and Consumer applications
  • Supports Unlimited Transactions per Second
  • Supports FIFO queues which are designed to guarantee that messages are processed exactly once, in the exact order that they are sent
  • Default Retention period of SQS is 4 days, but can be customized from 1 min to 14 days
  • Default message size which SQS supports is 256 KB and it supports maximum message size upto 2 GB using Amazon SQS Extended Client Library for Java
Benefits of AWS SQS:
  • Provide a highly available and scalable message queuing service
  • Transmits any volume of data, at any level of throughput, without losing messages or requiring other services to be available
  • Exchange of sensitive data between applications using server-side encryption (SSE) integrated with KMS
  • SQS scales elastically with your application so you don’t have to worry about capacity planning and pre-provisioning
What is Visibility Timeout in SQS?
Visibility timeout is time for which message is invisible in SQS post it is picked from the application.
Default visibility timeout value for an SQS is 30 seconds. This can be increased based on the message processing time and can be set to a maximum value of 12 hours.


References:

Monday, July 29, 2019

VPC Peering in AWS

Today I am going to share what I learnt in AWS VPC Peering.


What is VPC Peering?

As per AWS documentation, "Amazon Virtual Private Cloud (Amazon VPC) enables you to launch AWS resources into a virtual network that you've defined.
A VPC peering connection is a networking connection between two VPCs that enables you to route traffic between them using private IPv4 addresses or IPv6 addresses. Instances in either VPC can communicate with each other as if they are within the same network. You can create a VPC peering connection between your own VPCs, or with a VPC in another AWS account. The VPCs can be in different regions (also known as an inter-region VPC peering connection)."






How to Create Peering Connection/VPC Peering?

Before Creating a VPC Peering connection we need to understand the requirements for peering connections.
  1. If VPC Peering need to be done for VPC's in same account?
  2. If peering connection to be created for different accounts then Account ID is required
  3. Details of the VPC's to be peered
  4. Region for the VPC's to be peered
  5. Which VPC to be taken as Source VPC
If we have above details then peering connection for VPC will be easier.

Below section will provide glimpse on VPC Peering Connections for same account and different accounts

Creating Peering Connection in Same AWS Account:








Creating Peering Connection in Same AWS Account:






Hope this will help in your learning.....

References:




Sunday, July 28, 2019

Network Security in AWS Cloud (BASTION Hosts & NAT Gateways)

During my learning towards AWS, I always thought of how we can secure the network using Bastion Host and NAT Gateways, and here are few pointers which I jotted down.

Bastion Host

As per "wikipedia.org", bastion host is a special-purpose computer on a network specifically designed and configured to withstand attacks. In simple terms, A bastion host is a proxy server configured in public subnet and is created to provide access to a private network from an external network.

It is configured only in Public Subnet of a VPC (Virtual private Cloud) or a VCN (Virtual Cloud Network) and acts as a bridge between the Public Subnet and your applications configured in Private Subnets.

Bastion Hosts are used to administer EC2 Instances in Private Subnets.






NAT Gateway

A Network Address Translation (NAT) is a method of remapping Source and Destination IP's to connect with the Host systems. NAT gateways are used to enable the instances/services in a private subnet to connect to the internet or other AWS services and prevent the internet from initiating a direct connection with those instances/services.

NAT Gateways are always created inside Public Subnets, and it routes the external network traffic from configured IP's to applications/instances configured inside Private Subnets.
NAT Gateways are used to enable Instance in a private subnet to connect to Internet

Below are few features of NAT Gateways:

  1. A NAT gateway supports 5 Gbps of bandwidth and automatically scales up to 45 Gbps
  2. We can associate exactly one Elastic IP address with a NAT gateway
  3. A NAT gateway can support up to 55,000 simultaneous connections to a unique destination
  4. NAT gateways are not supported for IPv6 traffic—use an egress-only internet gateway instead
  5. We cannot associate a Security Group with NAT gateway.


Sunday, April 7, 2019

Key Parameters Migrating a Monolithic to Micro-services Architecture

Microservices Architecture:
Microservices as a group of loosely coupled components working together to perform tasks. Below Diagram can also provide a fair example of Microservice architecture.



While Migrating from a Monolithic to a Microservices Architecture below key parameters we need to keep in mind.
  • Loose Coupling: The application we are building should be loosely coupled
  • Re-usability: Application Components should be reusable
  • Easy to Manage: The Applications build should be easy to manage and should be independent
  • Security: The Infrastructure and Application Services should be secured
  • Easily Scalable: The environment should support scalability
  • Support for Monitoring and Reporting

Friday, July 21, 2017

Integration Security using OAuth and JWT

Integration Security used to be an important point for any project Implementation. Oracle Fusion Middleware components provide various type of Security features, commonly SSL Certificates, OSB Service Accounts, OWSM Security Policies like Username Token, SAML Token, HTTP Token etc. But there are few more security features which we can use out of the box for more secured integration design like OAuth and JWT Security.
For implementing OAuth and JWT we will first understand what are these related to and how it will contribute to Integration.

What is OAuth and JWT Security features?

OAuth is an open standard for access delegation, commonly used as a way for Internet users to grant websites or applications access to their information on other websites but without giving them the passwords. Generally, OAuth provides to clients a "secure delegated access" to server resources on behalf of a resource owner. It specifies a process for resource owners to authorize third-party access to their server resources without sharing their credentials. Designed specifically to work with Hypertext Transfer Protocol (HTTP), OAuth essentially allows access tokens to be issued to third-party clients by an authorization server, with the approval of the resource owner. The third party then uses the access token to access the protected resources hosted by the resource server.
A JSON Web Token (JWT) is a JSON object which is composed of a token and is a safe way to represent a set of information between two parties. The token is composed of a header, a payload, and a signature.
The JWT Token should be build as a base64encoded string in format “header.payload.signature”.
As JWT is a Jason object so the JWT Header, will be a JSON format data with Key’s for Authorization and Algorithm Type (as below format)
{
    "typ": "JWT",
    "alg": "HS256"
}
In a similar way, JWT Payload will also be a JSON format data as below.
{
    "userId": "b08f86af-35da-48f2-8fab-cef3904660bd"
}
The JWT Signature will be computed with the algorithm as below,
data = base64urlEncode( header ) + “.” + base64urlEncode( payload )
signature = Hash( data, secret );

Implementing OAuth and JWT with Oracle SOA

OAuth uses digital signatures instead of sending the full credentials with each request. Digital signatures help the recipient to verify that the content of the request hasn’t changed in transit.
OAuth is an Out of the Box security functionality which can be embedded with Oracle SOA Rest Services. In Oracle Service Bus 12.2.1, we can secure services with REST endpoints by attaching OAuth OWSM policies, for which we must configure OWSM and the OAuth server to secure REST endpoints with OAuth policies in Service Bus.
Note: The Server Configurations for OAuth are described can be accessed from “Configure OAuth Server
As OAuth being a authorization security feature only, so it uses JWT to secure the services. For OAuth and JWT configurations with OWSM policies are described here.
Post configuration of the OAuth Server with OWSM, we can attach the OWSM Security policies with the OSB Proxy and Business Services as below.
The oracle/http_jwt_token_service_policy or oracle/http_jwt_token_over_ssl_service_policy policies can be attached to proxy services, and the oracle/http_oauth2_token_client_policy or oracle/http_oauth2_token_over_ssl_client_policy policies can be attached to business services.

References:
https://docs.oracle.com/middleware/1221/osb/develop/toc.htm 
https://medium.com/vandium-software/5-easy-steps-to-understanding-json-web-tokens-jwt-1164c0adfcec
https://en.wikipedia.org/wiki/OAuth 

Friday, May 12, 2017

Handle SOAP Version Mismatch issue using OSB

What is SOAP?
SOAP is a protocol specification for exchanging structured information in the implementation of web services in computer networks. Its purpose is to induce extensibility, neutrality and independence.

Difference Between SOAP 1.1 and SOAP 1.2
SOAP Version 1.2 can do everything that SOAP/1.1 does, and more. Below are some of the properties SOAP 1.2 has over SOAP 1.1.
  • Provides clear processing model
  • Testing and implementation requirements leads to better interoperability
  • Based on XML Information Set i.e. it is specified as an Infoset which is carried from one SOAP node to another. While SOAP/1.1 was based on XML 1.0 serialization
  • Gives developers protocol independence by providing a binding framework
  • Includes HTTP binding for better integration to the World Wide Web
  • Delivers a very well-defined extensibility model
  • Has better support for Web standards


WSDL changes observed in SOAP-1.2
  1. Namespace Changes: SOAP 1.2 supports below namespace definition.


xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"
  1. SOAP 1.2 uses "application/soap+xml" as Content-Type and SOAP 1.1 uses "text/xml".
  2.  SOAP:Operation and SOAP Binding need to be specified in SOAP 1.2 WSDL

Use Case Scenario:
We had a requirement where we should create a OSB service which should call first a SOAP1.2 web service (say as service-A) and get data from the service-A. Then the OSB service need to add the retrieved data from service-A and call up another SOAP service based on SOAP 1.1 (say as service-B) to process the data.
In this scenario we have created a OSB Service which was build on a WSDL which was first calling Service-A and then Service-B, but during Testing of the OSB Service, we found that services were failing due to SOAP version mismatch issue as Service-B is built on SOAP version 1.1 and Service-A  being a latest release services are built on SOAP Version 1.2.
Solution
To overcome this versioning issue, we have followed below steps:
1.       Generate the OSB Proxy as a Message Based Proxy service which will be based on the XSD which will have only the “body” part with required parameters to call Service-A and Service-B.
2.       Create a Pipeline Service based on the same methodology explained in point#1.
3.       In the Pipeline Service, go to message flow and add a pipeline pair and rename it as per the process standards.
4.       In the Request Pipeline node, add a Stage and renamed it as per standards.
5.       Inside the stage, add a Service callout, and browse for the proxy service for wrapper of Service-A or business service of Service-A, and configure the Service Callout as shown in below diagram, and assign the required message to Service-A parameters.


6.       Now after the above Pipeline Pair, add a RouteNode .
7.       Inside the Route Node add a Routing Operation and configure the same for the Business Service  of Service-B
8.       Inside the Request Actions, assign or replace the Body and Header to make a successful call for Business Service. Below snapshot will help on the same.


Wednesday, March 1, 2017

CSF Key Credentials Configurations Programmatically

Hello Friends,

Today I am sharing with you all my experience over the CSF Key Credentials Configurations for Creating, Updating and Deleting the CSF Keys.
We can find many Blog Posts to Read the CSF Configurations using a BPEL Process etc. but for Creation, Updation and Deletion we have only 2 ways:

  • Manual Configurations via EM Console
  • Using WLST Scripts
I have already shared with you in my earlier posts the steps to configure the Key using EM console. Today I will sharing the other part like how we can do it Programmatically.

For WLST Script execution, we need to first login to WLST utility, and then execute the commands.

Below steps will help us on the same.
  • Open Command Prompt or Shell Terminal
  • cd <<ORACLE_HOME>>/wlserver/common/bin
  • For CMD type "wlst" and enter, for unix ./wlst
  • connect('weblogic','welcome1','t3://localhost:7001')
The above commands will log in us to the server using WLST prompt. Now execute below commands:

For CSF Key Creation:
createCred(map=<<keyMapName>>,key=<<keyName>>,user=<<keyUser>>,password=<<keyPass>>,desc=<<keyDesc>>)



For CSF Key Updation:
updateCred(map=<<keyMapName>>,key=<<keyName>>,user=<<keyUser>>,password=<<keyPass>>,desc=<<keyDesc>>)


For CSF Key Deletion:
deleteCred(map=<<keyMapName>>,key=<<keyName>>)

If we want to automate the above functionality during deployment time, then we can use the ANT Scripts as well.

Below ANT Target will focus on the same.


    <target name="createCSFKeyCred">
        <wlst debug="false" arguments="${admin.username} ${admin.password} ${admin.server} ${map} ${keyCredentialsName} ${user} ${password} ${desc}">
            <script>
            adminUser=sys.argv[0]
            adminPassword=sys.argv[1]
            adminUrl=sys.argv[2]
            keyMap=sys.argv[3]
            keyName=sys.argv[4]
            keyUser=sys.argv[5]
            keyPass=sys.argv[6]
            keyDesc=sys.argv[7]
            print('Connecting to WLST Server')
            connect (adminUser,adminPassword,adminUrl)
            print('Creating Security Credentials')
            createCred(map=keyMap,key=keyName,user=keyUser,password=keyPass,desc=keyDesc)
            disconnect()
            print('Disconnecting....')
            </script>
        </wlst>
    </target>

I hope these things will help you.

Please help with your feedback.

You can also view the post @
http://blogs.astcorporation.com/middleware/2017/02/28/automating-csf-key-credentials-configurations/

Tuesday, November 1, 2016

A workaround for Data Control Refresh in BPM-ADF Application

Hello Everyone,

Today i will be sharing my experience over the issue I have been facing related to data control refresh in BPM-ADF application, like if you add or delete or change any element in Human Task then it will not directly update the existing data controls in the existing ADF Project but creats a new adf related folder structure and duplicate dcx files in BPM project only.

For this issue, I have found a workaround to let the JDeveloper create new files for data controls and then carefully replace the ADF project files with the newly generated files. This process need to be done with proper backups of the code.

Then restart the JDeveloper and issue stands resolved.

I hope my this learning would be helpful.

Greetings,
Ankit Chhabra

Monday, October 31, 2016

Creating ADF Portal based on a properties file

Hello Everyone,

This post is based on a requirement where we need to creat a ADF page which should have a table based on data present in a properties file, and the table need to be populate data on page load.

For this, I have created a JSF page and added the property file as a resource bundle to the Faces.config file. These configs will be accessible as a value bindings to the table columns.

This solution helped me to achieve my requirement.

Hope it will help others too....

Have a great day!!!!

Greetings,
Ankit Chhabra

Sunday, December 20, 2015

Using Properties File with Java Code in SOA12c

-------------------------------------------------------------------
This blog post contains few points which I learnt through my experience while working in Oracle SOA 12c Server Setup and Deployments.
-------------------------------------------------------------------- 
I was working on a issue where I have to read properties file called in a Java Code through BPEL component. We copied the file in the code location, but post deployment it is not bee called by Java Class file. Then the best way we found to read the file as a Library present in SCA-INF folder, and this resolved our issue.

So, while calling a properties or any other file to be used by SOA component is to copy in <<Code_Location>>/sca-inf/lib folder.

Note:- This workaround is used when you are not allowed to copy the file at some server location or not allowed to copy it in MDS.

Please help me with your feedback and comments.

Tuesday, December 15, 2015

Import MDS in SOA 12c without using WLST Scripts

-------------------------------------------------------------------
This blog post contains few points which I learnt through my experience while working in Oracle SOA 12c Server Setup and Deployments.
--------------------------------------------------------------------

In this post we will be going over the steps for Importing MDS in SOA 12c without using WLST Commands.

Before going over the Deployment steps, here are few of the Pre-Requisites to perform the deployment and verification.
  1. We should be having Admin access to the server.
  2. We should be having DB Credentials of MDS for verification.
  3. The Files need to be imported should be available.
Using below steps we would be able to import the MDS.
  1. Open JDeveloper 12c, and Create a New SOA Application "MDSApplication".
  2. Create a Projects with Folder structure you want your MDS looks like.
  3. Import the WSDL's and XSD's and Other files which you want in your MDS, in your Project.
  4. Compile your Application and Check for any errors.
  5. Create a New Deployment Profile for your application, and choose the application type of "SOABundle"
  6. Under Files Section, Select the project jar files of your MDSApplication, so it would be imported in MDS.
  7. Now Deploy your MDSApplication and Create a Jar File of the same.
  8. Once Jar is prepared, Login to SOA Em Console
  9. Go To SOA, and Right Click On SOA_INFRA and Go To Administration --> MDS Configuration.
  10. For Import of MDS, choose the option provided by default and Browse the file generated in Step#7, and click Import.
  11. Repeat the Step#9 and #10 for other Managed Servers as well.
This Process will Import your DB Based MDS. For Verification create a SOA-MDS Resource in your JDeveloper IDE and provide the MDS Credentials used during Installation.

I hope this will be helpful. Feedback is always welcome....

Wednesday, April 8, 2015

Important Features of Enterprise Scheduling Services in Oracle Fusion Applications

-------------------------------------------------------------------
This blog post contains few points which I learnt through my experience while working in Fusion Apps Customization.
--------------------------------------------------------------------
ESS(Enterprise Scheduling Services) is one of the Key technology used in Oracle Fusion Apps, which is a scheduling system similar to the Concurrent Request and Concurrent Manager in Oracle E-Business Suite.

ESS consist of 2 parts:
  • ESS Job and
  • ESS Job Sets 
There are various types of ESS Jobs, like 
  1. PlSql JobType
  2. Java JobType
  3. C JobType and many more
We can execute the ESS Jobs using a Webservice call to essService or by calling through a DB procedure in ESS Metadatastore.
 
The Metadata Repository Schema for ESS jobs is FUSION_ORA_ESS and the main base tables for checking ESS Job Status is REQUEST_HISTORY.

 
Please help with suggestions over the post. I am planning to add one more post with few more details over ESS Job Creation using JDeveloper and Deployments.


Saturday, June 14, 2014

Starting up with Oracle Fusion Applications 11g

Oracle Fusion Applications is one of the latest technology which is being used by many customers for managing their Products and Process Information's.

The Technical Part of Oracle Fusion Applications consists of below technologies:

  • Oracle ADF (Application Development Framework) for all UI based Forms
  • Oracle ADF BC services which are used to create and update the data in the tables
  • Oracle PL/Sql API's similar to what we use to have in Oracle E-business Suite R12.
  • Enterprise Scheduling Services, Scheduling Jobs and Job Sets similar to E-business Suite concurrent programs.
  • Oracle SOA Suite Components for Integrating and Workflow management like Approval Processes and Seeded Integrating component.
For stating working in Oracle Fusion Applications, we should be aware of above technical stacks to prepare RICEFW components and customizing Fusion Apps and Integrating other legacy systems with Fusion Apps.

Saturday, July 7, 2012

Some Facts for converting xsl:for-each-group to xsl:for-each


XSLT 2.0 has provided many new features out of which one is of <xsl:for-each-group> defined as:

---------------------------------------------------------------
<xsl:for-each-group
  select = expression
  group-by? = expression
  group-adjacent? = expression
  group-starting-with? = pattern
  group-ending-with? = pattern
  collation? = { uri }>
</xsl:for-each-group>

---------------------------------------------------------------
In SOA 11g I have faced such an issue where <xsl:for-each-group> was not getting executed and producing errors. For such scenarios we need to convert the <xsl:for-each-group> to <xsl:for-each> of version 1.0. Hence some logic has been implemented for this conversion.

We can try to implement this conversion by Implementation of a Key based on some of the Common_Id's like some ID/Number. By this we can implement the logic of group-by function.

The main element used in this implementation if <xsl:key>

The pseudo code for implementing the logic is like:
---------------------------------------------------------------
<xsl:key
name="<<KEY_NAME>>"
match="<<Element_Match>>"
use="<<Common_ID>>"/>

---------------------------------------------------------------
<xsl:for-each select="key('<<KEY_NAME>>','<<Common_ID>>')">
    <xsl:value-of select="<<Common_ID>>"/>
    <xsl:value-of select="<<Element_Value>>"/>
</xsl:for-each>

---------------------------------------------------------------

Feedback and comments provided will be very beneficial.

Thanks.

                 www.w3schools.com/xsl/

Saturday, April 28, 2012

Business Event Integration between Oracle FMW and Oracle EBiz

There are some key points which are required for Integrating Oracle FMW and EBiz using Business Events a part of Integration Repository in EBiz R12.
  1. The Business Event to be used should be active and in Subscribed state.
  2. While Configuring the Business Events in Oracle Apps Adapter, we need to check the radio button for Schema as "Specific Schema", and select the WF_EVENT schema.
  3. The flow of the BPEL process should be as follows:
    • The BPEL process should be One-Way in nature
    • Once the Event_NAME/ID is retrieved, it will call a custom procedure of EBiz via DB/OA adapter to fetch the data WRT the event id.
    • Once all information is retrieved, the data will be mapped to the target schema and published to the target.
These steps will make life easy for EBiz Integration for the Outbound Interactions.

Thursday, January 26, 2012

Points to get down before start up of Technical Design

Hi Friends,
This post is for the guys who use to work on TD's and sometimes due to stringent time lines miss some points for TD start-up.
Below are some of the points we need to keep in mind for TD start-up.

  • Complete Understanding of Functionality of the Use Case
  • Security Requirements
  • Type of Parameters used for input and output
  • Little or basic understanding of the end legacy systems
  • Technologies to be used and the decision over that based on its best practices
  • Schema files and web services used.
  • End System Requirements
Please guide me to add some more points, if I have missed anything.

Thanks,
Ankit Chhabra

Saturday, November 12, 2011

ORACLE BAM Integration with Fusion Middleware 11g


The Oracle BAM Adapter is a Java Connector Architecture (JCA)-compliant adapter which can be used from a Java EE client to send data and events to the Oracle BAM Server. Oracle BAM Adapter is configured in Oracle WebLogic Server Administration Console to provide any of these connection pools. Oracle BAM Adapter provides three mechanisms by which you can send data to Oracle BAM Active Data Cache from an SOA composite application.
Oracle BAM Adapter provides three mechanisms by which you can send data to an Oracle BAM Server in your SOA composite application:
  1.  The Oracle BAM Adapter can be used as a reference binding component in an SOA composite application. For example, Oracle Mediator can send data to Oracle BAM using the Oracle BAM Adapter.
  2. The Oracle BAM Adapter can also be used as a partner link in a Business Process Execution Language (BPEL) process to send data to Oracle BAM as a step in the process.
  3. Oracle BAM sensor actions can be included within a BPEL process to publish event-based data to the Oracle BAM data objects.
Ways to Integrate BAM:

1.       Using Mediator Service with a composite architecture
2.       Using BPEL Composite service
3.       Using OSB with BAM JCA adapter


1.     Using Mediator Service with a composite architecture

    • Create a composite service and create an input web service (file adapter/WSDL partner link) for getting Input of the service.
    • In the Partner link panel create a BAM Adapter as per the guidelines.
    • In the Composite panel create a Mediator service and link it with both the WSDL Partner link (point a above) and with BAM adapter (point b)
    • Create a Transformation service as per the business requirements.


2.     Using BPEL Composite Service

    •  Create an Empty composite BPEL service and create an input web service (file adapter/WSDL partner link) for getting Input of the service.
    • In the Partner link panel create a BAM Adapter as per the guidelines.
    •  Now Drag and drop the Receive activity, Transform, Invoke and other required activities for processing.
    • Link all the related activities as per instructions and business logic.
    • Deploy and test the code.


3.     Using OSB and BAM Integration

Being OSB a different component and not a part of SOA Suite, we need to integrate it with BAM by using JCA, WSDL and Schema (XSD) files of BAM Adapter.

Below are some of the steps for working on the same process.
    • Create an Empty composite service in JDeveloper and drag and drop the BAM adapter. Configure the BAM adapter as done in above two types like in BPEL and Mediator.
    • In Eclipse IDE, create an OSB Project and Import the above created BAM adapter JCA, WSDL, and XSD files/folders.
    •  Generate a Business service with the use of JCA file.
    • Create a Proxy Message service with the provided schema file and use activities, transformation and routing service to link it with the above generated business service.
    • Deploy and test the code.


B2B Features with OIC

During last couple of months various new features are getting introduced in Oracle Integration Cloud, out of those there is a new feature f...