Hi,
I've a similar issue, but I'm rather ignorant on Novell Client.
I wanted to wrap the Novell Credential Provider, but I couldn't get the credential serialised as I can get by other wrapped Credential Provider.
Did you succeed in getting credentials out of Novell Client? Did you get just eDirectory credentials or also the windows username/password?
Any help is very appreciated, there is so little documentation around this...
Thanks,
Federico
Originally Posted by andre_couturier
|
Okay, I fixed my installer problems
|
Code:
|
#include "stdafx.h"
#include <windows.h>
#include <nwlgext.h>
static NWLGLoginExtInfo regentry;
int _tmain(int argc, _TCHAR* argv[])
{
regentry.loginExtType = LOGIN_EXT_MASTER;
regentry.loginExtID = "Test";
regentry.loginExtIDLen = (nint)strlen(regentry.loginExtID);
regentry.loginExtDLLName = "Test.dll";
regentry.loginExtDLLNameLen = (nint)strlen(regentry.loginExtDLLName);
regentry.loginExtDesc = "This is a test Number 2";
regentry.loginExtDescLen = (nint)strlen(regentry.loginExtDesc);
return NWLGLoginExtRegWrite(®entry);
} |
Afer executing the install.exe I found a new registry key.
But in which folder I have to copy the Test.dll (I renamed the example dll)? I try the Windows\System32 and login again, but without any effect. Could it be that the example doesn't work with Vista/7?
|