Sunday, December 18, 2016

Resolved:Connection refused: connect. CFGFWK-60850: Test Failed!

While extending SOA domain for OSB, we can come across the following issue Component Schema=OSB JMS Reporting Provider Driver=org.apache.derby.jdbc.ClientDriver URL=jdbc:derby://localhost:1527/osbexamples;ServerName=localhost;databaseName=osbexamples User=DEV_SOAINFRA Password=******** SQL Test=SELECT 1 FROM SYS.SYSTABLES  java.net.ConnectException :  Error connecting to server localhost on port 1527 with message Connection refused:...

Tuesday, October 18, 2016

java.lang.NoClassDefFoundError: sun/io/CharacterEncoding JDK Error Oracle SOA

While using JDK 8, following error might come in Oracle SOA. java.lang.NoClassDefFoundError: sun/io/CharacterEncoding         at oracle.j2ee.ws.common.util.TestPageUtils.encode(TestPageUtils.java:216)         at oracle.j2ee.ws.server.management.mbeans.WebServiceOperation.createTestPagePath(WebServiceOperation.java:276) Look like its not supported version of JDK for SOA. Try to install JDK 7 and then test. This error must resolve.  &nbs...

There is not an activity (receive/pick) to start the process

Sometimes when we create SOA BPEL with define service interface later, we get the below error even if we add the receive activity. Error(52): There is not an activity (receive/pick) to start the process Error(52): Initial activity is invalid. An initial activity must be of a receive or pick activity. Error: there is no receive activity that starts the process  Following is the error snapshot: To resolve this issue open BPEL process...

Monday, October 17, 2016

Error occurred during initialization of VM

After fresh installation of Oracle SOA, I started getting the below error while starting servers. Error occurred during initialization of VM Could not reserve enough space for object heap Could not create the Java virtual machine. After trying different solution from the Web I changed the JDK version and it started working fine. I was using C:\Oracle\Middleware\jdk160_24 JDK previously which did not work and then I updated it with C:\Program Files\Java\jdk1.8.0_51 in setDomainEnv file and it started working fine.&nbs...

Monday, May 23, 2016

Problem while accessing Oracle Application, Security Issue

The most irritating message when you try to run any applet you get. Sometimes even if you installed the below mentioned J2SE plugin, it still does not work. I got the same issue and I uninstalled all of my Java versions first and then I installed the below mentioned Java plugin and then it started working fine. In order to access this application, you must install the J2SE Plugin version 1.6.0_07. To install this plugin, click here to download the oaj2se.exe executable. Once the download is complete, double-click the oaj2se.exe file to install...

Tuesday, May 17, 2016

Local area connection is not showing under network and sharing center, LAN is not working issue

Local Area connection is not showing up in network connection and sharing center. To resolve this issue I found very useful video which helped me to resolve my issue immediately. I installed LAN driver again and again but that did not work. ...

Monday, May 2, 2016

BPM Timer Process java.lang.NoClassDefFoundError: oracle/bpm/runtime/quartz/trigger/TriggerWithReschedule

Following issue came because one of the library could not be loaded. So you need to add that library to lib directory of your SOA domain. Go to the /oracle/Middleware/Oracle_SOA1/soa/modules and then copy the oracle.bpm.runtime.classloader-util.jar jar file. Go to /oracle/Middleware/user_projects/domains/[domain_name]/lib directory and past that file. restart the servers, hope this will help. javax.ejb.EJBException: EJB Exception: : java.lang.NoClassDefFoundError: oracle/bpm/runtime/quartz/trigger/TriggerWithReschedule at oracle.bpm.bpmn.engine.model.runtime.util.SchedulingHelper.schedule(SchedulingHelper.java:46) ...