Tuesday, August 26, 2008

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!

No comments: