InterviewSolution
| 1. |
What Is The Significance Of The /oracle/product/middleware/aia/aia_instances/my_instance/ Aiametadata/config/aiaconfigurationproperties.xml File? When An Interface Is Migrated From Dev To Test, How Do I Make Sure That This File Is Updated In Test Instance? Is It By Manually Updating And Running Updatemetadata.xml? Or The Aid Will Take Care Of It? |
|
Answer» This file is absolutely key at runtime as services read certain properties (e.g. the actual endpoint of the services that are CALLED) from that file. I would assume your services will FAIL if you don’t have a VALID file on your test environment, i.e. having a section for each of your services. And yes, the AID TAKES care of maintaining it. Every service you created with Service Constructor should have a file called AIAServiceConfigurationProperies.xml. When running AID to deploy such a service, it first adjusts the values in that file to match the current environment, then merges the CONTENT into AIAConfigurationProperties.xml and finally uploads it to MDS. This file is absolutely key at runtime as services read certain properties (e.g. the actual endpoint of the services that are called) from that file. I would assume your services will fail if you don’t have a valid file on your test environment, i.e. having a section for each of your services. And yes, the AID takes care of maintaining it. Every service you created with Service Constructor should have a file called AIAServiceConfigurationProperies.xml. When running AID to deploy such a service, it first adjusts the values in that file to match the current environment, then merges the content into AIAConfigurationProperties.xml and finally uploads it to MDS. |
|