"Could not access 'CDO.Message' object." How to resolve in IIS server

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

  1. #1

    Default "Could not access 'CDO.Message' object." How to resolve in IIS server

    I am trying to send mail through smtp. smtp service is
    running on my machine. But every time during the
    smtpmail.send(msg) call gives "Could not
    access 'CDO.Message' object." error. Could some one help
    me out to resolve this issue.

    Thanks in advance,
    Kamal
    Kamal Guest

  2. Similar Questions and Discussions

    1. HELP! "Access is denied to this object." - Server object error 'ASP 0178 : 80070005'
      Hi, When I try to do Server.CreateObject on an activeX DLL, I receive the following message: ''''''''''''''''''''''' Server object error 'ASP...
    2. Cannot access a disposed object named "System.Net.TlsStream"???
      Hi, When I trying to do HTTP POST to HTTPS URL I am getting this error on first attempt: Cannot access a disposed object named...
    3. Custom "Access Denied" Message
      I'm using forms authentication along with role based authorization in my web app. The problem I'm having is that when a user that has already been...
    4. PEAR::SOAP - Server returns only "Object" as answer
      Hi ! I am new to Web Services. Therefore I ve set up a PHP Installation on Windows (PHP 4.3.2 and Apache 1.3.29). I have tested PHP alone and...
    5. How to get out of this error message "Database or object is read-only"
      After I moved my ASP pages and an Access database from PWS in NT 4.0 to IIS 5.0 in XP Pro, I can't edit data in the database through the ASP web...
  3. #2

    Default Re: "Could not access 'CDO.Message' object." How to resolve in IIS server

    The message on the caught exception is rather misleading as it always seems
    to come back with that regardless of the true problem. Check
    exception.InnerException.InnerException.Message to get the true cause of the
    error. Provided it isn't rejecting the attempt due to an invalid e-mail
    address, it could be that you need to specify the SMTP server via the
    SmtpMail.SmtpServer property.

    Eric

    "Kamal" <kamal@dmdata.com> wrote in message
    news:0c3e01c33cc4$6123ab50$a501280a@phx.gbl...
    > I am trying to send mail through smtp. smtp service is
    > running on my machine. But every time during the
    > smtpmail.send(msg) call gives "Could not
    > access 'CDO.Message' object." error. Could some one help
    > me out to resolve this issue.
    >
    > Thanks in advance,
    > Kamal

    Eric Guest

  4. #3

    Default Re: "Could not access 'CDO.Message' object." How to resolve in IIS server

    In my case, smtp server configured on IIS was rejecting the from address.
    I found the whole error message or exception cause in the inner exception part.
    hope this may help.
    abdulazizfarooqi is offline Junior Member
    Join Date
    May 2012
    Location
    Abudhabi
    Posts
    1

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