File Adapter: File Age parameter usage
Problem:What is the function of using File Age parameter in File Adapter?Solution:When user sets ‘File Age’ parameter in File Adapter wizard, then the BPEL will wait for ‘File Age’ time, before it...
View Articlecom.oracle.bpel.client.delivery.ReceiveTimeOutException
Problem:nested exception is: com.oracle.bpel.client.delivery.ReceiveTimeOutException: Waiting for response has timed out. The conversation id is bpel://localhost/default/HelloWorld~1.0. Please check...
View ArticleApplication Server HTTP 404 problem - Part 2
Follow this post if the solution published on my blog dated 16th April 2009 is not working.If making changes to default-web-site.xml file does not work, then try to change an entry in the server.xml...
View ArticleORABPEL-04077
Problem:ORABPEL-04077Cannot fetch a datasource connection.The process domain was unable to establish a connection with the datasource with the connection URL "jdbc/BPELServerDataSource". The exception...
View ArticleORABPEL-05250
Problem:BUILD FAILEDD:\Abhi\RatingCheck\build.xml:79: A problem occured while connecting to server "localhost" using port "80": bpel_RatingCheck_v2009_12_12__74238.jar failed to deploy. Exception...
View ArticleLogging System.out statements
Problem:Need to log System.out statements under Oracle Application Server 10g.Thoughts:For this requirement, I was searching on Internet and I got a solution which worked. Just thought of publishing...
View ArticleHAPPY NEW YEAR
Keep learning and stay connected to Oracle SOA.May each day brings happiness, prosperity and continued success...WISHING ALL BLOG READERS... A VERY HAPPY AND PROPSPEROUS NEW YEAR 2010.
View ArticleOPMNCTL command
Problem:Running OPMNCTL commands on Windows and Linux servers.Solution:For running OPMNCTL command on Windows:Ensure that before running you be at opmn\bin folderTo Start:>opmnctl startallTo...
View ArticleBPEL:Cannot find partnerLinkType 2
Problem:Cannot find partnerLinkType 2.PartnerLinkType "{http://xmlns.oracle.com/pcbpel/adapter/ftp/pl_get/}Get_plt" is not found in WSDL.Please make sure the partnerLinkType is defined in the...
View ArticleEmail to multiple Recipients
Problem:Sending Email from BPEL to multiple recipientsSolutionIt might just be the smallest topic I have ever blogged about, just thought to share it with you all. EmailPayload of the Notification...
View ArticleMCF Property in WSDL
MCF stands for "Managed Connection Factories". When configuring a Database Adapter using Adapter Configuration Wizard, a Database Connection is required to configure the adapter. This connection you...
View ArticleImporting libraries for using Java Exec
Problem:Want to use Java Exec, is it resulting in error?Solution:Add following libraries to your .bpel code:<bpelx:exec import="java.util.*"/><bpelx:exec...
View ArticleORABPEL-02182
Problem:ORABPEL-02182JTA transaction is not present or the transaction is not in active state.The current JTA transaction is not present or it is not in active state when processing activity or...
View ArticleResetting Console login Password
Problem:How do you change the password for BPEL Console user 'oc4jadmin'?Solution:Follow the below mentioned steps to accomplish this:1) Connect to SOA Suite EM Console (Application Server Control)2)...
View ArticleDeployment with Verbose
Problem:What is the importance of using verbose in your project?Solution:Verbose entry appears inside your BPEL project under build.properties file. When you add verbose=true to build.properties file...
View ArticleTimeout for Partnerlink
Problem:How to set timeout for Partnerlink or web service in BPEL?Solution:Timeout property is set in bpel.xml file under PartnerLinkBinding tag. Just you need to add a property as timeout.It is shown...
View ArticleJDeveloper: TODO
Problem:Adding Tasks to JDeveloper to keep track of development codeThoughts:We always need some kind of Task handler/reminder for our tasks during development so that if that is present in the source...
View ArticleHAPPY NEW YEAR
I wish all the readers a very and prosperous Happy New Year 2011. Hope to see new things coming this year from Oracle.
View ArticleORABPEL Spying-Part1
Requirement:Want to get the information on currently running processes - Shortest and Longest running instances on server?Solution:Below query will give you the desired result:SELECT * FROM ( SELECT...
View ArticleORABPEL Spying-Part2
Requirement:To get all BPEL instances and their duration that run longer than 'n' secondsSolution:SELECT process_id, creation_date, SUBSTR(modify_date-creation_date,12) Duration,...
View Article