How to submit a concurrent program from the backend

Concurrent Programs can be submitted from the backend ie. database using fnd_request.submit_request.We will check in this post the various code on How to submit a concurrent program from the backend The snippet of the API FUNCTION fnd_request.submit_request ( application IN VARCHAR2 DEFAULT NULL, program IN VARCHAR2 DEFAULT NULL, description IN VARCHAR2 DEFAULT NULL, start_time IN […]

How to submit a concurrent program from the backend Read More »

How to Create a Minimally Viable Private CA for Jar Signing using OpenSSL

Sometimes it is not possible to buy the expensive HSHSM-based solution for EBS Jar signing. You can use your own private CA for signing the jar files. This post gives an overview of creating private CA using OpenSSL command. One-Time CA Initialization Create CA Directory mkdir ~/ebsJarCAcd ~/ebsJarCA Create CA Directory Structure mkdir certs db

How to Create a Minimally Viable Private CA for Jar Signing using OpenSSL Read More »

How to verify the Digital Signature of a Signed jar File

We can verify the signature of the signed jar file using the below command jarsigner -verify -verbose -certs <jar file> If you dont find jarsigner, please go to the JDK directory/bin and then run from there Here the verbose option gives the detailed output for all the class files in the jar archive. If you dont

How to verify the Digital Signature of a Signed jar File Read More »

Scroll to Top