Tuesday, August 26, 2008

Replace Null Value with String in BPEL

Please follow the thread where i have provided the solution

http://forums.oracle.com/forums/message.jspa?messageID=2723568#2723568

Cheers!

Deploying Bulk Bpel Processes from JDeveloper

Deploying Multiple Bpel Processes

Find my full solution here!

http://forums.oracle.com/forums/message.jspa?messageID=2725746#2725746

Cheers guys!!
Deepak

Error in deploying BPEL Process from Jdeveloper

Common Deployment Error from JDeveloper!

BUILD FAILED
C:\product\10.1.3.1\OracleAS_1\j2ee\home\SFA\LoginToSFA\build.xml:79: A problem occurred while establishing a connection to the BPEL Server.
Please make sure the server is running on host "127.0.0.1", port "8888".


Solution:

Go to the Bpel Process directory and open the build.xml file, go to section where it says:

| Deploying bpel process ${process.name} on ${http.hostname}, port ${http.port}

user="${admin.user}" password="${admin.password}"
domain="${domain}" process="${process.name}"
rev="${rev}" dir="${process.dir}/output"
hostname="${http.hostname}" httpport="${http.port}"
verbose="${verbose}"

Change the hostname="${http.hostname}" httpport="${http.port}"
for Example:

hostname="localhost" httpport="8888"

Now try to deploy, It should work!

If this doesnt solve your purpose, Leave a comment on this post.

Cheers!