Reputation: 2087
I have created a simple OSGI Library that I have added a custom control from one of my databases. The Custom Control uses controls from the Extension Library. I can't figure out how to tell the new library to use the Extension Library. Either the IBM one or Openntf.
Upvotes: 0
Views: 120
Reputation: 1064
Your terminology is a little confusing. By "Custom Control" I'm assuming you mean "Component" as a custom control contains XSP Markup inside it (i.e. XML). But to address your issue, in the MANIFEST.MF file of your plugin, on the dependencies tab in the required plug-ins. Add com.ibm.xsp.extlib as a dependency. While you're there you'll probably also need to add:
Looking at your previous question... I mirror Tim's suggestion of getting the XSP Starter Kit as that contains examples of custom components, resource providers, phase listeners, JS Library inclusion, etc.
Upvotes: 1