georgie-soablog.blogspot.com
Random Cerebrations on SOA: August 2013
http://georgie-soablog.blogspot.com/2013_08_01_archive.html
Random Cerebrations on SOA. My take on SOA,Oracle BPEL, ESB, OSB, BPM,iPaas, cloud computing, AWS ,MEAN stack. Saturday, August 17, 2013. Book review- Oracle SOA Suite 11g Performance Tuning Cookbook. This book covers almost all aspects of the performance tuning starting from the weblogic server to different SOA components. The highlight being detailed steps on different options available to analyze and troubleshoot the issues. To monitor/troubleshoot different JVM/server issues. Links to this post.
georgie-soablog.blogspot.com
Random Cerebrations on SOA: December 2013
http://georgie-soablog.blogspot.com/2013_12_01_archive.html
Random Cerebrations on SOA. My take on SOA,Oracle BPEL, ESB, OSB, BPM,iPaas, cloud computing, AWS ,MEAN stack. Wednesday, December 18, 2013. Unique Request ID in XPath. I had a requirement to generate unique 10 char ids as Request Ids. The Oracle out of the box UID’s are long 32 char ids. The longer it is, the difficult it becomes. Custom XPath function in java which did the work for me. Public static String getRandomUniqueId(){. SecureRandom random = new SecureRandom();. String id = " ;.
georgie-soablog.blogspot.com
Random Cerebrations on SOA: December 2012
http://georgie-soablog.blogspot.com/2012_12_01_archive.html
Random Cerebrations on SOA. My take on SOA,Oracle BPEL, ESB, OSB, BPM,iPaas, cloud computing, AWS ,MEAN stack. Tuesday, December 4, 2012. Incrementing Logic in XSL for SEQUENCE in multiple for-loops. I had a requirement where there was multiple for-loops and they wanted to increment the sequence value in loop under the inner loop but counter should be unique irrespective of the loop. Doesn’t support out-of-the box increment as it is not a programming logic,I had to look for a work-around. Looping logic f...
georgie-soablog.blogspot.com
Random Cerebrations on SOA: JMS Message Selectors and OSB
http://georgie-soablog.blogspot.com/2014/03/jms-message-selectors-and-osb.html
Random Cerebrations on SOA. My take on SOA,Oracle BPEL, ESB, OSB, BPM,iPaas, cloud computing, AWS ,MEAN stack. Friday, March 28, 2014. JMS Message Selectors and OSB. As per the JMS spec :. A JMS message selector allows a client to specify, by header field references and property references, the messages it is interested in. Only messages whose header and property values match the selector are delivered. What it means for a message not to be delivered depends on the. A message selector is a. JMS BEA SELEC...
georgie-soablog.blogspot.com
Random Cerebrations on SOA: July 2013
http://georgie-soablog.blogspot.com/2013_07_01_archive.html
Random Cerebrations on SOA. My take on SOA,Oracle BPEL, ESB, OSB, BPM,iPaas, cloud computing, AWS ,MEAN stack. Tuesday, July 30, 2013. Why do we need an API Gateway? Going forward, the traditional approach of B2B/EDI gateways will be replaced with more API based integration or the cloud based integration leveraging the API. EDI Gateways will be more for high volume data where as new cloud based REST or SOAP API’s will be more popular for real-time customer engagement. Links to this post. While designing ...
georgie-soablog.blogspot.com
Random Cerebrations on SOA: April 2013
http://georgie-soablog.blogspot.com/2013_04_01_archive.html
Random Cerebrations on SOA. My take on SOA,Oracle BPEL, ESB, OSB, BPM,iPaas, cloud computing, AWS ,MEAN stack. Tuesday, April 30, 2013. REST Security(SAML V/s OAuth ) in SOA 11g /OSB 11g –Part1. OWSM currently does not support REST security. Oracle is planning to add support in upcoming 11g release-PS6 and 12c releases. SAML V/s OAuth in REST. SAML is supported by OWSM. OAuth is more suited for cases where we don’t want to propagate the password. OAuth uses digital signatures. Links to this post. Wednesd...
georgie-soablog.blogspot.com
Random Cerebrations on SOA: SOA Software/Akana API Gateway
http://georgie-soablog.blogspot.com/2015/03/soa-softwareakana-api-gateway.html
Random Cerebrations on SOA. My take on SOA,Oracle BPEL, ESB, OSB, BPM,iPaas, cloud computing, AWS ,MEAN stack. Thursday, March 19, 2015. SOA Software/Akana API Gateway. The architecture is sort made of 3 components. API Enablement Tool /App Developer Portal. 8226; Policy Manager:. Database of run-time policies, access contracts, service definitions and related metadata•. 8226; Network Director. The CM helps App developers to interact easily with the API developer using a Board and ticketing dash board.
georgie-soablog.blogspot.com
Random Cerebrations on SOA: March 2015
http://georgie-soablog.blogspot.com/2015_03_01_archive.html
Random Cerebrations on SOA. My take on SOA,Oracle BPEL, ESB, OSB, BPM,iPaas, cloud computing, AWS ,MEAN stack. Thursday, March 19, 2015. SOA Software/Akana API Gateway. The architecture is sort made of 3 components. API Enablement Tool /App Developer Portal. 8226; Policy Manager:. Database of run-time policies, access contracts, service definitions and related metadata•. 8226; Network Director. The CM helps App developers to interact easily with the API developer using a Board and ticketing dash board.
georgie-soablog.blogspot.com
Random Cerebrations on SOA: May 2013
http://georgie-soablog.blogspot.com/2013_05_01_archive.html
Random Cerebrations on SOA. My take on SOA,Oracle BPEL, ESB, OSB, BPM,iPaas, cloud computing, AWS ,MEAN stack. Tuesday, May 21, 2013. Restful Gateway Architecture in OSB. As per the new flow we will be clubbing all the common calls into a gateway and internally routing the requests to different projects. There will be a registry(XML file) which will be having details of all the exposed services in REST. It can be GET or POST. The registry will decide on routing the different services based on relative URI.
georgie-soablog.blogspot.com
Random Cerebrations on SOA: October 2013
http://georgie-soablog.blogspot.com/2013_10_01_archive.html
Random Cerebrations on SOA. My take on SOA,Oracle BPEL, ESB, OSB, BPM,iPaas, cloud computing, AWS ,MEAN stack. Tuesday, October 29, 2013. Compilation error - java.lang.IllegalArgumentException: Choice Pattern incorrect,1=null,2={2},3={3},4={4},5={5}. 0=java.lang.IllegalArgumentException: Choice Pattern incorrect,1=null,2={2},3={3},4={4},5={5}]. This is a generic error which gets thrown during compilation time, due to the changes in the WSDL. Links to this post. Saturday, October 19, 2013. This feature wa...