Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

While this approach works fine, it has a global effect and require you to configure all your servers accordingly.

ServiceMix Kernel Karaf offers a simple way to configure additional security providers:

  • Wiki Markupput your provider jar in {{\[SMX4KNLFELIX:KERNEL\KARAF]/lib}}unmigrated-wiki-markup
  • modify the {{\[SMX4KNLFELIX:KERNEL\KARAF]/etc/config.properties}} configuration file to add the following property
Code Block
org.apache.felix.servicemixkaraf.security.providers = xxx,yyy

The value of this property is a comma separated list of the provider class names to register.
For example:

Code Block
org.apache.felix.servicemixkaraf.security.providers = org.bouncycastle.jce.provider.BouncyCastleProvider

...

Code Block
org.osgi.framework.bootdelegation = ...,org.bouncycastle*

6.5. Deploying security providers#top

Wiki Markup
{scrollbar}