-
Posted to
Configuration & Scripting
by
muhammadasimsajjad
on
06-20-2008, 4:13 AM
First of all thanks on your responce.
i read following link and come to know that there are some dwAuthFlags which we can't use as WinNT provider. For Example:typedef enum {
ADS_SECURE_AUTHENTICATION = 0x1,
ADS_USE_ENCRYPTION = 0x2, //This option is not supported by the WinNT provider.
...
-
Posted to
Configuration & Scripting
by
muhammadasimsajjad
on
06-16-2008, 3:08 AM
hi
I'm calling ADsOpenObject to authenticate an NT user. I found that no matter whatever password I pass, the user authenticates!
std::wstring strProvider( L"WinNT://ComputerName" );
_bstr_t bstrUserName( L"username" );
_bstr_t bstrPassword( L"pass" );
CComPtr spADs;
dwAuthFlags = ...
-
Posted to
Extensibility
by
muhammadasimsajjad
on
06-11-2008, 1:29 AM
hi,
Problem is that ISAPI filter authenticate the user again and again from AD. I want to authenticate the user once for one session. How can i achieve this goal. Request of Authenticate user again and again slow my ISAPI Filter.
Please help me if u can,
Regards
Asim
-
Posted to
Extensibility
by
muhammadasimsajjad
on
06-11-2008, 1:23 AM
thanks Ganesh
I resolved my problem using following. Following code write the logs sucessfully in Event log Viewer.
int grades [] =
{
EVENTLOG_SUCCESS,
EVENTLOG_INFORMATION_TYPE,
EVENTLOG_WARNING_TYPE,
EVENTLOG_ERROR_TYPE,
};
// Use event logging to ...
-
Posted to
Extensibility
by
muhammadasimsajjad
on
06-10-2008, 3:32 AM
Hi
My problem is that i want to write the ISAPI log in Event Viewer. i have written ISAPI in VC++ 6.0. In some cases i am getting hang problem so that i want to see the log where i am getting error. If u can send me code it is more helpfull for me.
Please help me if u can
thanks in advance
-
Posted to
Extensibility
by
muhammadasimsajjad
on
03-10-2008, 1:06 AM
Thanks,
Yes you are right. But the problem is that why in the case of SF_STATUS_REQ_NEXT_NOTIFICATION system is running fine on Windows XP.
I am very thankful to your on your comments.
Now my problem is resolved.
-
Posted to
Extensibility
by
muhammadasimsajjad
on
03-03-2008, 3:08 AM
Hi all,
I have written ISAPI Filter which
will authenticate the different user from the different domain. I set the
Directory Security as BASIC ACTHENTICATION (password is sent in clear text). My filter is working perfectly on windows XP
but in Server 2003 I am getting following Issue:
When I enter wrong password
the system never ...
-
Posted to
Extensibility
by
muhammadasimsajjad
on
12-17-2007, 9:25 AM
Thanks Zhao Ji Ma
I got the point from your given link and below link, now my problem is solved.
http://msdn2.microsoft.com/en-us/library/ms525344.aspx
Thanks once agianRegardsAsim
-
Posted to
Extensibility
by
muhammadasimsajjad
on
12-15-2007, 5:57 AM
Hi,
How we can install ISAPI filter in Windows Server 2003 Programmatic ally. Problem is that we have to make setup application.This setup will automatically install filter. The following link show the working fine for Windows XP but not for server 2003.
http://support.microsoft.com/kb/150312
I will be very thankful to u on this ...
-
Posted to
Extensibility
by
muhammadasimsajjad
on
12-05-2007, 5:54 AM
Hi All,
I have developed an ISAPI Filter which saves user name in the cookie
in ANSI format but the same cookie is also used by my web application which
uses UTF-8 format to save and retrieve values in that cookie.
Actually I am developing a Swedish application which will
run on Windows Server 2003 (Swedish version) and the ...