UKOUG Technology Conference & Exhibition 2017 (Tech17)– call for papers a mention – submission deadline is Monday 26th June.

image

Tech17

4th – 6th December

ICC Birmingham, UK

www.tech17.ukoug.org

#ukoug_tech17 is looking for speakers, find out more: goo.gl/GCysJF

For additional call for papers visit our wiki.

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

Technorati Tags: SOA Community,Oracle SOA,Oracle BPM,OPN,Jürgen Kress

Call for Nominations: Oracle Excellence Awards 2017

image

Are your customers using Oracle Cloud Platform to deliver unique business value? If so, submit a nomination today for the 2017 Oracle Excellence Awards for Oracle Cloud Platform Innovation as their Oracle Sales Partner or encourage them to submit their own nomination. These highly coveted awards honor customers and their partners for their cutting-edge solutions using Oracle Cloud Platform. Winners are selected based on the uniqueness of their business case, business benefits, level of impact relative to the size of the organization, complexity and magnitude of implementation, and the originality of architecture.

Customer Winners receive a free pass to Oracle OpenWorld 2017 in San Francisco (October 1 – October 5) and will be honored during a special event at OpenWorld.  Award Winners become great references as well!

Our 2017 Award Categories are:

To be considered for this award, complete or have your clients complete the online nomination forms and submit before July 10th, 2017. For any questions email: innovation-cloud-platform_ww_grp@oracle.com

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

PaaS Summer Camps VII August 28th – September 1st 2017 Lisbon Portugal

image

You are working on Oracle PaaS opportunities or projects? Oracle is pleased to invite you to the PaaS Partner Summer Camps VII by the SOA & BPM and the WebLogic & Developer Partner Communities. Goal of the trainings is to support you to deliver a successful project. Most of the trainers are a member of the Oracle product management team.

Come to Lisbon to get a 5 days hands-on training in one of the following topics:

  • Process Cloud Service & Application Builder Cloud Service
  • API Cloud Platform Service & Integration Cloud Service
  • Cloud Application Development: JET + DevCS, ACCS, Stacks + CCS, Wercker as Docker centric DevOps tool & Management Cloud Service
  • Chatbots, Mobile Cloud Service & JET
  • Enrich SaaS with PaaS (CX and ERP Cloud)
  • Content & Experience Cloud & Chatbots–

For details please visit the 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

Technorati Tags: SOA Community,Oracle SOA,Oracle BPM,OPN,Jürgen Kress

PaaS Partner sales plays webcast June 28th 2017

image

Want to increase the PaaS & Middleware Oracle business? Create new service offerings and solutions for the Cloud?

FY18 Oracle Cloud Platform (PaaS and IaaS) & Middleware Sales Plays bring new opportunities to you as a partner:

» System Integrators: Generate consulting revenue with hybrid PaaS, IaaS& Middleware
» Outsourcing companies: Offer private and hybrid cloud solutions
» Independent Software Vendors: Build solutions based on PaaS, IaaS & middleware
» SaaS partners: Extend, Integrate and secure SaaS solutions with PaaS
» Hardware partners: Combine hardware with PaaS and IaaS to increase margins

Join the webcast here

image

Ed Zou LinkedIn

Visit the registration page here.

Call ID: 4070776 Call Passcode: 333111 and WebEx Session Number: 599366630

UK: +44 (0) 208 118 1001 & United States: 140 877 440 73

More Local Numbers

Schedule:

June 28th 2017 at 17:00-18:00 CET

Visit the registration page here.

For the latest information please visit Community Updates Wiki page (SOA Community membership required).

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

Installing SOACS Hybrid Agent EM13C by Kiran Tailor

image

In my last post we set up a hybrid agent and installed an OTD agent, in this post we shall create a SOACS agent. I am assuming you have already done the first few steps that were mentioned in my last post OTD Hybrid Agent (http://puredba.co.uk/oracle-traffic-director-otd-hybrid-agent-em-13c/)

  1. On SOACS Target Host

Insert the OMS server details into the host file:

Create the Agent Directory

1

2

#mkdir /u01/app/agentHome

#chown oracle:oracle /u01/app/agentHome

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

Technorati Tags: SOA Community,Oracle SOA,Oracle BPM,OPN,Jürgen Kress

Integration Design Pattern – Synchronous Facade for Asynchronous Interaction by Shreenidhi Raghuram

image

Introduction

In this blog, we will explore a Hybrid Message Interaction pattern, which combines the characteristics of traditional Synchronous Request-Reply and Asynchronous patterns. We will also see, the need for such a design pattern and how it can be implemented using Oracle SOA Suite.

Need for this Design Pattern

A Hybrid Synchronous-Asynchronous message exchange pattern is a requirement that pops up often in architectural discussions at customer engagements. The below discussion summarizes the need for such a design pattern.

Consider the following scenario:

A Web Client end-user fills in a form and submits a request. This is a blocking request and the client waits for a reply. The process is expected to reply to the user within a short period and let us assume that the client times out after 30 seconds. In a happy path, the backend systems are responsive and user receives the response within 30 seconds. This is shown in the below ‘Synchronous – Happy Path’ diagram.

Now, consider if a backend delay or system outage prevents a response from the website within 30s. All that the client receives is a Timeout Error. No further information is available and the user can only refill and resubmit the form, another time! This is shown in the below ‘Synchronous – Not so Happy Path’ diagram.

The above solution is designed for the happy path. It can even be optimized for a high throughput in the happy path scenario. But for the negative path, it is desirable to have a more responsive and user friendly behavior. We should note that any design for the negative scenario would inherently be Asynchronous in nature, as we do not want the user to wait for the delayed response. Rather the user should be notified by other means whenever such a response is available.

Even though the percentage of requests that end up in the delayed scenario may be quite less, it is still desirable that such requests are handled in a more user friendly manner. We also want to achieve the Asynchronous error handling without sacrificing the high performance of a purely synchronous interaction.

The next section proposes such a design. 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

Technorati Tags: SOA Community,Oracle SOA,Oracle BPM,OPN,Jürgen Kress

Integration Cloud Service LinkedIn adapter by Rolando Carrasco

image

After being trying some weeks/months ago to make this happen, finally the Linkedin adapter is working in my Oracle ICS instance.

The adapter supports these operations:

In this blog post we will show the scenario of Status Update. I think this is a good one, since you can implement something with your HR department that everytime they open a new position, it can be automatically updated in Linkedin. Wouldn’t that be great? Or if someone quits or move, but at the end a new position is opened, then with the upcoming steps you can achieve it.

The first thing is to login in Oracle ICS and go to the connection section to create a new one. Then look for Linkedin adapter:

Put a name on it:

Configure your Client ID and Client Secret that u will get after creating an application. 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

Technorati Tags: SOA Community,Oracle SOA,Oracle BPM,OPN,Jürgen Kress

Oracle’s API Platform Cloud Service is a huge moment for us as partners to implement such a great product

image

 

API Platform Cloud Service 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

Technorati Tags: API CS,API Platform Cloud Service,Cloud,PaaS,SOA Community,Oracle SOA,Oracle BPM,OPN,Jürgen Kress

The API Platform Cloud Service is a perfect fit for anyone who wants to manage and secure their APIs

image

API Platform Cloud Service 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

Technorati Tags: API CS,API Platform Cloud Service,Cloud,PaaS,SOA Community,Oracle SOA,Oracle BPM,OPN,Jürgen Kress

Oracle has done a great job with the API Platform CS – a showcase of how the cloud unburdens the on premises organization in terms of infrastructure, security, availability and ramp up time

image

API Platform Cloud Service 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

Technorati Tags: API CS,API Platform Cloud Service,Cloud,PaaS,SOA Community,Oracle SOA,Oracle BPM,OPN,Jürgen Kress