Most of the JBI composite applications in OpenESB are written using BPEL Service Engine. This is because BPEL allows us to orchestrate various webservices. But what if one wanted to write a simple composite application without using BPEL. Let’s say someone wants to use an...
Home » Archive by category "Glassfish"
SSL, Keystore, Truststore and Mutual Authentication
For the past four days I was trying to configure 2 instances of OpenESB instances with SSL Mutual authentication. I initially thought it is straightforward that I just need to import their respective certificates in the truststore of their counterparts. But it proved more difficult...
Easy Load Balancer Configuration with Glassfish And Apache 2.x
A Simple apache configuration is configured with easy reverse proxy setup looks as … ProxyPass /ABC http://abccompany.com:8009/ABC connectiontimeout=15 timeout=60 ping=3 retry=6 .. This mean if user request comes for /ABC, apache will forward this single request to configured URL bound to only one instance/domain. So,...