Hello ,
I am trying to invoke MAPI Activex Call from my ISAPI DLL . But its giving an unhandled exception at HTTPExtensionProc when the function Create is called . I have not overriden HttpExtensionProc in my ISAPI DLL , as I am new to this , I am unable to figure this out .
CMapiSession *m_pMapiSession ;
m_pMapiSession = new CMapiSession;
m_pMapiSession->Create(NULL,WS_VISIBLE,rect,(CWnd *)this,100);
//m_pMapiSession->SetNewSession(1);
m_pMapiSession->SignOn();
Can anybody throw some light on it .
Thanks in advance .
Sujay