October 2014 Fusion Middleware (FMW) Proactive Patches Released

We are pleased to announce that the following Fusion Middleware (FMW) Proactive  patches were released on October 14, 2014.

Bundle Patches :

Bundle patches are collections of controlled, well tested critical bug fixes for a specific product  which may include security contents and occasionally minor enhancements. These are cumulative in nature meaning the latest bundle patch in a particular series includes the contents of the previous bundle patches released.  A suite bundle patch is an aggregation of multiple product  bundle patches that are part of a product suite.

  • Oracle Business Intelligence Enterprise Edition (OBIEE) 11.1.1.7.141014 bundle patch
  • Oracle Access Manager (OAM) 11.1.1.7.2 and 11.1.1.5.7 bundle patches.
  • Oracle Adaptive Access Manager (OAAM) 11.1.1.5.3 bundle patch.
  • Oracle Identity Analytics (OIA) 11.1.1.5.8 bundle patch.
  • Oracle Identity Management Suite Bundle Patch 11.1.2.1.5 consisting of
    • Oracle Access Manager (OAM) 11.1.2.1.4 bundle patch.
    • Oracle Adaptive Access Manager (OAAM) 11.1.2.1.3 bundle patch.
    • Oracle Platform Security for Java (OPSS) 11.1.1.6.3 bundle patch.
    • Oracle Entitlement Server (OES) 11.1.2.1.1 bundle patch.
  • Oracle Identity Management Suite Bundle Patch 11.1.2.2.3 consisting of
    • Oracle Access Manager (OAM) 11.1.2.2.2 bundle patch.
    • Oracle Adaptive Access Manager (OAAM) 11.1.2.2.1 bundle patch.
    • Oracle Unified Directory (OUD) 11.1.2.2.1 bundle patch.
  • Oracle Identity Manager (OIM) 11.1.2.2.4 and 11.1.2.1.9 bundle patches
  • Oracle OpenSSO Policy Web Agents 3.0.0.5 bundle patches.
  • Oracle SOA Suite (SOA) 11.1.1.7.5 bundle patch
  • Oracle Service Bus (OSB) 11.1.1.7.3 bundle patch.
  • Oracle WebCenter Portal (WCP) 11.1.1.8.5 bundle patch

Patch Set Updates (PSU)

Patch Set Updates (PSU)  are collections of well controlled, well tested critical bug fixes for a specific product  that have been proven in customer environments. PSUs  may include security content but no  enhancements are included. These are cumulative in nature meaning the latest PSU  in a particular series includes the contents of the previous PSUs  released. 

  • Oracle WebLogic Server 12.1.3.0.1 ,12.1.2.0.3, 12.1.1.0.9 and 10.3.6.0.9 PSUs.

Critical Patch Update (CPU) :

The Critical Patch Update program is Oracle’s quarterly release of security fixes.

Additional patches were released as part of Oracle’s Critical Patch Update program for the following products and versions

  • Oracle Adaptive Access Manager (OAAM) 11.1.1.7.0
  • Oracle Endeca Information Discovery Studio 3.1, 3.0, 2.4, 2.3, 2.2.2
  • Oracle Enterprise Data Quality 9.0.11, 8.1.12
  • Oracle Forms 10.1.2.3.2 for eBiz only
  • Oracle JDeveloper 12.1.3.0.0 , 12.1.2.0.0, 11.1.2.4.0 and 11.1.1.7.0
  • Oracle Identity Manager (OIM)  11.1.1.7.0 and 11.1.1.5.0
  • Oracle WebLogic Server 10.3.2.0 and 10.0.2.0

For more information :

We want to acknowledge everyone’s hard work to get high-quality patches out to our customers.

 

SOA & BPM Partner Community

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.

Blog Twitter LinkedIn image[7][2][2][2] Facebook clip_image002[8][4][2][2][2] Wiki

REST Enabling Oracle Fusion Sales Cloud using Java By Angelo Santagata

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?

  1. Download and install the Jersey REST libraries, we’ll use these for the creation of the RESTful service
  2. 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.
  3. Create "wrapper" JAXB Objects so that you can return XML data. This is needed because the baseline SOAP clients dont have @RootElement (s) defined.
  4. Create the RESTful project and expose the services you require.
  5. Deploy to your runtime Java contain, like the Oracle Java Cloud Service
  6. 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.

SOA & BPM Partner Community

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.

Blog Twitter LinkedIn image[7][2][2][2] Facebook clip_image002[8][4][2][2][2] Wiki

IoT Summit Dusseldorf 2014 October 22nd 2014

The Interneimaget of Things Will Change Your Business: What’s Your Plan?

The Internet of Things (IoT) represents the convergence of mobile, cloud, big data, and analytics. To leverage the IoT and reinvent themselves, businesses have to grapple with the complexities of managing big data, multiple devices, platforms, and connections. Connected devices that form the genesis of the IoT are getting smarter. They are evolving our physical world into a new kind of interconnected information system, driving a new wave of data, and creating unprecedented business value by driving new revenue services for those who embrace the opportunity.
The IoT is uniquely transformative and has the potential to reinvent everything from supply chains to the customer experience. It will help companies apply data-driven insights and use machine-to-machine technology to diagnose and solve problems—closer to the edge device and without human intervention. The question is how do you quickly pinpoint the innovations and opportunities that will help your company use IoT data to reinvent your business for the digital age?
Session Highlights:

  • The IoT revolution: productive or disruptive?
  • IoT at work: perspectives on driving success
  • Oracle’s vision for a secure IoT from the edge to the enterprise: insights into a holistic solution

Who Should Attend:

  • CEOs/CIOs/CTOs of organizations planning or delivering IoT and M2M strategies or initiatives
  • EVPs/SVPs/VPs heading IoT and M2M groups within organizations or who are in charge of large-scale projects requiring intelligent devices, data collection, management, and analysis, and the storage and extraction of business intelligence data

Check-in starts @ 08:30 CET
Lunch 12:00 – 13:30 CET

For details please visit our registration page here.

SOA & BPM Partner Community

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.

Blog Twitter LinkedIn image[7][2][2][2] Facebook clip_image002[8][4][2][2][2] Wiki

BPM Suite 12c: Oracle Business Rules – Verbal Rules By Marcel van de Glind

In this blog post I will transform a Decision Table step-by-step into the new Verbal Rules. As a starting point I created a composite with a BPM, a BPEL and a Rules component. Both BPM and BPEL components use the same Rules component. See the following three screenshots. You can download the sample application with this starting point from here.
Read the complete article here.

SOA & BPM Partner Community

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.

Blog Twitter LinkedIn image[7][2][2][2] Facebook clip_image002[8][4][2][2][2] Wiki

2 Minute Tech Tip: Specialization and Certification

Watch the video here

image

Key links for developers are SOA Bootcamp on-demand http://tinyurl.com/soaBootcamp and SOA & BPM Partner Community www.oracle.com/goto/emea/soa

SOA & BPM Partner Community

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.

Blog Twitter LinkedIn image[7][2][2][2] Facebook clip_image002[8][4][2][2][2] Wiki

My first take on SOA/BPM Suite 12c. by Jang Vijay Singh

The Oracle Fusion Middleware circles have been abuzz this weekend with the launch of the latest and greatest release of BPM/SOA Suite 12c.
The 12c release announcement late Friday evening (GMT+1, UK time) caught me pleasantly off guard as during the past 6 months I have been very focused on a client project.

Listing below are just a few of my initial notes on the features that caught my attention.
– Experience with initial installation
Downloaded the generic quick start installation bundle for 64 bit JVM’s.
After the download, it took 9 minutes to install and get JDev running with a blank BPM project (Others on the twitter hashtag #BPMSuite12c reported around 15-20 minutes so I think my lower time might be due to the solid state drive in my laptop). Configuration of the integrated domain and launching the server took longer though but was straightforward and smooth.
I really might be one of the first few in the UK (maybe even the first) who reported installing 12c on the twitter hashtag #BPMSuite12c (1:30 AM UK Time on the 28th of June) after its public release.
– True convergence of BPM and BPA?
Sounds like marketingspeak, but that is the phrase that comes to mind when I see the new ‘BA’ circle that surrounds the familiar ‘BPM loop’ I felt the BPM Composer 11g completely lacked BPA (business process analysis) support but that seems to have changed now..
– Feature: process comparator/ history tab in BPMN
I had noticed in earlier releases that the ‘history’ tab used to be missing in the JDeveloper BPMN studio’s process designer view. BPMN definition is essentially just another XML file (albeit a lot more complex to interpret without tool support unlike BPEL) so this didn’t make much sense. Seeing the ‘history’ tab with the ‘process comparator’ feature made me realise why it took this long. It’s a fairly complex feature to have (and very useful to have for any collaborative development or even for any to-and-fro between the composer and JDev BPM studio). They needed to get it right.

Read the complete article here.

SOA & BPM Partner Community

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.

Blog Twitter LinkedIn image[7][2][2][2] Facebook clip_image002[8][4][2][2][2] Wiki

BPM Suite 12c: Quick Start installation – 20 minutes and good to go By Lucas Jellema

Oracle released BPM Suite 12c in June 2014. Just like SOA Suite 12c – released the day before – this SNAGHTML224b04release comes with the quick start option: to quickly start going through development and test iterations, the development environment (JDeveloper + BPM Studio) is now equipped with an Integrated WLS that contains the BPM Suite 12c run time engine. All one needs to not only develop but also to run a BPM process is packaged in a single environment that is installed from a single file (well, a single ZIP file that contains two jar files). It takes no longer than 20 minutes to have your first process up and running.
I will tell you how to do that – on Windows in this case. (the documentation on the installation process is also quite clear – see http://docs.oracle.com/middleware/1213/jdev/install/install.htm#CHDIDICH)
1. Go to OTN (http://www.oracle.com/technetwork/middleware/bpm/downloads/index.html) and download the BPM Suite 12.1.3 installation file (3.8 GB)

Read the complete articles here.

SOA & BPM Partner Community

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.

Blog Twitter LinkedIn image[7][2][2][2] Facebook clip_image002[8][4][2][2][2] Wiki

Welcome to BPM 12c by Niall Commiskey

Thanks for all your superb PTS SOA & BPM trainings! Read all the posts at Niall blog here. Here are some of the developer oriented new features of BPM 12c

– Quick Start Install
– Force Commit on Activity Complete
– Process Instance Expiration
– Business Parameters
– Skip and Back Error Handling
– Catalog Enhancements and groovy scripting
– Debugging
– Verbalisation of Business Rules
– Enhanced Business Rules editing via SOA Composer
– More OOTB dashboards
– ACM – Support fro sub cases
– Revamped BAM composer
– Migration path from 10g to 12c
– easy upgrade from 11g to 12c

#1 BPM 12c New Features – an overview
#2 BPM 12c New Features – skip and back error handling
#3 BPM 12c New Features – groovy scripting

SOA & BPM Partner Community

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.

Blog Twitter LinkedIn image[7][2][2][2] Facebook clip_image002[8][4][2][2][2] Wiki

BPM Suite 12c – Quick Start Installation by Danilo Schmiedel

This video demonstrates the new Oracle BPM Quick Start Installer – beginning with the installation of JDeveloper 12.1.3, starting the embedded Weblogic server, deploying a simple BPM process and testing it via Enterprise Manager.
Watch the video on YouTube here.

SOA & BPM Partner Community

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.

Blog Twitter LinkedIn image[7][2][2][2] Facebook clip_image002[8][4][2][2][2] Wiki

BPM Suite 12c partner resource kit

Technical resources

Partner resources

SOA & BPM Partner Community

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.

Blog Twitter LinkedIn image[7][2][2][2] Facebook clip_image002[8][4][2][2][2] Wiki