Quantcast
Viewing all articles
Browse latest Browse all 31638

ADsOpenObject bind unsuccessful

Hi,

I am trying to connect to an AD server from a computer that is outside the domain using ADSI however the bind is unsuccessful. Using Visual c++ 2010 express.

Here is the code snippet:

#include"stdafx.h"#include<iostream>#include<conio.h>#include<wchar.h>#include<objbase.h>#include<activeds.h>#include<AdsHlp.h>usingnamespace std;int _tmain(int argc, _TCHAR* argv[]){IADs*pObject;
	HRESULT hr;

	hr =ADsOpenObject(L"LDAP://aswathy-server3/cn=users,dc=aswathy,dc=local",
		L"administrator",
		L"password",
		ADS_SECURE_AUTHENTICATION,
		IID_IADs,(void**)&pObject);if(SUCCEEDED(hr)){
		cout<<"Success";
		pObject->Release();}else
		cout<<"Unsuccessful";
		getch();return0;}

I have included adsiid,lib and activeds.lib under project properties -> linker -> input -> additional dependencies.

Does anyone know why bind is not successful?


Viewing all articles
Browse latest Browse all 31638

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>