Posts

Oracle Apps Java Concurrent Program

Image
Oracle Apps  Java Concurrent Program We can build Java concurrent programs to use java capabilities.  Following are some steps  1. Create and compile java Class in jDeveloper. my suggestion is to create Java class package oracle.apps.fnd.cp.request Java class must implements   JavaConcurrentProgram Sample Java Class package oracle.apps.fnd.cp.request;     import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.FileWriter; import java.io.IOException; import java.io.PrintWriter; import java.io.StringWriter;   import java.security.NoSuchProviderException;   import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException;   import java.text.SimpleDateFormat;   import java.util.Date;   import oracle.apps.fnd.util.ParameterList;   import oracle.jdbc.OracleCallableStatement; ...

What is Microservices

Image
What is Microservices Microservices are an architectural style. Microservices are small task-based services that makeup a solution whereas a monolithic as name suggests is a single large application. Microservices are designed to perform business processes. A service (microservices) can execute its own to perform business activity. Microservices communicate with other services locally and as well as external clients over the internet . Microservices features Task oriented Microservices are designed to perform small activities like create account or get account status. Loosely coupled Microservices are build in a way to perform task independently and can communicated to communicate to other service whenever need Technology Independent This is very good advantage of Microservices architecture, we can have services developed in any language or framework. Service communicate via REST method. Independent deployment and deployment Microservice an be deploy individually....

Oracle SOA/BPM 12c Installation

Image
Oracle SOA/BPM 12c Installation steps on windows Following steps Install Database Install SOA/BPM software Create Repository Create Domain. First you need to downloaded latest Oracle SOA/BPM installation files from Oracle site. i.e. http://www.oracle.com/technetwork/middleware/bpm/downloads/index.html?ssSourceSiteId=ocomen Decompress files and get Jar files Install latest JDK i.e 1.8 Install SOA/BPM Suite Please set the JAVA_HOME before you start Run the setup but using the following command Java –jar fmw_12.2.1.3.0_bpmquickstart.jar Next Install Click next and unselect “Start JDeveloper” check box And Finish Installation process. Repository creation Go to oracle_common\bin And run rcu System load and product load if you have sysdba access to repository database Otherwise select Prepare Scripts for system load and provide to dba And after dba ran the scripts then Choose Perform Pr...