ClarenceTunstall
Programmer
This is my code:
using CrystalDecisions.Enterprise;
SessionMgr sessMgr = new SessionMgr();
EnterpriseSession entSess;
EnterpriseService edgeService = entSess.GetService("InfoStore");
entSess = sessMgr.Logon("userid", "pa$$w0rd", "CMS:6400","secWinAD")
This is my results when I build my code:
The type or namespace name 'SessionMgr' could not be found (are you missing a using directive or an assembly reference?)
I know this is a simple assembly reference, but this assembly is properly referenced. For BO 4.0 version we have, we should be able to use at least this much of their API. Can anyone help me to see what I'm missing here?
using CrystalDecisions.Enterprise;
SessionMgr sessMgr = new SessionMgr();
EnterpriseSession entSess;
EnterpriseService edgeService = entSess.GetService("InfoStore");
entSess = sessMgr.Logon("userid", "pa$$w0rd", "CMS:6400","secWinAD")
This is my results when I build my code:
The type or namespace name 'SessionMgr' could not be found (are you missing a using directive or an assembly reference?)
I know this is a simple assembly reference, but this assembly is properly referenced. For BO 4.0 version we have, we should be able to use at least this much of their API. Can anyone help me to see what I'm missing here?