Oracle Service Bus 11g Development Cookbook is added to the OSB OTN Learn More page

Our book "Oracle Service Bus 11g Development Cookbook" has been added by Oracle to the "Learn More About Oracle Service Bus" section on OTN. You can find it over here together with other usefull...

OTN Article : Three Recipes for Oracle Service Bus 11g got published

"Whip up a fresh batch of service- and message-oriented solutions with these recipes from the Oracle Service Bus 11g Development Cookbook" Today two new items related to the Oracle Service Bus 11g Development Cookbook got published OTN Article : Three Recipes for Oracle Service Bus 11g Podcast Show Notes: Author Interview: Oracle Service Bus 11g...

Oracle Fusion Middleware Partner Community Forum Malage, the overview

On the 7th and 8th of februari i attended the Oracle Fusion Middleware Partner Community Forum in Malaga. A 4 day during event with other Oracle colleagues from other companies and from Oracle itself. After taking a early flight from Schiphol Amsterdam, we arrived on time in Malaga. Great weather, compared to the -12 degrees in The Netherlands. The agenda for the 4 days The first day started with the next list of session : Keynote Oracle Middleware Sales Strategy, Opportunities and...

Oracle Service Bus 11g Development Cookbook has been published!

Good news today from the publisher! The book of which i'm coauthor of has been published! After months of hard work it's finally there. Oracle Service Bus 11g Development Cookbook : http://www.packtpub.com/oracle-service-bus-11g-development-cookbook/book I hope you will all like it. Thanks to the other authors (Guido, Edwin, Jan and Mischa) for all their hard work and for the great few months of working together to establish this great piece of work. Special thanks go out to Guido...

Oracle Service Bus : Using custom xpath functions in xslt

One of the readers of my blog post 'Oracle Service Bus 11g, Using Custom Xpath Functions asked we can reuse the custom xpath functions in a xsl transformation. It's possibel to reuse the jar and calll the custom functions from within a xsl transformation. Starting with creating the resources needed for the custom xpath function : XML Configuration file (osb-custom.xml) Property file (optional, osb-custom.properties) Custom Function Class (jar package) Restart the osb service so...

Oracle SOA Suite : import in xsl from mds location

In one of my xsl transformations i needed to import a generic xsl from the mds store. For this i created a new jdeveloper application with a soa sar deployment descriptor and jar descriptor in it. Contents of the jar : [sourcecode language="xml"] SharedMDSResources/generic.xsl [/sourcecode] When i browse the mds repository i see the SharedMDSResources folder in the root of the tree (instead of in the apps folder). For testing i deployed the jar manually in the EM. In my...

Invitation to Fusion Middleware Partner Community Forum

INVITATION TO FUSION MIDDLEWARE PARTNER COMMUNITY FORUM SOA & WebCenter & BPM & WebLogic Partner Communities Do you want to learn about how to sell the value of Fusion Middleware by combining SOA, BPM and WebCenter Solutions?We would like to invite you to become updated and trained at our Fusion Middleware Partner Community Forum on February 7th and 8th 2011 at the NH Hotel in Malaga, Spain. Register Now More...

Oracle Service Bus, Request Entity Too Large

In the osb we use business services (http transport + wsdl) to call our composites on the soa suite. In a few situations the routing in the osb fail with the next error [sourcecode language="xml"] BEA-380000 Request Entity Too Large RouteNodeLeesDeclaratieCompleet response-pipeline [/sourcecode] Looking in the list of instances in the soa suite we see the instances over there just complete in a valid way but still the routing in the osb fails. Solution Go to the...

Oracle Service Bus, Generic fault handling

For a usecase i needed a construction which would give me the option to implemenent generic service error handling in which i could conditionally execute activities like alerts, reports, logging, etc One place which will contain all the error handling logic and which could be easily extended both in implementation of the logic for handling errors and being able to easily add new errors to be handle which the metadata for this error. In case third party applications decide to trigger new...

Oracle Service Bus, The number of parameters for registered XQuery resource System1_To_Fault does not match that given to it at runtime

To be able to make use of Dynamic Xquery the xqueries itself all need to have the same defined interface. So after defining the different xqueries and test them one by one in Eclipse all seem to work. On runtime i get the next error : [sourcecode language="xml"] The number of parameters for registered XQuery resource System1_To_Fault does not match that given to it at runtime [/sourcecode] I was pretty sure after logging all the binded input variables they were all containing...