473,387 Members | 1,517 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Unable to send an email - cdosys.dll problem

Dear all,

I'm having major issues sending an email from my ASP.NET app.

I'm getting a "Could not create 'CDO.Message' object".

When I did a search for cdosys.dll in \win_location\system32, I could
not find it. So I copied it from another Windows 2003 server, where
it did exist. Another dependant file was missing too (inetcomm.dll).

I've tried registering cdosys.dll using regsvr32 cdosys.dll and also
regsvr32 \win_location\system32\cdosys.dll but I keep getting an error
'LoadLibrary(...) failed - a dynamic link library (DLL) initialization
routine failed'. The same happens when I try to registry
inetcomm.dll.

An SMTP service is installed on the Windows 2003 machine I am dealing
with. I have a feeling it is because cdosys.dll does not exist in the
registry which is why the error is occuring, but I do not know how to
overcome the LoadLibrary failure message.

Can anyone advise? I've read lots of good articles on the net but to
no avail.

Thanks,
Akbur

Apr 13 '07 #1
8 7525
"Akbur" <ak****@gmail.comwrote in message
news:11**********************@o5g2000hsb.googlegro ups.com...
I'm having major issues sending an email from my ASP.NET app.

I'm getting a "Could not create 'CDO.Message' object".

When I did a search for cdosys.dll in \win_location\system32, I could
not find it. So I copied it from another Windows 2003 server, where
it did exist. Another dependant file was missing too (inetcomm.dll).

I've tried registering cdosys.dll using regsvr32 cdosys.dll and also
regsvr32 \win_location\system32\cdosys.dll but I keep getting an error
'LoadLibrary(...) failed - a dynamic link library (DLL) initialization
routine failed'. The same happens when I try to registry
inetcomm.dll.

An SMTP service is installed on the Windows 2003 machine I am dealing
with. I have a feeling it is because cdosys.dll does not exist in the
registry which is why the error is occuring, but I do not know how to
overcome the LoadLibrary failure message.

Can anyone advise? I've read lots of good articles on the net but to
no avail.
Well, first things first... You say you are using ASP.NET, so what on earth
are you trying to do with cdosys.dll...?????

To send email in any .NET application, all you need is the System.Net.Mail
namespace, and a valid SMTP queue:
http://www.systemnetmail.com/faq/1.3.aspx
http://www.systemnetmail.com/faq/3.aspx
Apr 13 '07 #2
On 13 Apr, 13:19, "Mark Rae" <m...@markNOSPAMrae.netwrote:
"Akbur" <akb...@gmail.comwrote in message

news:11**********************@o5g2000hsb.googlegro ups.com...


I'm having major issues sending an email from my ASP.NET app.
I'm getting a "Could not create 'CDO.Message' object".
When I did a search for cdosys.dll in \win_location\system32, I could
not find it. So I copied it from another Windows 2003 server, where
it did exist. Another dependant file was missing too (inetcomm.dll).
I've tried registering cdosys.dll using regsvr32 cdosys.dll and also
regsvr32 \win_location\system32\cdosys.dll but I keep getting an error
'LoadLibrary(...) failed - a dynamic link library (DLL) initialization
routine failed'. The same happens when I try to registry
inetcomm.dll.
An SMTP service is installed on the Windows 2003 machine I am dealing
with. I have a feeling it is because cdosys.dll does not exist in the
registry which is why the error is occuring, but I do not know how to
overcome the LoadLibrary failure message.
Can anyone advise? I've read lots of good articles on the net but to
no avail.

Well, first things first... You say you are using ASP.NET, so what on earth
are you trying to do with cdosys.dll...?????

To send email in any .NET application, all you need is the System.Net.Mail
namespace, and a valid SMTP queue:http://www.systemnetmail.com/faq/1.3...om/faq/3.aspx- Hide quoted text -

- Show quoted text -
I am using System.Web.Mail in my code (still using ASP 1.1 for various
reasons and dont have the luxury of using the SmtpClient class) - but
I thought that cdosys.dll is used by System.Web.Mail and therefore is
necessary. You imply this is incorrect - fair enough.

In my code I'm doing a very simple SmtpMail.Send (...). Before I do
the send I ensure that SmtpMail.SmtpServer is set a remote SMTP
server. I still get the "Could not create 'CDO.Message' object"
error.

Apr 13 '07 #3
"Akbur" <ak****@gmail.comwrote in message
news:11*********************@n76g2000hsh.googlegro ups.com...
I am using System.Web.Mail in my code (still using ASP 1.1 for various
reasons and dont have the luxury of using the SmtpClient class)
OK. Generally speaking, because ASP.NET v2 has been out for nearly 18 months
now, people will assume that's what you are using unless you explicitly
state otherwise...
- but I thought that cdosys.dll is used by System.Web.Mail and therefore
is
necessary. You imply this is incorrect - fair enough.
Now that I know you're using v1.1, then things are a little different:
http://www.systemwebmail.com/faq/1.3.aspx
http://www.systemwebmail.com/faq/2.1.aspx
In my code I'm doing a very simple SmtpMail.Send (...). Before I do
the send I ensure that SmtpMail.SmtpServer is set a remote SMTP
server. I still get the "Could not create 'CDO.Message' object"
error.
To troubleshoot that, you'll need to inspect the InnerException property of
the Exception object:
http://www.systemwebmail.com/faq/4.aspx

Also see the following:
http://www.google.co.uk/search?sourc...+not+create%22
Apr 13 '07 #4
Well, first things first... You say you are using ASP.NET, so what on
earth are you trying to do with cdosys.dll...?????
The .net mail class is simply a .net wrapper around the CDO COM objects.

He doesn't say what vs of .net he is using, maybe with 2.0 they have a pure
..net solution (I know they downgraded some classes in this area so hopefully
that is the case) but in 1.1 you defo use CDO.
Apr 13 '07 #5
On Apr 13, 2:21 pm, "Aidy" <a...@noemail.xxxa.comwrote:
Well, first things first... You say you are using ASP.NET, so what on
earth are you trying to do with cdosys.dll...?????

The .net mail class is simply a .net wrapper around the CDO COM objects.

He doesn't say what vs of .net he is using, maybe with 2.0 they have a pure
.net solution (I know they downgraded some classes in this area so hopefully
that is the case) but in 1.1 you defo use CDO.
Sorry for not being clear. I'm definitely using 1.1.

Apr 13 '07 #6
"Aidy" <ai**@noemail.xxxa.comwrote in message
news:o_*********************@bt.com...
>Well, first things first... You say you are using ASP.NET, so what on
earth are you trying to do with cdosys.dll...?????

He doesn't say what vs of .net he is using,
He did in a later post...
maybe with 2.0 they have a pure .net solution (I know they downgraded some
classes in this area so hopefully that is the case)
It is, AFAIK...
but in 1.1 you defo use CDO.
Indeed - see subsequent posts in this thread...
Apr 13 '07 #7
He did in a later post...

I know
It is, AFAIK...
Good
Indeed - see subsequent posts in this thread...
I have.

Look, I can post and add no value also :)
Apr 13 '07 #8
On Apr 13, 2:51 pm, "Mark Rae" <m...@markNOSPAMrae.netwrote:
"Aidy" <a...@noemail.xxxa.comwrote in message

news:o_*********************@bt.com...
Well, first things first... You say you are using ASP.NET, so what on
earth are you trying to do with cdosys.dll...?????
He doesn't say what vs of .net he is using,

He did in a later post...
maybe with 2.0 they have a pure .net solution (I know they downgraded some
classes in this area so hopefully that is the case)

It is, AFAIK...
but in 1.1 you defo use CDO.

Indeed - see subsequent posts in this thread...
Mark,

Thank you for your support. The issue has been resolved.

I found that vital DLL files were missing in my installation of
Windows 2003. For some reason, Outlook Express was not installed on
the server. This resulted in some dll's that System.Web.Mail requires
to be missing. Once I had installed Outlook Express 5 on the server,
I then proceeded to register cdosys.dll (regsvr32). I then ran my
ASP.NET 1.1 app again and found that it was working perfectly.

Best regards,
Akbur

Apr 13 '07 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Salim Afþar | last post by:
Hi, I'm using CDO object to send email but it doesn't send any email and it does not give an error. My code look like this: Dim iMsg2 Dim iConf2 Dim Flds2 Const cdoSendUsingPort = 2 set...
3
by: Robert Hogan | last post by:
Hello, I am attempting to send emails using T-SQL (in a SQLServerAgent Job) using the stored procedure sp_SendSMTPMail. I created the stored proc using the following script that I got off a post...
4
by: tp | last post by:
HI... I have created simple .asp page and i would like to send my page as email using my outlook . is it possible to send form body as new email outlook body using mailto command or any other...
4
by: PawelR | last post by:
Hi, everbody. How send e-mail if smtp need authorization. If authorization is not required send email is not problem but I use SmtpMail.Send(myMail) PawelR
5
by: Andreas | last post by:
I am working with three computers, my developing computer, a Web Server and a Mail Server (Exchange). I am trying to send a email from the Web Server via the Mail Server to a valid email address...
3
by: skinymike | last post by:
I have read the forum regarding how to send email using CDOSYS... I have try to use the code given but still can't make it what should i do with the smtpserver and smtpserverport? please help...
0
by: Atenza | last post by:
Hi all, I develop an VB6 program to send email by using CDOSYS.DLL. It works fine as follow: Dim iMsg As New CDO.Message Dim iDsrc As CDO.IDataSource Set iDsrc = iMsg ' (QueryInterface)...
9
by: paulmitchell507 | last post by:
I have a file called email2.asp which I am using to mail data obtained from a SQL query. I would like to pass the holiday_ID value in the querystring attached to the end of the URL. It all works...
3
by: viki1967 | last post by:
Hi all. I have problem whit this email address: john.d'almonte@mydomain.com If email address contain apostrophe the send email ( I send with CDOSYS component) responde with failure. I...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.