Tag Archive : Error Message

Unable to instantiate XML DOM document : SSIS 2005

0
Digg me

SSIS 2005 Business Intelligence
Unable to instantiate XML DOM document, please verify that MSXML binaries are properly installed and registered.
 Other variations are  Failed to save package file “.dtsx” with error 0x8002801D “Library not registered.”

The reason you see this error is because MSXML got corrupted.

The fix is

1. Close Studio / Business Intelligence

2. Download Latest MSXML 4.0 (sp3)  as of today.

3. Install it. Done

2a. Some cases you may need to install MSXML 6.0.

Possible reason: your host may have disabled the mail() function…

1
Digg me

Wordpress Error Message : Possible reason: your host may have disabled the mail() function…

By default Wordpress uses Mail() component to send out emails. But if your host has secure SMTP eMail authentication then Mail() will not and you may see this error.

Solution for this problem is using wp-mail-smtp plugin. Its a very very simple plugin, which accepts smtp host, username & pwd and sends out email via SMTP host.

This plugin can be downloaded from here.

http://wordpress.org/extend/plugins/wp-mail-smtp/

Asp.Net Error : Could not load type

1
Digg me

Could not load type  Namespace.Class or Global.asax

This is one of the annoying error messages in an Asp.net application. 

Few verifications can fix this error.
1. Make sure you have right Asp.net version in IIS

2. Make sure the Application Root Namespace and Inherits=”" (on .aspx page) are the same (including case)

3. If you are using Multiple Projects (Project > Sub Project) make sure the Build Output Path (Project Properties > Compile) is pointing to Main application.
If you have come across any other scenario feel free to write it.