Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > CDOSYS AND CDONTS on W2K3 machine

Reply
Thread Tools

CDOSYS AND CDONTS on W2K3 machine

 
 
tshad
Guest
Posts: n/a
 
      01-14-2005
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


 
Reply With Quote
 
 
 
 
tshad
Guest
Posts: n/a
 
      01-14-2005
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:ORS2lXn%...
> 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" <> wrote in message
> news:%23%238jPUn%.. .
>>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
>>

>
>



 
Reply With Quote
 
 
 
 
Ray Costanzo [MVP]
Guest
Posts: n/a
 
      01-14-2005
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" <> wrote in message
news:%23%238jPUn%.. .
> 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
>
>



 
Reply With Quote
 
Steven Burn
Guest
Posts: n/a
 
      01-14-2005
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" <> wrote in message
news:u76MYbn#...
> "Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
> news:ORS2lXn%...
> > 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" <> wrote in message
> > news:%23%238jPUn%.. .
> >>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
> >>

> >
> >

>
>



 
Reply With Quote
 
Aaron [SQL Server MVP]
Guest
Posts: n/a
 
      01-14-2005
> We have W2K3 and others have W2K (which has CDONTS on it).

Windows 2000 also has CDOsys, so stop using CDONTS.NEWMAIL there, too.


 
Reply With Quote
 
tshad
Guest
Posts: n/a
 
      01-14-2005
"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:%23YmzPen%...
> 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" <> wrote in message
> news:%23%238jPUn%.. .
>> 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
>>
>>

>
>



 
Reply With Quote
 
Steven Burn
Guest
Posts: n/a
 
      01-14-2005
> 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" <> wrote in message
news:##6Vgin#...
> "Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
> message news:%23YmzPen%...
> > 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" <> wrote in message
> > news:%23%238jPUn%.. .
> >> 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
> >>
> >>

> >
> >

>
>



 
Reply With Quote
 
Ray Costanzo [MVP]
Guest
Posts: n/a
 
      01-14-2005
"tshad" <> wrote in message
news:%23%236Vgin%.. .

> 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


 
Reply With Quote
 
tshad
Guest
Posts: n/a
 
      01-14-2005
"Aaron [SQL Server MVP]" <> wrote in message
news:%23ltQein%...
>> 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


 
Reply With Quote
 
Jeff Cochran
Guest
Posts: n/a
 
      01-14-2005
On Fri, 14 Jan 2005 12:22:06 -0800, "tshad"
<> wrote:

>"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
>news:ORS2lXn%...
>> 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" <> wrote in message
>> news:%23%238jPUn%.. .
>>>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
>>>

>>
>>

>


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
CDONTS or CDOSYS UTF-8 Email Jed ASP General 10 11-16-2006 07:39 PM
Adding W2K3 R2 x64 DC to Existing W2K3 R2 x32 domain =?Utf-8?B?RGF2ZSBBbGxlcnRvbg==?= Windows 64bit 1 08-25-2006 02:25 PM
CDONTS to CDOSYS Paxton ASP General 1 11-12-2004 01:52 PM
Hotmail blocks emails sent w/ CDONTS/CDOSYS???? Todd M. Taylor ASP General 0 02-02-2004 05:20 PM
What differences between CDONTS and CDOSYS? BB ASP General 2 07-15-2003 01:13 PM



Advertisments