How to access JTS configuration properties from Jazz custom service provider
We developed a custom service provider (i.e., implementer of com.ibm.team.repository.service.serviceProvider) for Jazz application which should rely on properties already defined by service provider (e.g., com.ibm.team.repository.service.jts.internal.userregistry.ldap.LDAPUserRegistryProvider) for JTS application.
2 answers
My naive assumption would be that you can not access these values of another application easily.
FYI, we developed a giant hack to achieve that: once we get configuration properties from IServerConfigurationService we have to read file /conf/jts/teamserver.properties to get the overridden values.
If there is a common setting, I would assume the setup procedure does deal with it.
Comments
I am surprised you can read in the context of another application. U likely can only do that if you are running on the same server/file system, which is not necessarily true.
U likely can only do that if you are running on the same server/file system, which is not necessarily true.
Yes, this was our case of course.
My naive assumption would be that you can not access these values of another application easily. Security should actually prevent you from being able to read/write properties in another context.