REST Enabling Oracle Fusion Sales Cloud using Java By Angelo Santagata
October 15, 2014 Leave a comment
Oracle Fusion Sales Could (Rel7) currently has a WebServices/SOAP interface however many clients & partners are interested in accessing Oracle Fusion Sales Cloud using REST & JSON. The main difference between a SOAP service and a REST service is the “way” you get access to the data and methods you use. Whilst SOAP is very powerful, very complete and also can be quite complex perhaps over-complex. REST in comparison is rather simple and uses the http verbs (GET,POST,PUT etc) to define the operation and can be as powerful as you desire.
There are many documents on the web which discuss REST vs SOAP but in summary :
SOAP
Originally defined as Simple Object Access Protocol. A protocol specification for exchanging structured information in the implementation of Web Services in computer networks.
An envelope, which defines what is in the message and how to process it A set of encoding rules for expressing instances of application-defined datatypes And a convention for representing procedure calls and responses.
Relies on eXtensible Markup Language (XML) as its message format, and usually relies on other Application Layer protocols (most notably Remote Procedure Call (RPC) and HTTP) for message negotiation and transmission. This XML based protocol consists of three parts:
REST
RESTful web service (also called a RESTful web API) is a simple web service implemented using HTTP and the principles of REST. Such a web service can be thought about as a collection of resources. The definition of such a web service can be thought of as comprising three aspects:
The base URI for the web service, such as http://example.com/resources/
The MIME type of the data supported by the web service. This is often JSON, XML or YAML but can be any other valid MIME type.
The set of operations supported by the web service using HTTP methods (e.g., POST, GET, PUT or DELETE).
References : · http://en.wikipedia.org/wiki/Representational_State_Transfer#RESTful_web_services & · http://en.wikipedia.org/wiki/SOAP
Why would you want to use REST instead of SOAP?
There are many reasons why one would/could want to use REST instead of SOAP, one reasons is that SOAP is considered too heavy-weight for mobile applications, where payload size is critical, and also instead of XML, JSON is the preferred message format.
The JSON message format is also very appropriate when interfacing with systems that use JavaScript (such as browsers or node.js) and hence adds weight to the desire to use REST instead of SOAP for accessing Oracle Fusion Sales Cloud.
So getting to the matter at hand and getting RESTful
So enough of why REST , how does one do it for Oracle Sales Cloud (aka CRM). Thankfully this is rather straightforward, at Oracle OpenWorld 2013 you would have seen Thomas Kurian demonstrate our new Oracle SOA Suite and how it can transform a SOAP service into a REST service whilst this is excellent and incredibly productive some clients dont want to install SOA Suite soley for this purpose. Thankfully its possible to do the same using pure Java and deploy it to a cloud infrastructure, like the newly release Oracle Java Cloud Service. It is however worth noting that using SOA Suite is preferable because it accelerates the deployment tremendously and would ultimately be more "agile".
So what are the basic steps to REST enable a Fusion Sales Cloud Service?
- Download and install the Jersey REST libraries, we’ll use these for the creation of the RESTful service
- Generate the SOAP Client Side Proxie(s) for Oracle Sales Cloud. In this example we’re using static proxies however for a more industrialized approach Id recommend going down the dynamic proxy route, more flexible and less likely to break at runtime, however at a development cost.
- Create "wrapper" JAXB Objects so that you can return XML data. This is needed because the baseline SOAP clients dont have @RootElement (s) defined.
- Create the RESTful project and expose the services you require.
- Deploy to your runtime Java contain, like the Oracle Java Cloud Service
- Consume by your favourite client, like a mobile phone etc
For the purpose of the tutorial (in the document), I’ve documented step by step how you can build the above, query Oracle Fusion Sales Cloud, manage security (for development & production) and how to deploy the code to the Oracle Java Cloud. Obviously take note that this document is more of a tutorial than anything else when building your own custom REST Adaptor you would tailor it specifically to what services your client (mobile phone, javascript widget etc) requires.
Happy reading Material: Document & Template Files & Complete Solution (needs Jersey files downloadable separately)
Note : This document and source code is sample code and assumes no support from Oracle Corporation or myself. Read the complete article here.
For regular information on Oracle SOA Suite become a member in the SOA & BPM Partner Community for registration please visit www.oracle.com/goto/emea/soa (OPN account required) If you need support with your account please contact the Oracle Partner Business Center.

The pace of change, and the need to modernize IT and simultaneously deliver business innovations such as Social, Mobile and Cloud is stressing enterprise operating models as never before. To be sure, success in both is an imperative in today’s dynamic business environment. However, traditional packaged enterprise applications such as ERP can no longer deliver upon the wide range of opportunities and challenges facing IT Leaders. But for most enterprises, outright replacement is impossible. A new approach to enterprise systems is needed, one that leverages existing investments, while layering new capabilities around them within an open, flexible and secure architecture.
The simplified user interface (UI), designed by the Oracle Applications User Experience team, extends its reach in the recent Oracle Applications Cloud Release 8 with user experience enhancements that include expanded simplicity, expanded visualizations and analytics, and expanded extensibility and customization options – all in the cloud. Check the Voice of User Experience (VoX) blog for a look at some of the
With this release the number of viewlets (video’s) has grown from 21 to 37. Each viewlet can be shown individually or in conjunction with any others and can show either technical feature or business centric demo’s. There is a matrix of options for using the demos, to help you select relevant materials there is a ScenarioMatrix.xls spreadsheet, you can filter on any of the columns to reduce to the viewlets that interest you.
objects.These services are typically useful for UI driven integrations such as looking up FA information from external application UIs, using third party Interfaces to create/update data in FA. They are also used in non-UI driven integration uses cases such as initial upload of business or setup data, synchronizing data with an external systems, etc. 
The Simplified User Experience Design Patterns for the Oracle Applications Cloud Service eBook has been published recently. The free eBook provides the user experience design patterns that Oracle uses to build simplified user interfaces (UIs). Read more about it on the 

