How to use aaApi_StartPartnerApplication ?

Hello, 

I am looking for a solution to view a dgn document from ProjectWise CONNECT Edition (3.299) into Microstation CONNECT (Update 17) without checking out the document, but still be able to modify or add references to the opened document in Microstation.

In previous versions Of ProjectWise and with Microstation v8i this worked very well with the following line code

BOOL res = aaApi_StartApplication(lp_Executable, args, lp_fileName, lpDocItem->lProjectId, lpDocItem->lDocumentId, NULL, FALSE);

The file was opened as an editable file in Microstation with ProjectWise mcm module enabled and connected.

But since Microstation version CONNECT , the mcm module is unloaded automatically after the file was opened. Got this message in Message Center :

mcm module unloaded

Therefore, I tried another way to open the document (whithout checking out) , using aaApi_StartPartnerApplication function :

BOOL res = aaApi_StartPartnerApplication(lp_Executable, args, lp_fileName,
lpDocItem->lProjectId, lpDocItem->lDocumentId,
NULL, FALSE);

But this time, the mcm module is not loaded from the begining, got this message in Microstation debug window :

MDL Loader: Could not load application mcm.ma

I think I am missing something...

Any help will be appreciated,

best regards,