My application is using the library SqlXML and I am trying to publish this application to Azure Web Services.
Once I publish it I get this error:
Retrieving the COM class factory for component with CLSID {83D0FC3E-8B31-4B35-A1B2-346BA3954514} failed due to the following error: 80040154 Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)).
I checked stacktracing and its on a method that uses the SqlXML.
I checked if the dll is referenced as an assembly in web.config and it is
<add assembly="Microsoft.Data.SqlXml, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91" />
I checked whether the DLL is present and its there.
Is there a way to install SQLXML on Azure Web Services?