I have both cdosys.dll and cdonts.dll on my W2K3 server.
We have been told by our web authors that their asp code won't work on our
machine and that we don't have CDONTS installed on our machine.
They're getting an error from:
Set objCDOMail = Server.CreateObject("CDONTS.NewMail")
I know that the new format is:
Set objCDOMail = Server.CreateObject("CDO.Message")
Is there something special that we have to have installed to make CDONTS
work?
Thanks,
Tom 16 3046
CDONTS doesn't come with W2k3 so unless you added it you are out of luck.
Either way though it's a dead technology, switch over to CDO.
--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"tshad" <ts**********@ftsolutions.com> wrote in message
news:%2********************@TK2MSFTNGP09.phx.gbl.. . I have both cdosys.dll and cdonts.dll on my W2K3 server.
We have been told by our web authors that their asp code won't work on our machine and that we don't have CDONTS installed on our machine.
They're getting an error from:
Set objCDOMail = Server.CreateObject("CDONTS.NewMail")
I know that the new format is:
Set objCDOMail = Server.CreateObject("CDO.Message")
Is there something special that we have to have installed to make CDONTS work?
Thanks,
Tom
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:OR****************@TK2MSFTNGP11.phx.gbl... CDONTS doesn't come with W2k3 so unless you added it you are out of luck. Either way though it's a dead technology, switch over to CDO.
I agree and have already done that.
Our problem is mostly temporary.
We have a couple of companies doing projects for us and they are using the
same project for others.
We have W2K3 and others have W2K (which has CDONTS on it).
I moved CDONTS.DLL from my other machine to allow their code to work until
they change their code. But we are getting an error. Is this because it
has both .dlls (cdonts.dll and cdosys.dll) on the machine?
Thanks,
Tom -- Curt Christianson Site & Scripts: http://www.Darkfalz.com Blog: http://blog.Darkfalz.com
"tshad" <ts**********@ftsolutions.com> wrote in message news:%2********************@TK2MSFTNGP09.phx.gbl.. .I have both cdosys.dll and cdonts.dll on my W2K3 server.
We have been told by our web authors that their asp code won't work on our machine and that we don't have CDONTS installed on our machine.
They're getting an error from:
Set objCDOMail = Server.CreateObject("CDONTS.NewMail")
I know that the new format is:
Set objCDOMail = Server.CreateObject("CDO.Message")
Is there something special that we have to have installed to make CDONTS work?
Thanks,
Tom
Well, while you ~can~ put the cdonts.dll file on your machine and regsvr32
it, I suggest that you don't do that. Use CDO.Message.
--
Ray at work
Microsoft ASP/ASP.NET MVP
"tshad" <ts**********@ftsolutions.com> wrote in message
news:%2********************@TK2MSFTNGP09.phx.gbl.. . I have both cdosys.dll and cdonts.dll on my W2K3 server.
We have been told by our web authors that their asp code won't work on our machine and that we don't have CDONTS installed on our machine.
They're getting an error from:
Set objCDOMail = Server.CreateObject("CDONTS.NewMail")
I know that the new format is:
Set objCDOMail = Server.CreateObject("CDO.Message")
Is there something special that we have to have installed to make CDONTS work?
Thanks,
Tom
http://support.microsoft.com/default...b;en-us;315197
--
Regards
Steven Burn
Ur I.T. Mate Group www.it-mate.co.uk
Keeping it FREE!
"tshad" <ts**********@ftsolutions.com> wrote in message
news:u7**************@TK2MSFTNGP12.phx.gbl... "Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message news:OR****************@TK2MSFTNGP11.phx.gbl... CDONTS doesn't come with W2k3 so unless you added it you are out of
luck. Either way though it's a dead technology, switch over to CDO.
I agree and have already done that.
Our problem is mostly temporary.
We have a couple of companies doing projects for us and they are using the same project for others.
We have W2K3 and others have W2K (which has CDONTS on it).
I moved CDONTS.DLL from my other machine to allow their code to work until they change their code. But we are getting an error. Is this because it has both .dlls (cdonts.dll and cdosys.dll) on the machine?
Thanks,
Tom -- Curt Christianson Site & Scripts: http://www.Darkfalz.com Blog: http://blog.Darkfalz.com
"tshad" <ts**********@ftsolutions.com> wrote in message news:%2********************@TK2MSFTNGP09.phx.gbl.. .I have both cdosys.dll and cdonts.dll on my W2K3 server.
We have been told by our web authors that their asp code won't work on our machine and that we don't have CDONTS installed on our machine.
They're getting an error from:
Set objCDOMail = Server.CreateObject("CDONTS.NewMail")
I know that the new format is:
Set objCDOMail = Server.CreateObject("CDO.Message")
Is there something special that we have to have installed to make
CDONTS work?
Thanks,
Tom
"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:%2******************@TK2MSFTNGP14.phx.gbl... Well, while you ~can~ put the cdonts.dll file on your machine and regsvr32 it, I suggest that you don't do that. Use CDO.Message.
I agree.
But if they want to be backward compatible with their other customers, they
may balk at that - at the moment.
But you do have to register it?
How do I look to see if it is already registered?
Is there a conflict problem if I am using both cdosys and cdonts?
Thanks,
Tom --
Ray at work Microsoft ASP/ASP.NET MVP
"tshad" <ts**********@ftsolutions.com> wrote in message news:%2********************@TK2MSFTNGP09.phx.gbl.. . I have both cdosys.dll and cdonts.dll on my W2K3 server.
We have been told by our web authors that their asp code won't work on our machine and that we don't have CDONTS installed on our machine.
They're getting an error from:
Set objCDOMail = Server.CreateObject("CDONTS.NewMail")
I know that the new format is:
Set objCDOMail = Server.CreateObject("CDO.Message")
Is there something special that we have to have installed to make CDONTS work?
Thanks,
Tom
> We have W2K3 and others have W2K (which has CDONTS on it).
Windows 2000 also has CDOsys, so stop using CDONTS.NEWMAIL there, too.
> But you do have to register it?
</snip>
Yes
<snip> How do I look to see if it is already registered?
</snip>
Start > Run, type: regsvr32 <dll_name>
Doesn't really make a difference if it's already registered
<snip> Is there a conflict problem if I am using both cdosys and cdonts?
</snip>
No.
--
Regards
Steven Burn
Ur I.T. Mate Group www.it-mate.co.uk
Keeping it FREE!
"tshad" <ts**********@ftsolutions.com> wrote in message
news:##**************@TK2MSFTNGP15.phx.gbl... "Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in message news:%2******************@TK2MSFTNGP14.phx.gbl... Well, while you ~can~ put the cdonts.dll file on your machine and
regsvr32 it, I suggest that you don't do that. Use CDO.Message. I agree.
But if they want to be backward compatible with their other customers,
they may balk at that - at the moment.
But you do have to register it?
How do I look to see if it is already registered?
Is there a conflict problem if I am using both cdosys and cdonts?
Thanks,
Tom --
Ray at work Microsoft ASP/ASP.NET MVP
"tshad" <ts**********@ftsolutions.com> wrote in message news:%2********************@TK2MSFTNGP09.phx.gbl.. . I have both cdosys.dll and cdonts.dll on my W2K3 server.
We have been told by our web authors that their asp code won't work on our machine and that we don't have CDONTS installed on our machine.
They're getting an error from:
Set objCDOMail = Server.CreateObject("CDONTS.NewMail")
I know that the new format is:
Set objCDOMail = Server.CreateObject("CDO.Message")
Is there something special that we have to have installed to make
CDONTS work?
Thanks,
Tom
"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:%2******************@tk2msftngp13.phx.gbl... We have W2K3 and others have W2K (which has CDONTS on it).
Windows 2000 also has CDOsys, so stop using CDONTS.NEWMAIL there, too.
Good point.
Hadn't realized that.
Thanks,
Tom
"tshad" <ts**********@ftsolutions.com> wrote in message
news:%2********************@TK2MSFTNGP15.phx.gbl.. . But you do have to register it?
Yes, you do. And with 2003, you may have to go into dcomcnfg
(start--run--dcomcnfg) and verify that your IUSR account has permissions to
execute the component after you register it.
How do I look to see if it is already registered?
I guess if it's in dcomcnfg, it's registered, but it won't hurt anything to
reregister it if it's already registered.
Is there a conflict problem if I am using both cdosys and cdonts?
I don't believe that should be a problem.
Ray at work
On Fri, 14 Jan 2005 12:22:06 -0800, "tshad"
<ts**********@ftsolutions.com> wrote: "Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message news:OR****************@TK2MSFTNGP11.phx.gbl... CDONTS doesn't come with W2k3 so unless you added it you are out of luck. Either way though it's a dead technology, switch over to CDO.
I agree and have already done that.
Our problem is mostly temporary.
We have a couple of companies doing projects for us and they are using the same project for others.
We have W2K3 and others have W2K (which has CDONTS on it).
I moved CDONTS.DLL from my other machine to allow their code to work until they change their code. But we are getting an error. Is this because it has both .dlls (cdonts.dll and cdosys.dll) on the machine?
Judging from your error I'd say... well... um...
If you have an error you want a resolution to, you need to tell us
what it is.
Jeff -- Curt Christianson Site & Scripts: http://www.Darkfalz.com Blog: http://blog.Darkfalz.com
"tshad" <ts**********@ftsolutions.com> wrote in message news:%2********************@TK2MSFTNGP09.phx.gbl.. .I have both cdosys.dll and cdonts.dll on my W2K3 server.
We have been told by our web authors that their asp code won't work on our machine and that we don't have CDONTS installed on our machine.
They're getting an error from:
Set objCDOMail = Server.CreateObject("CDONTS.NewMail")
I know that the new format is:
Set objCDOMail = Server.CreateObject("CDO.Message")
Is there something special that we have to have installed to make CDONTS work?
Thanks,
Tom
> Judging from your error I'd say... well... um... If you have an error you want a resolution to, you need to tell us what it is.
Or be logical. "Gee, I have a 1978 Datsun B210 and a 2005 BMW 645i in the
driveway. The Datsun won't start, can someone help, I really need to go buy
some groceries, and I want to use the Datsun for some weird reason!"
:-)
tshad wrote: I moved CDONTS.DLL from my other machine to allow their code to work until they change their code. But we are getting an error. Is this because it has both .dlls (cdonts.dll and cdosys.dll) on the machine?
*Moved* it? Do you mean just copied the dll over? Did you register it
on the 2003 box?
Morris
"Jeff Cochran" <je*********@zina.com> wrote in message
news:41****************@msnews.microsoft.com... On Fri, 14 Jan 2005 12:22:06 -0800, "tshad" <ts**********@ftsolutions.com> wrote:
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message news:OR****************@TK2MSFTNGP11.phx.gbl.. . CDONTS doesn't come with W2k3 so unless you added it you are out of luck. Either way though it's a dead technology, switch over to CDO. I agree and have already done that.
Our problem is mostly temporary.
We have a couple of companies doing projects for us and they are using the same project for others.
We have W2K3 and others have W2K (which has CDONTS on it).
I moved CDONTS.DLL from my other machine to allow their code to work until they change their code. But we are getting an error. Is this because it has both .dlls (cdonts.dll and cdosys.dll) on the machine?
Judging from your error I'd say... well... um...
If you have an error you want a resolution to, you need to tell us what it is.
Server object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed
/EmailEmpReg.asp, line 12
800401f3
Jeff -- Curt Christianson Site & Scripts: http://www.Darkfalz.com Blog: http://blog.Darkfalz.com
"tshad" <ts**********@ftsolutions.com> wrote in message news:%2********************@TK2MSFTNGP09.phx.gbl.. . I have both cdosys.dll and cdonts.dll on my W2K3 server.
We have been told by our web authors that their asp code won't work on our machine and that we don't have CDONTS installed on our machine.
They're getting an error from:
Set objCDOMail = Server.CreateObject("CDONTS.NewMail")
I know that the new format is:
Set objCDOMail = Server.CreateObject("CDO.Message")
Is there something special that we have to have installed to make CDONTS work?
Thanks,
Tom
"Morris" <mo****@nospam.cling> wrote in message
news:Q3********************@fe2.news.blueyonder.co .uk... tshad wrote:
I moved CDONTS.DLL from my other machine to allow their code to work until they change their code. But we are getting an error. Is this because it has both .dlls (cdonts.dll and cdosys.dll) on the machine?
*Moved* it? Do you mean just copied the dll over? Did you register it on the 2003 box?
I don't remember if I registered it or not. I don't have access to the
machine at the moment, but I was going to check that out. I hadn't realized
that I needed to register it until someone else mentioned it earlier.
Tom
Morris
>>>I moved CDONTS.DLL from my other machine to allow their code to work until they change their code. But we are getting an error. Is this because it has both .dlls (cdonts.dll and cdosys.dll) on the machine?
Judging from your error I'd say... well... um...
If you have an error you want a resolution to, you need to tell us what it is.
Server object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed
/EmailEmpReg.asp, line 12
800401f3
That's typical of not having the CDONTS.DLL on the system, or of not
registering it if you do have it. Either register the DLL and try it,
or switch to CDOSYS which requires no registration of DLLs on your
server.
Jeff
"Jeff Cochran" <je*********@zina.com> wrote in message
news:41****************@msnews.microsoft.com... I moved CDONTS.DLL from my other machine to allow their code to work until they change their code. But we are getting an error. Is this because it has both .dlls (cdonts.dll and cdosys.dll) on the machine?
Judging from your error I'd say... well... um...
If you have an error you want a resolution to, you need to tell us what it is.
Server object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed
/EmailEmpReg.asp, line 12
800401f3
That's typical of not having the CDONTS.DLL on the system, or of not registering it if you do have it. Either register the DLL and try it, or switch to CDOSYS which requires no registration of DLLs on your server.
Actually, I am doing both.
Thanks,
Tom Jeff This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: RIP |
last post by:
i posted earlier, and the response seemed to be there is
another dll i need to use the cdonts object, i used it
fine for awhile on my old setup, i upgraded to 2k3 and it
errors up as if cdonts...
|
by: Peter Croft |
last post by:
Hello. Can someone please tell me how to set the priority of an email
message
sent from an ASP script using CDOSYS as below -
set oCdoMsg = server.createobject("CDO.Message")
oCdoMsg.from=......
|
by: Paxton |
last post by:
Is it necessary to set field configurations for CDOSYS?
I have yet to recode all my existing uses of CDONTS over to CDOSYS. In most
of the sample code I've seen on the usual ASP sites, there is...
|
by: tshad |
last post by:
I am trying to run a test sending mail using CDONTS on my W2K3
machine.
It works fine running from my WXP Pro, but I don't recieve the mail if
run the W2K3 machine.
Both machines have IIS...
|
by: aRBee |
last post by:
I got the all too typical Unable to access CDO.Message object error. I
checked the registry for HKEY_CLASSES_ROOT\CDO.Message\CLSID and the default
value was blank. I unregistered all CDO dlls:...
|
by: Jed |
last post by:
I have a form that needs to handle international characters withing the UTF-8
character set. I have tried all the recommended strategies for getting utf-8
characters from form input to email...
|
by: Dr. Harvey Waxman |
last post by:
I guess I should change from cdonts to cdosys. Since I am ignorant about asp I
hope you forgive this basic question. There are two asp files for handling
mail, the one that gets the info from a...
|
by: Basr |
last post by:
My provider removed suddenly the CDONTS from the server. Now I have to
change my forms and I have to use the CDOSYS functionaltity
Till now I used one script that could do the work with one page....
|
by: david220 |
last post by:
hi
once members sign up to my site they get sent an email which contains there username/password which they enter on a sign up form. Once they've signed up the email is automatically sent using...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
|
by: Oralloy |
last post by:
Hello Folks,
I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA.
My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
|
by: Carina712 |
last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
|
by: BLUEPANDA |
last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
|
by: Rahul1995seven |
last post by:
Introduction:
In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python has gained popularity among beginners and experts...
|
by: Johno34 |
last post by:
I have this click event on my form. It speaks to a Datasheet Subform
Private Sub Command260_Click()
Dim r As DAO.Recordset
Set r = Form_frmABCD.Form.RecordsetClone
r.MoveFirst
Do
If...
|
by: ezappsrUS |
last post by:
Hi,
I wonder if someone knows where I am going wrong below. I have a continuous form and two labels where only one would be visible depending on the checkbox being checked or not. Below is the...
|
by: DizelArs |
last post by:
Hi all)
Faced with a problem, element.click() event doesn't work in Safari browser.
Tried various tricks like emulating touch event through a function:
let clickEvent = new Event('click', {...
| |