관리 메뉴

웹개발자의 기지개

[ASP] ActiveX component can't create object: 'MSXML2.DOMDocument 4.0' 에러처리 본문

ASP

[ASP] ActiveX component can't create object: 'MSXML2.DOMDocument 4.0' 에러처리

http://portfolio.wonpaper.net 2020. 10. 12. 11:07

ActiveX component can't create object: 

'MSXML2.DOMDocument 4.0'

 

이라는 에러메세지를 만났다.

 

32bit 체계로 돌아가는 버전이라 현행 64bit 처리방식의 버전으로 바꾸어주면 간단히 해결된다.

 

Set xmlDoc = CreateObject("Msxml2.DOMDocument.6.0")

 

참고 : stackoverflow.com/questions/16167111/activex-component-cant-create-object-msxml2-domdocument

Comments