Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Directory Service Provider SDK / API?

I am looking for details for creating a custom Directory Service Provider (DSP).  I have found a version 10 example but no details for the actually SDK / API. Is it hidden away in the APIGuide and I just don't realize it?  If not would someone know where to find this information?

Note:  This is for Version 11 of QlikView.

6 Replies
Not applicable
Author

Mike, have you obtained any additional information about this?

It would be really, really great of someone could answer this question. I'm digging though the QlikView 11 SDK and guidance for developing a DSP is conspicuously absent. The most recent thing I can find is in the QlikView 10 SDK and we are also on QlikView.

Not applicable
Author

I did not receive any more information about this and it is still needed.

Not applicable
Author

I got my custom DS provider to load into the QEMC today. I was developing against a slight out of date PublisherSDK.dll (version 10 instead of version 11). It really appears to be all you need to develop this kind of thing. Here's how I recommend you proceed.

  1. Get a copy of PublisherSDK.dll from your QlikView 11 Server.
    C:\Program Files\QlikView\Directory Service Connector folder.
  2. You can download the QlikView 10 SDK. It's the only place I found anything resembling documentation. There's a example for an XLM based provider. It's out of date relative to QlikView 11, but it's close enough to get you moving forward.
  3. You'll have to implement interfaces (found in the new PublisherSDK.dll) named IDirectoryServiceProvider, ICleanupDirectoryServiceProvider and IFileSystemHandler. These are in namespaces DirectoryServiceProvider2 and Filesystem.
  4. On your QlikView server, stop the QlikView Directory Service Connection service, install you're own plug-in DLL in the C:\Program Files\QlikView\Directory Service Connector\DSPlugins folder on your QlikView server and then restart the QlikView Directory Service Connection service.

If you've fully implemented the required interfaces you should now see your plug in the list of directory service providers in the QEMC.

I hope this is helpful.

Not applicable
Author

Hi AI Plahitko,

Would you please share the example which you mentioned above "There's a example for an XLM based provider", I can not find this example. I am working on developing DSP also, I have no any idea how to start it, it will be very appreciated if you could share the example or any knowledge about developing DSP for me.

Thanks a lot.

Not applicable
Author

I couldn’t “re-find” the original link so I attached is the SDK I originally downloaded and some valuable examples for integration using DMS and web ticket authentication. It was a tough road but we just got this working end to end yesterday.

PublisherSDK_V11.zip is the QlikView 11 version of the SDK whichI was able to produce from the QlikView 10 version (DSP.zip).

Best wishes.

Not applicable
Author

Thank you very much, it's really helpful for me.