There might be different types of issues with Oracle SOA/BPM setup in your local/development environment.
The below solution might help you in solving the issue with login into OracleBPMWorkspace with weblogic / basic user.
Get the hostname from command prompt .
Then open the windows explorer and navigate to the bin folder of WLS bpm domain.
For ex : C:\Oracle\WLSOAMware11117\user_projects\domains\bpm_domain\bin\
Edit startManagedWebLogic.cmd and replace 127.0.0.1/localhost with the hostname which you got from above command.
For example it would be looking as below:
Before : http://localhost:7001 or http://127.0.0.1:7001
After : http://<<hostname>>:7001
Login into weblogic console - http://localhost:7001/console.
Click on domain under DomainStructure and select 'Control' tab.
Then select AdminServer,and change ListenAddress from localhost to <<hostname>> and click on save to save changes.
Similarly, change the ListenAddress for soa_server1 also from localhost to <<hostname>> and click on save button at the bottom and save it
Change the listener address for other managed servers if you have any.For example, If you have BAM server, change the ListenAddress from localhost to <<hostname>> for bam_server1 and save it.
After performing above config changes, restart both the Admin and Managed servers. And try to access console, em, OracleBPMWorkspace with the hostname instead of 127.0.0.1/localhost.Since you have changed the config for Listener Address everywhere from localhost to <<hostname>>
So the endpoint for OracleBPMWorkspace need to be : http://<<hostname>>:8001/bpm/workspace
Good Luck with your coding !!
The below solution might help you in solving the issue with login into OracleBPMWorkspace with weblogic / basic user.
Get the hostname from command prompt .
Then open the windows explorer and navigate to the bin folder of WLS bpm domain.
For ex : C:\Oracle\WLSOAMware11117\user_projects\domains\bpm_domain\bin\
Edit startManagedWebLogic.cmd and replace 127.0.0.1/localhost with the hostname which you got from above command.
For example it would be looking as below:
Before : http://localhost:7001 or http://127.0.0.1:7001
After : http://<<hostname>>:7001
Login into weblogic console - http://localhost:7001/console.
Click on domain under DomainStructure and select 'Control' tab.
Then select AdminServer,and change ListenAddress from localhost to <<hostname>> and click on save to save changes.
Similarly, change the ListenAddress for soa_server1 also from localhost to <<hostname>> and click on save button at the bottom and save it
Change the listener address for other managed servers if you have any.For example, If you have BAM server, change the ListenAddress from localhost to <<hostname>> for bam_server1 and save it.
After performing above config changes, restart both the Admin and Managed servers. And try to access console, em, OracleBPMWorkspace with the hostname instead of 127.0.0.1/localhost.Since you have changed the config for Listener Address everywhere from localhost to <<hostname>>
So the endpoint for OracleBPMWorkspace need to be : http://<<hostname
Comments
Post a Comment