Category: Uncategorized
-
lsnrctl: command not found
So, you’re trying to start your Oracle DB listener and are met with the frustrating “lsnrctl: command not found” error? Issue [oracle@VHOST2 ~]$ lsnrctl -bash: lsnrctl: command not found How to Fix? Solution Well, let’s break it down. This error usually occurs when the system can’t find the lsnrctl command due to a missing or…
-
Hello world!
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
-
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.
-
rul-05720 datatype mismatch for test jaxbelement >int Oracle SOA business rule
rul-05720 datatype mismatch for test jaxbelement >int Sometime we face this error while creating business rule. I was facing the same issue with variable that I was using in business rule by removing minOccurs=”0″ in my schema element. Like below <xs:element name=”netAmount” type=”xs:decimal” minOccurs=”0″ nillable=”true”/> just remove the highlighted area and try to create your business…