Where to put tnsnames.ora file
You can put tnsnames.ora wherever you want - just set the environment variable TNS_ADMIN to the directory containing the file
View ArticleHow to monitor Tomcat applications via JConsole
Put the argument “-Dcom.sun.management.jmxremote” into Java options in the catalina.bat file as: set JAVA_OPTS=%JAVA_OPTS% %LOGGING_MANAGER% -Dcom.sun.management.jmxremote Start tomcat. Then start...
View ArticleHow to find SMTP host in the network
You can find the SMTP host in your network by doing the following… Open a command window first. Then, type nslookup -q=mx your-domain-name. It will bring you a list of smtp servers… EX: C:\>nslookup...
View ArticleHow to change log4j properties at runtime
In the below main class, we are first giving the application properties file (path) used by the application as an argument. In the properties file, we have the path of the log file. So, we can change...
View ArticleAn easy & fast solution for Domain Value Mapping lookup operations
You will find here a very fast solution for DVM lookup operations which needs to be done in Oracle Service Bus proxy services. I found the following solution during a performance optimization workout...
View ArticleEncrypting & Decrypting Data Files by Using AES and RSA Algorithms
The following solution is developed to ensure encrypted communication during transferring of some data files (which includes secret information) from one point to another. Data files are encrypted...
View ArticleHOW TO USE ONE WAY SSL BETWEEN BPEL AND OSB
1. Enable SSL on OSB weblogic managed server, and then set SSL port. 2. Restart weblogic managed server on which SSL was enabled. 3. Set HTTPS required property of proxy service which...
View ArticleJAVA Anagram Detector
I will show you two different java methods for checking whether given two strings are anagram of each other or not. The best solution for this process is asked to one of my friends in a Microsoft...
View ArticleChanging fault-policies.xml in BPEL-MDS
Fault Policy Framework in BPEL can not catch changes made in fault-policies.xml file. If you edit fault-policies.xml file in MDS, you need to restart the server. You can look at the following page if...
View ArticleBPEL Fault Management Framework
The following link has a very useful information with examples about BPEL Fault Management Framework. https://blogs.oracle.com/ateamsoab2b/entry/fault_management_framework_by_example
View Article