Module_set_response_error_status

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ram09
    New Member
    • Oct 2008
    • 45

    Module_set_response_error_status

    After deploying our site in the iis7 server, we encountered this error...

    ModuleName AspNetInitializ ationExceptionM odule
    Notification 1
    HttpStatus 500
    HttpReason Internal Server Error
    HttpSubStatus 0
    ErrorCode 0
    ConfigException Info
    Notification BEGIN_REQUEST
    ErrorCode The operation completed successfully. (0x0)

    do anyone enountered this error message?? tnx
  • ram09
    New Member
    • Oct 2008
    • 45

    #2
    Registering a Module on IIS7 globally

    I'm using a 3rd party component were in I need to register it's module. At first, I just added it's module on the web.server/module section of web.config of the application, but we had a problem with our deployed site. After reading some articles, I learned that I can add it's module on the MODULES section of the iis7 administrative tools. It is working but I found a problem because I needed to register it's module everytime I deploy a site, thinking that all our sites are using this module. So I searched and found out that I can add a module globally using the applicationhost .config.

    So I added this in the <globalModule s> section of application.con fig file:

    <add name="Module Name" image"Module Location" />

    then I also added something on the <modules> section

    <add name="Module name" />


    But after I added all this on our application.con fig file I cannot make our site run anymore it says SERVICE UNAVAILABLE...

    I am thinking that I may have missed something in the way I registered the modules...

    I also had a problem with the first procedure I did in adding a module on the administrative tools of the server because I encountered a problem also when I tried our deployed site because it has an error saying that the assembly of the module was not registered on the web.config..
    But I already checked the web.config of our application and it already registered the assembly on the <assemblies> section..

    <add assembly="Modul e Name, Version=1.3.0.0 , Culture=neutral , PublicKeyToken= 0f5ecb088372736 c" />

    doed anyone encountered this problem? I am only new with iis7 and I might be missing some things..

    Comment

    • Frinavale
      Recognized Expert Expert
      • Oct 2006
      • 9749

      #3
      Is your third party component properly installed onto the server when you deploy your application?

      I tried searching for: AspNetInitializ ationExceptionM odule but discovered that this doesn't exist. What is the exact exception you are getting?

      Comment

      • ram09
        New Member
        • Oct 2008
        • 45

        #4
        thank you for the reply, we just found out that we had some problems with iis7 regarding some security issues, that's why the server cannot find the module...
        we think that this is also our fault because we develop the site locally.. we are only new with web development, And after encountering this problems, we decided to develop in the iis7 environment, so that we won't have some problems when it comes to deployment... thanks again for the reply... ^_^

        Comment

        Working...