Hi,
Below is the issue which we identified.
In the client XMLConfiguration add, in the addExtension method i had to replace add method with addInternalExtensions method.
------------omitting other codes -------------------
changed from ---> if (nodeName.equals("MetaData")) { add(ExtensionPoint.InternalMetaData,getValue(c.item(i))); }
changed to -> if (nodeName.equals("MetaData")) { addInternalExtension(ExtensionPoint.InternalMetaData,getValue(c.item(i))); }
The addInternalExtension method i was able to get it from the server package.
Thanks and Best Regards,
Vinay R M.