Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > cdoSendUsingPort vs cdoSendUsingPickup

Reply
Thread Tools

cdoSendUsingPort vs cdoSendUsingPickup

 
 
Andy
Guest
Posts: n/a
 
      06-01-2005
aspfaq.com Article 2305 "Why does CDO.Message give me 8004020F errors?"
recommends

"using a SendUsing value of 1 (pickup) instead of 2 (port)"

to try and resolve 8004020F CDO.Message errors.

But when should we use cdoSendUsingPort and when should we use
cdoSendUsingPickup? Is one better than the other, or is it just a matter
of preference?


*** Sent via Developersdex http://www.developersdex.com ***
 
Reply With Quote
 
 
 
 
Mark Schupp
Guest
Posts: n/a
 
      06-01-2005
This is my *opinion* (others may have other opinions).

If you can use cdoSendUsingPickup do so. It has the advantage of not
requiring that the SMTP server be running at the time the email is being
sent. It also does not require ASP to make a network call to the SMTP server
so I would expect it to be more efficient. Disadvantages: IUSR account (and
possibly IWAM) account need modify access to the pickup directory. XP and
Win 2003 no longer allow IUSR and IWAM accounts to read the metabase so you
will have to specify the pickup directory
explicitly(http://schemas.microsoft.com/cdo/con...ickupdirectory).

--
--Mark Schupp


"Andy" <> wrote in message
news:...
> aspfaq.com Article 2305 "Why does CDO.Message give me 8004020F errors?"
> recommends
>
> "using a SendUsing value of 1 (pickup) instead of 2 (port)"
>
> to try and resolve 8004020F CDO.Message errors.
>
> But when should we use cdoSendUsingPort and when should we use
> cdoSendUsingPickup? Is one better than the other, or is it just a matter
> of preference?
>
>
> *** Sent via Developersdex http://www.developersdex.com ***



 
Reply With Quote
 
 
 
 
Kyle Peterson
Guest
Posts: n/a
 
      06-01-2005
another disadvantage of using the smtp pickup method is MX records
often emails sent without a valid mx record will get ignored or be
considered spam and never reach their recipient.

and emails sent using an smtp virtual server usually wont have a valid mx
record

these article explains the various methods in detail
http://www.powerasp.com/content/new/...ail_cdosys.asp



"Mark Schupp" <> wrote in message
news:...
> This is my *opinion* (others may have other opinions).
>
> If you can use cdoSendUsingPickup do so. It has the advantage of not
> requiring that the SMTP server be running at the time the email is being
> sent. It also does not require ASP to make a network call to the SMTP
> server so I would expect it to be more efficient. Disadvantages: IUSR
> account (and possibly IWAM) account need modify access to the pickup
> directory. XP and Win 2003 no longer allow IUSR and IWAM accounts to read
> the metabase so you will have to specify the pickup directory
> explicitly(http://schemas.microsoft.com/cdo/con...ickupdirectory).
>
> --
> --Mark Schupp
>
>
> "Andy" <> wrote in message
> news:...
>> aspfaq.com Article 2305 "Why does CDO.Message give me 8004020F errors?"
>> recommends
>>
>> "using a SendUsing value of 1 (pickup) instead of 2 (port)"
>>
>> to try and resolve 8004020F CDO.Message errors.
>>
>> But when should we use cdoSendUsingPort and when should we use
>> cdoSendUsingPickup? Is one better than the other, or is it just a matter
>> of preference?
>>
>>
>> *** Sent via Developersdex http://www.developersdex.com ***

>
>



 
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
Filesize limitations using cdoSendUsingPickup, cdoSendUsingPort Alan Howard ASP General 2 06-20-2004 12:44 AM
CDO problem with BCC and cdoSendUsingPickup Jorge Pagano ASP General 0 11-25-2003 10:11 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57