When your BPEL Processes goes into the unknown state and in that case you can't do anything(shutdown, startup, retired etc.) and when you click on any action following error is thrown:
In that case you can delete composite entry from the MDS and after restarting the server unknown composites are not visible in em console.
Internal error: Failed to make composite state update: Composite "Default/HelloWorld!1.0*soa_cad506cc-72bd-4b2c-9990-5c84ea3861c7" does not exist. |
How to remove composite entry from MDS
- Run wlst.sh ( /app1/Oracle/Middleware/Oracle_SOA1/common/bin/wlst.sh)
- Connect to SOA Server Instance i.e. connect('weblogic', 'weblogic123', 't3://10.3.15.102:8001')
- Export the metadata. By running the command exportMetadata(application='soa-infra', server='soa_server1', toLocation='/home/oracle/mds', docs='/**'), here "/home/oracle/mds" is the location on the machine where all the MDS data exported.
- After Exporting the MDS, two folder are created in "/home/oracle/mds" i.e. deployed-composites and soa.
- Now go to deployed-composites folder there is deployed-composite.xml, open that file in an editor and remove all the faulted composite entry.
- After saving the file, Import the MDS by running the command importMetadata(application='soa-infra',server='soa_server1', fromLocation='/home/oracle/mds',docs='/**')
- Restart the SOA Server.
No comments:
Post a Comment