1
I’m trying to sign a XML with the Delphi, to TAG Signature. For this I am using ready-made routines that all of these have a common point.
**xmlDoc := CoDOMDocument50.Create;**
While running Windows error "Unregistered Class". Consulting found that it depends on the MSXML5.
On the Microsoft website the installation of MSXML4 is complete and appears installed in the Control Panel, but if you install version 5 or 6, the Dlls are created, but the control panel still shows installed version 4. Giving the impression that it is not a complete installation. I already removed version 4 tried to install direct to 5 and 6. Different installers the error persists.
Apparently that’s all I need to finish my work.
Thank you.
Have you tried registering the DLL manually?
regsvr32 "caminho\nome_dll"?– Junior Moreira
Resolvi baixar a DLL de outro site e registrando novo. Aí aparece no Delphi para usar no "Import Type Library" que antes apareceu. Thanks.
– Anderson Souza