Tag Archives: Web Services

Duplicate instances when using DB adapter in high availability environment.

Many a times I have noticed that when you use DB Adapters (SOA Suite 11g) for integrating with applications like the E Business Suite in a clustered high availability environment, at times there will be multiple instances for the same request. The number of instances each entry in the DB would generate would directly correlate […]

read more

Start Small, Grow Fast

A really useful post by Edwin, Ronald and Demed Start Small, Grow Fast. Start Small, Grow Fast by Edwin Biemond, Ronald van Luttikhuizen, and Demed L’Her A set of pragmatic best practices for deploying a simple and sound SOA footprint that can grow with business demand. Published January 2012 Table of Contents Administrative considerations Does your […]

read more

Oracle JCA Adapter for Database

Distributed Polling First Best Practice: SELECT FOR UPDATE (SKIP LOCKED) via Oracle JCA Adapter for Database.

read more

BPEL vs Oracle Service Bus/Mediator

In continuation to my previous post about comparision between Oracle Service Bus (OSB formerly ALSB) and Mediator (formerly OESB) I thought I would like to extend it a bit to include the comparision with BPEL as well. BPEL Process Manager is the primary composition, orchestration and process engine in the SOA Suite. primarily used for stateful and […]

read more

Weblogic transaction timed out after 302/603 seconds issue

Problem: Transaction Rolledback.: weblogic.transaction.internal.TimedOutException: Transaction timed out after 603 seconds A lot of you might have encountered an issue of Weblogic transaction timed out after 302/603 etc seconds. We have been struggling with this for some time as well. Non Recoverable System Fault : Transaction Rolledback.: weblogic.transaction.internal.TimedOutException: Transaction timed out after 603 seconds BEA1-3FB6FB464035C13E3227 at […]

read more

Migrating SOA Suite 10 g components to SOA suite 11g

Hi Patrons, I have been working on some very exciting assignments offlate and one of the key ones which would like to share is the Migration from SOA suite 10g to SOA suite 11g. There are various options for this including using Jdeveloper and ant script. I prefer using a mix of both. I would […]

read more

introduction to Oracle Application Integration Architecture

AIA defines a common vocabulary of common business entities and their corresponding services. AIA defines a common vocabulary across applications and industries. Enterprise Business Objects (EBOs) are the key elements in this context. They canonically describe standard business entities such as an order or an invoice. Based on these generic business entities, AIA delivers other […]

read more

Using Oracle BPEL Process Manager with Oracle Service Bus part 2

Calling OSB service from BPEL process In my previous post, I already talked about calling BPEL services from OSB. In this blog entry I will show you how to call an synchronous OSB proxy service from BPEL. If you have problems to get this working, please see my previous blog entry how to solve this. […]

read more

Writing Schemas and Web services Contracts (part 1)

read more

How to Upload Multiple Files in Java

package com.mp.ws; /** * * @author nitinaggarwal * */ public interface IFileUpload { public byte[] get1File(String name); public byte[][] getMulitpleFiles(String names[]); public String getXmlFile(String name); } package com.mp.ws; /** * * @author nitinaggarwal * */ public class FileUpload implements IFileUpload { public byte[] get1File(String name) { byte data[] = null; FileReader fr = new FileReader(); […]

read more