Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default SMTP Error

    Hi,
    I have an application which sends out mails(using CDO),
    the SMTP Server being a machine which is one the same
    network. Most times, the mails are sent out successfully
    but every once in a while, the app reports the following
    error:
    "The message could not be sent to the SMTP server. The
    transport error code was 0x800ccc0b. The server response
    was not available.".
    Also at times i get the following error:"The transport
    lost its connection to the server."

    Any idea why i keep getting these errors.?

    I have a deadline approaching pretty fast, plz HELP...
    Latha Rajeev Guest

  2. Similar Questions and Discussions

    1. Net::SMTP error: Can't locate Mail/Sender.pm in @INC
      Hi! I'm trying to get this short email script to work: #################################################### #!/usr/bin/perl -w use...
    2. CFMAIL/SMTP socket error
      "alx88" wrote in message closure 14758/473) time it happens. Thanks! Someone, probably your STMP server, is closing the SMTP socket before CF...
    3. Mail::Mailer - Capturing SMTP error?
      Hi all, QUESTION IN BRIEF: Using SMTP in Mail::Mailer how do I capture a 'user unknown' error as shown below from the debug info: ...
    4. configure smtp error
      I am using LAN in my college and there is firewall. will it effect my mail function in php. I configure my server name as localhost at apache...
    5. what is smtp error 0xc00402c7 ?
      http://www.aspfaq.com/show.asp?id=2254 ________________________________________ Why? Why was I programmed to feel pain? Atrax. MVP, IIS...
  3. #2

    Default RE: SMTP Error

    Hello Latha,

    The error message "The transport error code was 0x800ccc0b. The server
    response was not available."

    Means: Server is busy.

    If we use cdoSendUsingPort in CDOSYS to send mail rapidly, it may lock up
    application.


    The resolution is to use the default cdoSendUsingPickup directory, and
    allow the local SMTP service to route the mail. cdoSendUsing pickup will
    take up to 30 seconds to complete its communication with the mailserver per
    mail connection. cdoSendUsingPickup, can put out mass mails because it only
    creates a file I/O file into the local store.

    I suggest you try this method to send out meail. For details, please check
    out:
    [url]http://msdn.microsoft.com/library/en-us/wss/wss/_clb_sending_smtp_mail_by_th[/url]
    e_pickup_directory_using_cdosys_vbs.asp?frame=true

    Hope it helps.

    Best regards,
    yhhuang
    VS.NET, Visual C++
    Microsoft

    This posting is provided "AS IS" with no warranties, and confers no rights.
    Got .Net? [url]http://www.gotdotnet.com[/url]
    --------------------
    !Content-Class: urn:content-classes:message
    !From: "Latha Rajeev" <microobjects@vsnl.com>
    !Sender: "Latha Rajeev" <microobjects@vsnl.com>
    !Subject: SMTP Error
    !Date: Thu, 26 Jun 2003 01:13:18 -0700
    !Lines: 15
    !Message-ID: <09cc01c33bba$ccb53790$a301280a@phx.gbl>
    !MIME-Version: 1.0
    !Content-Type: text/plain;
    ! charset="iso-8859-1"
    !Content-Transfer-Encoding: 7bit
    !X-Newsreader: Microsoft CDO for Windows 2000
    !Thread-Index: AcM7usyyQ0tsfI/iRpWdS3vcb7R+zQ==
    !X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
    !Newsgroups: microsoft.public.dotnet.framework.aspnet
    !Path: cpmsftngxa06.phx.gbl
    !Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:155031
    !NNTP-Posting-Host: TK2MSFTNGXA11 10.40.1.163
    !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
    !
    !Hi,
    !I have an application which sends out mails(using CDO),
    !the SMTP Server being a machine which is one the same
    !network. Most times, the mails are sent out successfully
    !but every once in a while, the app reports the following
    !error:
    !"The message could not be sent to the SMTP server. The
    !transport error code was 0x800ccc0b. The server response
    !was not available.".
    !Also at times i get the following error:"The transport
    !lost its connection to the server."
    !
    !Any idea why i keep getting these errors.?
    !
    !I have a deadline approaching pretty fast, plz HELP...
    !

    Yan-Hong Huang[MSFT] Guest

  4. #3

    Default RE: SMTP Error


    Hello Yan-Hong Huang,
    Thanx for u'r suggestion. I will be trying this out as
    soon as i can.


    Latha



    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Latha Rajeev Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139