Vault Jobhandler is not able to create Autocad Instance since Autocad update 2026.1

Vault Jobhandler is not able to create Autocad Instance since Autocad update 2026.1

gbadziura
Enthusiast Enthusiast
121 Views
3 Replies
Message 1 of 4

Vault Jobhandler is not able to create Autocad Instance since Autocad update 2026.1

gbadziura
Enthusiast
Enthusiast

Hello everyone
I have a problem where my job handler, which starts AutoCAD, cannot create a new instance of AutoCAD after updating from AutoCAD 2026.0.1 to 2026.1.
I explicitly created a new job handler that only tests the AutoCAD startup to avoid any interference with other code. Unfortunately, I always get the same result.

 public void StartAcad()
 {

     AcadApplication _Acadreturn = null;

     string AcadProgID = "AutoCAD.Application";
     try
     {
         try
         {
             _Acadreturn = (AcadApplication)RunninObjectTable.GetActiveObject(AcadProgID);
         }
         catch (Exception)
         {

             Type AC = Type.GetTypeFromProgID(AcadProgID);
             if (AC != null)
             {

                 _Acadreturn = (AcadApplication)Activator.CreateInstance(AC, true);
                
             }
             else
             {
                 //Console.WriteLine("Wrong AutoCAD ProgID : " + AcadProgID);
             }
         }

     }
     catch (System.Exception ex)
     {

         //Console.WriteLine($"{ex.Message} : {ex.StackTrace}");

         //The ErrorMessage
         //Retrieving the COM class factory for component with CLSID [607BBE5B-A4EE-47EB-88C9-75FE5F12EAC7] failed due to the following error:
         //80080005 Starten des Servers fehlgeschlagen (0x80080005 (CO_E_SERVER_EXEC_FAILURE)). :
         //at System.RuntimeTypeHandle.AllocateComObject(Void* pClassFactory)


         throw;
     }
 }

 

when this line of code is called...

 

_Acadreturn = (AcadApplication)Activator.CreateInstance(AC, true);

 

...this AutoCAD error message appears.

 

gbadziura_0-1757336883694.png

The exception contains this message
Retrieving the COM class factory for component with CLSID [607BBE5B-A4EE-47EB-88C9-75FE5F12EAC7] failed due to the following error: 80080005 Starten des Servers fehlgeschlagen (0x80080005 (CO_E_SERVER_EXEC_FAILURE)). : at System.RuntimeTypeHandle.AllocateComObject(Void* pClassFactory)

 

However, the same code works fine from a console application. So it must be something in the job processor environment. 


I have installed all updates for AutoCAD 2026, Vault2026, and all installed Autodesk products.


Does anyone have any ideas?

 

Best regards
Gerhard

122 Views
3 Replies
Replies (3)
Message 2 of 4

Markus.Koechl
Autodesk
Autodesk

Hi @gbadziura : Vault 2026 Update 1 included an updated SDK; the change reflects newer licensing libraries required for Autodesk applications consuming the same. Your console app might not run into this conflict, whereas a custom job likely does. I suggest installing and referencing the SDK 2026.1.



Markus Koechl

Solutions Engineer PDM, Autodesk Central Europe
0 Likes
Message 3 of 4

gbadziura
Enthusiast
Enthusiast

Hello @Markus.Koechl 
This is not about the Vault 2026.1 update. I have been using it since it was released. The problem only occurs when you apply the 2026.1 update from AutoCAD.
As I said, everything works perfectly with Vault 2026.1 and AutoCAD 2026.0.1. Vault 2026.1 and AutoCAD 2026.1 do not work!
Furthermore, I do not supply Autodesk DLLs. Whatever the client has installed is used.
So I don't understand how licensing could play a role here. The only thing that has changed here is AutoCAD.

 

Best Regards

Gerhard

0 Likes
Message 4 of 4

Markus.Koechl
Autodesk
Autodesk

Hi @gbadziura, now I got you. Please submit a support ticket.
Thanks.



Markus Koechl

Solutions Engineer PDM, Autodesk Central Europe
0 Likes