view counter

SOA Feed

Oracle SOA Suite 10g and 11g resources, news, and support articles.

Integrate and Mobilize - Oracle Magazine Article

Check out the Service Integration and BPM article on "Integrate and Mobilize" in the new issue of Oracle Magazine.  CoverGreat snapshots on Oracle SOA Suite and Oracle BPM Suite customers San Joaquin County, California and Teva North America, subsidiary of Teva Pharmaceutical Industries.

ADF With No Bindings: SortableFilterableCollectionModel Implementation

Not using ADF bindings but wanted to have a sortable table? This post is for you.
I am glad to share a sortable CollectionModel implementation that is so elegantly simple. :)
This model supports filtering as well but the im-memory filtering concept based on groovy will be discussed on a subsequent post.
package soadev.ext.trinidad.model;

import java.util.ArrayList;
import java.util.Collections;

ADF With no Bindings: Understanding the Trinidad CollectionModel

Did you ever wonder what the trinidad CollectionModel is good for? Well, I did.
According to the docs...
10.2 Displaying Data in Tables 
The table component uses a CollectionModel class to access the data in the underlying collection. This class extends the JSF DataModel class and adds on support for row keys and sorting. In the DataModel class, rows are identified entirely by index. This can

One More Time: What is PaaS?

Defining Platform as a Service is hard. I've written about this previously, but as cloud platforms advance, it's getting even harder. Going forward, it's possible that the idea of PaaS will become so blurry, so loosely defined, that it loses its value as a technology category.

ADF With No Bindings: Simple Tables

In this post, I will describe how to work with simple tables without a binding layer in Oracle ADF Faces 11g RC.

Summary:
Create a backing bean
Drop a component to the page
How to add new row
Managed row selection
Handling selection events
Create a backing bean//package and import statements
public class TableForm {
private List jobList;
private RichTable jobTable;

# 244 Recommended reading around the Oracle SOA/BPM platform

One of our partners has been asking for some recommended reading -

I can wholeheartedly suggest the following titles -

Oracle Service Bus 11g Development Cookbook 

Offline Oracle Service Bus Configuration export

With Oracle Service Bus PS6 or 11.1.1.7 we finally have an new offline build tool with does not require Eclipse (OEPE).  With this OSB configjar tool ( located in the OSB home /tools/configjar/ folder ) you can make OSB export sbconfig jar based on 1 or more OSB projects or even with more then one OSB Configuration projects. Plus have total control what to include or exclude.

In this blogpost I

view counter