The API call [1] you mentioned is not recommended to be used for the use
case you are after.The call [1] gets bound to the bundle performing the
call (the scripting bundle in this case).So, you have two optionsUse
getConfiguration(configName, null) - this way you're only getting the
configuration without binding it. However, this call will create the
configuration if it doesn't exist, which is not what you want (I assume
!).Therefore, use ConfigurationAdmin.listConfiguations instead for a
cleane...