clr 2.0 missing in iis log (& broken app)

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • frank

    clr 2.0 missing in iis log (& broken app)

    We created an asp.net 2.0 app, which sends smtp email using System.Web.mail .
    The app is in an IIS 6 application pool isolated to 2.0 apps on a 2003
    server.

    The app worked fine for a few days; recently however it began failing when
    sending to external addresses (it works fine if the recipient is inside our
    internal domain).

    Comparing the logfiles, I notice when it was working both versions of the
    CLR appear in log entries, for example:

    (compatible;+MS IE+6.0;+Windows +NT+5.1;+SV1;+. NET+CLR+1.1.432 2;+.NET+CLR+2.0 .50727)

    Log entries from when it fails only contain CLR 1.1, for example:

    (compatible;+MS IE+6.0;+Windows +NT+5.1;+SV1;+. NET+CLR+1.1.432 2)

    The app is configured to use ASP.NET 2.0. What would be causing that
    version to disappear from the log entries (and presumably the app) like
    this?



  • Greg Young

    #2
    Re: clr 2.0 missing in iis log (& broken app)

    That is the header from the client (i.e. the client only had version 1.x). I
    think you are barking up the wrong tree.

    Cheers,

    Greg Young
    MVP - C#


    "frank" <somewhere@rain bow.netwrote in message
    news:%xPzg.6860 $Oh1.729@news01 .roc.ny...
    We created an asp.net 2.0 app, which sends smtp email using
    System.Web.mail . The app is in an IIS 6 application pool isolated to 2.0
    apps on a 2003 server.
    >
    The app worked fine for a few days; recently however it began failing when
    sending to external addresses (it works fine if the recipient is inside
    our internal domain).
    >
    Comparing the logfiles, I notice when it was working both versions of the
    CLR appear in log entries, for example:
    >
    (compatible;+MS IE+6.0;+Windows +NT+5.1;+SV1;+. NET+CLR+1.1.432 2;+.NET+CLR+2.0 .50727)
    >
    Log entries from when it fails only contain CLR 1.1, for example:
    >
    (compatible;+MS IE+6.0;+Windows +NT+5.1;+SV1;+. NET+CLR+1.1.432 2)
    >
    The app is configured to use ASP.NET 2.0. What would be causing that
    version to disappear from the log entries (and presumably the app) like
    this?
    >
    >
    >

    Comment

    • Bob Barrows [MVP]

      #3
      Re: clr 2.0 missing in iis log (&amp; broken app)

      frank wrote:
      We created an asp.net 2.0 app, which sends smtp email using
      Please cut down your crossposts in the future .. you hit several
      irrelevant newsgroups, such as the .inetserver.asp .general group which
      is focussed on classic ASP. The groups containing "dotnet" as part of
      their names are the only relevant groups for your question
      --
      Microsoft MVP -- ASP/ASP.NET
      Please reply to the newsgroup. The email account listed in my From
      header is my spam trap, so I don't check it very often. You will get a
      quicker response by posting to the newsgroup.


      Comment

      • frank

        #4
        Re: clr 2.0 missing in iis log (&amp; broken app)

        OK thanks; back to the debugging board... -fgb

        "Greg Young" <druckdruckREMO VEgoose@hotmail .comwrote in message
        news:eKYCQFbtGH A.1512@TK2MSFTN GP03.phx.gbl...
        That is the header from the client (i.e. the client only had version 1.x).
        I think you are barking up the wrong tree.
        >
        Cheers,
        >
        Greg Young
        MVP - C#

        >
        "frank" <somewhere@rain bow.netwrote in message
        news:%xPzg.6860 $Oh1.729@news01 .roc.ny...
        >We created an asp.net 2.0 app, which sends smtp email using
        >System.Web.mai l. The app is in an IIS 6 application pool isolated to 2.0
        >apps on a 2003 server.
        >>
        >The app worked fine for a few days; recently however it began failing
        >when sending to external addresses (it works fine if the recipient is
        >inside our internal domain).
        >>
        >Comparing the logfiles, I notice when it was working both versions of the
        >CLR appear in log entries, for example:
        >>
        >(compatible;+M SIE+6.0;+Window s+NT+5.1;+SV1;+ .NET+CLR+1.1.43 22;+.NET+CLR+2. 0.50727)
        >>
        >Log entries from when it fails only contain CLR 1.1, for example:
        >>
        >(compatible;+M SIE+6.0;+Window s+NT+5.1;+SV1;+ .NET+CLR+1.1.43 22)



        Comment

        • Trevor Benedict R

          #5
          Re: clr 2.0 missing in iis log (&amp; broken app)

          The SMTP service has its own Log. If it not turned on then enable logging
          and see what is happening. Do you see any entries in the badmail folder. You
          should also check with your Exchange Administator (if you have one) to see
          if they are blocking any emails. You can also configure your SMTP service to
          send underlivered emails to an alternate email. You may get more information
          from that.

          Regards,

          Trevor Benedict
          MCSD

          "frank" <somewhere@rain bow.netwrote in message
          news:%xPzg.6860 $Oh1.729@news01 .roc.ny...
          We created an asp.net 2.0 app, which sends smtp email using
          System.Web.mail . The app is in an IIS 6 application pool isolated to 2.0
          apps on a 2003 server.
          >
          The app worked fine for a few days; recently however it began failing when
          sending to external addresses (it works fine if the recipient is inside
          our internal domain).
          >
          Comparing the logfiles, I notice when it was working both versions of the
          CLR appear in log entries, for example:
          >
          (compatible;+MS IE+6.0;+Windows +NT+5.1;+SV1;+. NET+CLR+1.1.432 2;+.NET+CLR+2.0 .50727)
          >
          Log entries from when it fails only contain CLR 1.1, for example:
          >
          (compatible;+MS IE+6.0;+Windows +NT+5.1;+SV1;+. NET+CLR+1.1.432 2)
          >
          The app is configured to use ASP.NET 2.0. What would be causing that
          version to disappear from the log entries (and presumably the app) like
          this?
          >
          >
          >

          Comment

          Working...