>> The main bundle activator does the following regarding this component:
>> Dictionary<String, Object> properties = new Hashtable<String,
>> Object>(); properties.put("userRolesFile", "someFileSystemPath");
>> properties.put("userCredentialsFile", "someFileSystemPath");
>> configAdmin.getConfiguration("com.kuka.authorizationService.component"
>> ).update(properties);

> This is exactly your problem :) With this you bind the configuration to the 
> bundle executing this code and
> then DS can't use it anymore. Change it to use the two argument 
> getConfiguration method and pass null as
> the second argument (location).

Passing null solved the issue, thank Carsten!
The main issue I had actually was that the application I try to bundle into a 
web application was using equinox and still had a dependency to equinox.cm, 
which resulted in a NullPointer. Replacing the equinox.cm with the felix 
version of it made it work.
This message may contain legally privileged or confidential information and is 
therefore addressed to the named persons only. The recipient should inform the 
sender and delete this message, if he/she is not named as addressee. The sender 
disclaims any and all liability for the integrity and punctuality of this 
message. The sender has activated an automatic virus scanning, but does not 
guarantee the virus free transmission of this message.

Reply via email to