Quote:
|
Originally Posted by xolela
HERE I’M TRYING TO READ INFO FROM AD.
But for some fields I’m having the following error.
The property cannot be found in the cache.
To solve that error I was advised explicitly retrieved those properties with GetInfoEx instead of GetInfo.
Then now I don’t know if this line of code is right because I’m experiencing the syntax error that says “Array” is a type and it cannot be used as an expression. Can u please help.
Call objUser.GetInfoEx(Array("streetAddress", “st”),0)
I’m working on DOT NET Framework.
|
The line should read:
Call objUser.GetInfoEx Array("streetAddress", “st”),0
As for the Property Cache Error, I am having the same problem and am trying to figure it out as well, have you made any head way?