I'm working on a project where we use ADF for partial page rendering. The JARs we're using are:
- adf-faces-impl-10_1_3_0_4.jar
- adf-faces-api-10_1_3_0_4.jar
So far I've determined that the af:document tag in the page generates a number of JavaScript includes but sometimes these are generated incorrectly. For example, we see these which are OK:
- /MyApp/adf/jsLibs/Common10_1_3_0_4_2009_jrt.js
- /MyApp/adf/jsLibs/resources/LocaleElements_en10_1_3_0_4_2009_jrt.js
- /MyApp/adf/jsLibs/ScriptEval10_1_3_0_4_2009_jrt.js
and these which aren't:
- /MyApp/adf/jsLibs/Common10_1_3_0_4.js
- /MyApp/adf/jsLibs/resources/LocaleElements_en10_1_3_0_4.js
- /MyApp/adf/jsLibs/ScriptEval10_1_3_0_4.js
Can anyone suggest why we might be seeing the wrong references generated?
We have multiple server clones running, but I believe they all have the same version of the JARs so I'm wondering if there might be some other request attribute (for example) that is affecting the generated includes. I have checked the various places where the document tag is used, and it has no additional parameters.
Thanks.