DLL not registered

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

    DLL not registered

    My PC went under many security patch last week
    Yet, I can't use my local IIS ASP web site.
    When starting the page, I get the folowing error:
    HTTP 500 => from IIS log file i have Login.ASP, Line 6, Error 8002801d, DLL
    not registered
    In Login.ASP, at line 6 I have Session("XXX") = "YYY".
    Same thing with Global.asa in which I have (before removal, just for
    testing...) Application(".. .") = "..."
    Looks like internal IIS DLL (ASP.DLL) are not registered anymore.
    Can you help since I use my local Web site for commercial demonstrations.

    --
    Cordialement,
    Arnaud MIGEON
    SDV Division Auxiliaire de Transport
    Rsp. Domaine Commercial / Application Domain Leader
    tél. : +33 1 34 21 44 69
    fax. : +33 1 34 21 44 90
    Parc d'Activité des Bellevues
    2, Av. des Bellevues / 25, Av. du Gros Chêne
    BP61 - 95610 ERAGNY / OISE
    95612 CERGY PONTOISE - FRANCE




  • Foo Man Chew

    #2
    Re: DLL not registered

    You wouldn't get an error from an ASP page if ASP wasn't registered. ASP
    wouldn't be able to process the page and return the error!

    Do you *LITERALLY* have exactly XXX and YYY in those strings, if not please
    go to all the trouble of showing us the exact code...




    "Arnaud Migeon" <a.migeon@sdv.c om> wrote in message
    news:uafZUApsDH A.2508@TK2MSFTN GP12.phx.gbl...[color=blue]
    > My PC went under many security patch last week
    > Yet, I can't use my local IIS ASP web site.
    > When starting the page, I get the folowing error:
    > HTTP 500 => from IIS log file i have Login.ASP, Line 6, Error 8002801d,[/color]
    DLL[color=blue]
    > not registered
    > In Login.ASP, at line 6 I have Session("XXX") = "YYY".
    > Same thing with Global.asa in which I have (before removal, just for
    > testing...) Application(".. .") = "..."
    > Looks like internal IIS DLL (ASP.DLL) are not registered anymore.
    > Can you help since I use my local Web site for commercial demonstrations.
    >
    > --
    > Cordialement,
    > Arnaud MIGEON
    > SDV Division Auxiliaire de Transport
    > Rsp. Domaine Commercial / Application Domain Leader
    > tél. : +33 1 34 21 44 69
    > fax. : +33 1 34 21 44 90
    > Parc d'Activité des Bellevues
    > 2, Av. des Bellevues / 25, Av. du Gros Chêne
    > BP61 - 95610 ERAGNY / OISE
    > 95612 CERGY PONTOISE - FRANCE
    >
    >
    >
    >[/color]


    Comment

    • Arnaud Migeon

      #3
      Re: DLL not registered

      Sorry

      I tried this.

      1) Delete existing Global.asa to prevent any ASP page to be proceeded prior.

      2) create dummy Test.asp page

      <%

      Response.Write "This is a test ASP page"

      %>

      3) Test => it works

      4) Update dummy page with

      <%

      Session("Test") = "Hello"

      Response.Write "This is a test ASP page =>" & Session("Test")

      %>

      5) I have the error:

      in french:

      error '8002801d'

      Bibliothèque non inscrite.

      /test.asp, line 2

      and from the log

      17:25:50 GET /test.asp |2|8002801d|Bib liothèque_non_i nscrite.__ 500 0

      Same thing if using Application

      What do you think about that.

      It appears I cannot use Session or Application.


      "Foo Man Chew" <foo@man.chew > a écrit dans le message de news:
      uCnsd#psDHA.349 6@TK2MSFTNGP11. phx.gbl...[color=blue]
      > You wouldn't get an error from an ASP page if ASP wasn't registered. ASP
      > wouldn't be able to process the page and return the error!
      >
      > Do you *LITERALLY* have exactly XXX and YYY in those strings, if not[/color]
      please[color=blue]
      > go to all the trouble of showing us the exact code...
      >
      >
      >
      >
      > "Arnaud Migeon" <a.migeon@sdv.c om> wrote in message
      > news:uafZUApsDH A.2508@TK2MSFTN GP12.phx.gbl...[color=green]
      > > My PC went under many security patch last week
      > > Yet, I can't use my local IIS ASP web site.
      > > When starting the page, I get the folowing error:
      > > HTTP 500 => from IIS log file i have Login.ASP, Line 6, Error 8002801d,[/color]
      > DLL[color=green]
      > > not registered
      > > In Login.ASP, at line 6 I have Session("XXX") = "YYY".
      > > Same thing with Global.asa in which I have (before removal, just for
      > > testing...) Application(".. .") = "..."
      > > Looks like internal IIS DLL (ASP.DLL) are not registered anymore.
      > > Can you help since I use my local Web site for commercial[/color][/color]
      demonstrations.[color=blue][color=green]
      > >
      > > --
      > > Cordialement,
      > > Arnaud MIGEON
      > > SDV Division Auxiliaire de Transport
      > > Rsp. Domaine Commercial / Application Domain Leader
      > > tél. : +33 1 34 21 44 69
      > > fax. : +33 1 34 21 44 90
      > > Parc d'Activité des Bellevues
      > > 2, Av. des Bellevues / 25, Av. du Gros Chêne
      > > BP61 - 95610 ERAGNY / OISE
      > > 95612 CERGY PONTOISE - FRANCE
      > >
      > >
      > >
      > >[/color]
      >
      >[/color]


      Comment

      • MSFT

        #4
        Re: DLL not registered

        Hi Arnaud,

        You may take a look at following article to see if it will help:

        PRB: ASP Error 8002801d "Library Not Registered"


        Luke
        Microsoft Online Support

        Get Secure! www.microsoft.com/security
        (This posting is provided "AS IS", with no warranties, and confers no
        rights.)

        Comment

        • Arnaud Migeon

          #5
          Re: DLL not registered

          Luke,
          ASP DO raise an error when trying to store things in Session() or
          Application().
          This is not linked to Server.CreateOb ject. I allready went thru all of this
          topics..
          Is there a tool to REG again DLL that are used by ASP?

          --
          Cordialement,
          Arnaud MIGEON
          SDV Division Auxiliaire de Transport
          Rsp. Domaine Commercial / Application Domain Leader
          tél. : +33 1 34 21 44 69
          fax. : +33 1 34 21 44 90
          Parc d'Activité des Bellevues
          2, Av. des Bellevues / 25, Av. du Gros Chêne
          BP61 - 95610 ERAGNY / OISE
          95612 CERGY PONTOISE - FRANCE



          "MSFT" <lukezhan@onlin e.microsoft.com > a écrit dans le message de news:
          XrsrTYxsDHA.218 8@cpmsftngxa07. phx.gbl...[color=blue]
          > Hi Arnaud,
          >
          > You may take a look at following article to see if it will help:
          >
          > PRB: ASP Error 8002801d "Library Not Registered"
          > http://support.microsoft.com/default...;EN-US;Q274038
          >
          > Luke
          > Microsoft Online Support
          >
          > Get Secure! www.microsoft.com/security
          > (This posting is provided "AS IS", with no warranties, and confers no
          > rights.)
          >[/color]


          Comment

          • Bob Barrows

            #6
            Re: DLL not registered

            Arnaud Migeon wrote:[color=blue]
            > Luke,
            > ASP DO raise an error when trying to store things in Session() or
            > Application().
            > This is not linked to Server.CreateOb ject. I allready went thru all
            > of this topics..
            > Is there a tool to REG again DLL that are used by ASP?
            >
            >[/color]
            Based on your testing results, it looks as if this has nothing to do with
            asp.dll. Your simple asp page would not have run at all if asp.dll was not
            registered.

            But, given the error occurs when simply trying to set a value to a session
            variable, it does appear that something is wrong with your IIS installation.
            Have you tried uninstalling and reinstalling IIS?

            You may need to get MS PSS involved ...

            Bob Barrows

            --
            Microsoft MVP - ASP/ASP.NET
            Please reply to the newsgroup. This email account is my spam trap so I
            don't check it very often. If you must reply off-line, then remove the
            "NO SPAM"


            Comment

            • Foo Man Chew

              #7
              Re: DLL not registered

              Try using Windows authentication and see if an authenticated user can
              successfully create session/application variables.

              It may be that IUSR lacks permissions to write to memory, or registry,
              or...?


              "Arnaud Migeon" <a.migeon@sdv.c om> wrote in message
              news:%23wMNfsNt DHA.2224@TK2MSF TNGP09.phx.gbl. ..[color=blue]
              > Luke,
              > ASP DO raise an error when trying to store things in Session() or
              > Application().
              > This is not linked to Server.CreateOb ject. I allready went thru all of[/color]
              this[color=blue]
              > topics..
              > Is there a tool to REG again DLL that are used by ASP?
              >
              > --
              > Cordialement,
              > Arnaud MIGEON
              > SDV Division Auxiliaire de Transport
              > Rsp. Domaine Commercial / Application Domain Leader
              > tél. : +33 1 34 21 44 69
              > fax. : +33 1 34 21 44 90
              > Parc d'Activité des Bellevues
              > 2, Av. des Bellevues / 25, Av. du Gros Chêne
              > BP61 - 95610 ERAGNY / OISE
              > 95612 CERGY PONTOISE - FRANCE
              >
              >
              >
              > "MSFT" <lukezhan@onlin e.microsoft.com > a écrit dans le message de news:
              > XrsrTYxsDHA.218 8@cpmsftngxa07. phx.gbl...[color=green]
              > > Hi Arnaud,
              > >
              > > You may take a look at following article to see if it will help:
              > >
              > > PRB: ASP Error 8002801d "Library Not Registered"
              > > http://support.microsoft.com/default...;EN-US;Q274038
              > >
              > > Luke
              > > Microsoft Online Support
              > >
              > > Get Secure! www.microsoft.com/security
              > > (This posting is provided "AS IS", with no warranties, and confers no
              > > rights.)
              > >[/color]
              >
              >[/color]


              Comment

              • Arnaud Migeon

                #8
                Re: DLL not registered

                Will try to ReInstall IIS: Uninstall then Install + SP3 + HotFix IIS.
                Will keep in touch.

                "Bob Barrows" <reb01501@NOyah oo.SPAMcom> a écrit dans le message de news:
                #VsQuHPtDHA.250 8@TK2MSFTNGP12. phx.gbl...[color=blue]
                > Arnaud Migeon wrote:[color=green]
                > > Luke,
                > > ASP DO raise an error when trying to store things in Session() or
                > > Application().
                > > This is not linked to Server.CreateOb ject. I allready went thru all
                > > of this topics..
                > > Is there a tool to REG again DLL that are used by ASP?
                > >
                > >[/color]
                > Based on your testing results, it looks as if this has nothing to do with
                > asp.dll. Your simple asp page would not have run at all if asp.dll was not
                > registered.
                >
                > But, given the error occurs when simply trying to set a value to a session
                > variable, it does appear that something is wrong with your IIS[/color]
                installation.[color=blue]
                > Have you tried uninstalling and reinstalling IIS?
                >
                > You may need to get MS PSS involved ...
                >
                > Bob Barrows
                >
                > --
                > Microsoft MVP - ASP/ASP.NET
                > Please reply to the newsgroup. This email account is my spam trap so I
                > don't check it very often. If you must reply off-line, then remove the
                > "NO SPAM"
                >
                >[/color]


                Comment

                Working...