Archive for June, 2011

JAXB and how to work around duplicate variables

For our current adf project we're generating webservice proxy clients against the wsdls of our OSB services. In one of the services we had the next xsd construction : [sourcecode language="xml"] XML Represenation of the Employee domain object [/sourcecode] The object contains both an id-element and an id-attribute. When trying to generate the Webservice proxy against the wsdl containing this...

Oracle Service Bus, how to verify Result Caching is active

Oracle Service Bus has a feature now for a while which gives us the option to switch on Result Caching on services. Result Caching is based on Oracle Coherence, an in-memory data grid. Basically what it does is cache the results from the calls to the business services. Which means on a second call to the service, OSB will first verify if the data, identified by a xpath-expression is in the cache. If it is, i will be retrieved from the cache, if it isn't the call to the physical endpoint of...

Weblogic, QBrowser and topics

Besides using the Weblogic Console to add subscribers (durable) to our topics we can also use QBrowser to browse queues and topics on your Weblogic Server. Download the tool here, configurate the .bat/.sh so all the correct versions of the jar are included or create the Weblogic Full Client (http://download.oracle.com/docs/cd/E12840_01/wls/docs103/client/t3.html). Connect to your Weblogic instance. You will get an overview of all your queues and topic, and also our MyTopic. Click on...

Weblogic, topics and (non)-durable subscribers

For one of my testcases i implemented a simple process in the Oracle Service Bus which stores messages on a Weblogic topic. This blog will not contain any rocket science, just a quick overview on how to deal with topics and subscribers in Weblogic. In case of storing messages on Weblogic queues you can just browse in the Weblogic Console and look into the messages To be able to look at the message available in a topic we need to first subscribe to the topic. Create a new JMS...

Book Review : WS-BPEL 2.0 for SOA Composite Applications with Oracle SOA Suite 11g

Already read this book a while ago, but never had the time to do a short review on it. After reading 'Oracle SOA Suite 11g R1 Developer’s Guide' i was still hoping to read some new refreshing information. BPEL 2.0 is fairly new for me. Read about the specs, but never had much of a chance to get in touch with it for development purpose. The book mentions most of the "what's new changes" spread around in several chapters in the book. I would rather have some sort of short overview in the...