12.1.0.2 RAC Installation – Step by Step installation on VMware

12.1.0.2 RAC Installation – Step by Step installation on VMware

12.1.0.2 RAC Installation ======================== RPMs for 12c on RHEL 6.x Check if the pre-requisite packages are installed using rpm –q  command as shown below. rpm –q <package> e.g: rpm –q binutils The list of packages to be installed are below   binutils-2.20.51.0.2-5.11.el6 (x86_64) compat-libcap1-1.10-1 (x86_64) compat-libstdc++-33-3.2.3-69.el6 (x86_64) compat-libstdc++-33-3.2.3-69.el6 (i686) gcc-4.4.4-13.el6 (x86_64) gcc-c++-4.4.4-13.el6 (x86_64) glibc-2.12-1.7.el6 (i686) […]

read more

OSB FTP Poller continuously throwing exception – while no file pending on FTP Location

We have been recently facing an issue with an OSB Proxy using FTP Protocol, where in we kept getting the errors on the logs even when we were not putting new files in. Errors lead us to believe there were some permission issues. Unable to get file NYSolutionsSourcedir/43646343-dfh34d2.232dfg3d__testFile.txt.Stage on attempt number 0: java.io.IOException: Data: OpenSocket, Permission Denied? […]

read more

Using JMS Transport with OSB

JMS Transport – Advanced settings The option Enable Message Persistence is by default enabled, which guarantees message delivery because the messages persist and will survive server shutdowns and failures. To improve throughput, deselect this option if the occasional loss of a message is tolerable. Set a time interval in milliseconds in the Expiration field to […]

read more

Installing Spring Tool Suite and configuring Spring for a development PC

In order to install Spring Integration on another developer machine I would advise using Spring Tool Suite as it’s the preferred IDE for Spring Development on any of the spring modules including Integration. Download Spring Tool Suite. http://spring.io/tools/sts/all Download and Install JAVA. http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html Set Paths JAVA_HOME and add entry to path variables You can refer […]

read more

Rest Enabling SOA using OSB in Oracle 12c

Found this video which shows one of the very important features of SOA leveraging OSB in 12c.

read more

SOA INFRA useful everyday queries

Very useful daily SOA 11g queries

read more

Installing Oracle SOA Suite 12c

Hi All, As you all know that the Oracle 12c is out now… this is the first Major release where oracle has now combined the Oracle Service Bus with the SOA Suite Install… and its apparently only a 30 min single installation… So firstly download the soa suite  from http://download.oracle.com/otn/nt/middleware/12c/121300/fmw_12.1.3.0.0_soaqs_Disk1_1of1.zip This contains SOA Suite 12.1.3 Size: 2.97 GB, Check […]

read more

OSB Deployment scripts 11.1.1.7 using configtool

These instructions are only valid for OSB Release 11.1.1.7 onwards.   How to export desired projects using the configjar utility   The configjar tool is located in the OSB installation directory under C:oracleMiddleware11117Oracle_OSB1toolsconfigjar [Check the path relative to your install] Run the setenv.cmd And execute the C:oracleMiddleware11117Oracle_OSB1toolsconfigjarconfigjar.bat -settingsfile C:OSB_DeploymentOSBPS6_MavenConfigToolnysolutions_export_projects.xml   Where the nysolutions_export_projects.xml file contains the names […]

read more

JMS Message Bridging – SwiftMQ – Weblogic JMS

Found this really useful link on swift MQ website… http://www.swiftmq.com/products/extension/xt_bridge/example/index.html    

read more

Reg for UK postcode validation

Sample Salesforce.com code for UK postcode validation [code language=”css”] (!ISBLANK(BillingPostalCode)&& !($Setup.No_Validations__c.Flag__c )&& OR(‘Yes’== CASE(BillingCountry,’United Kingdom’,’Yes’,’UK’,’Yes’,’GB’,’Yes’,’England’,’Yes’,’Scotland’,’Yes’,’Wales’,’Yes’,’Northern Ireland’,’Yes’,’NI’,’Yes’,’No’), ISBLANK(BillingCountry)) && !OR(REGEX(BillingPostalCode, ‘[a-zA-Z]{1,2}[a-zA-Z0-9]{1,2} [0-9]{1}[a-zA-Z]{2}’),REGEX(BillingPostalCode, ‘[a-zA-Z]{1,2}[a-zA-Z0-9]{1,2}[0-9]{1}[a-zA-Z]{2}’))) [/code]

read more