Contents Menu Expand Light mode Dark mode Auto light/dark, in light mode Auto light/dark, in dark mode Skip to content
Jexus Manager Documentation
Jexus Manager Documentation
  • Visit Docs Home
  • Getting Started
    • Install Jexus Manager on Windows
    • Managing IIS Express Servers
    • Managing Local IIS Server
    • Visual Studio Code Integration
    • Managing Remote Jexus Server
    • Project History
  • Tutorials
    • Self-Signed Certificate Generation
    • HTTP API Page
    • SSL Diagnostics for IIS/IIS Express
    • Visual Studio Project Diagnostics for IIS/IIS Express
    • Binding Diagnostics for IIS/IIS Express
    • ASP.NET Core Diagnostics for IIS/IIS Express
    • PHP Diagnostics for IIS/IIS Express
    • On Demand Elevation
    • IIS Express Specific
    • Local IIS Instance
    • OOB Related 500.19 Errors
    • Jexus Specific
    • Find Jexus Manager Update
  • Support Information
    • Icons Used in Jexus Manager
    • Supported Platforms
    • Known Issues
    • Troubleshooting
    • Licensing Terms
    • Support Services
  • Privacy Policy
Back to top
View this page
Edit this page

OOB Related 500.19 Errors¶

By Lex Li

This page shows you how to use Jexus Manager to analyze IIS Out-Of-Band (OOB) related 500.19 errors.

Background¶

IIS 7+ functionality can be extended by installing OOB modules. For example, the following configuration can be put in web.config of a web site,

<configuration>
  <system.webServer>
    <rewrite>
      <rules>
        <rule name="Rewrite to article.aspx">
          <match url="^article/([0-9]+)/([_0-9a-z-]+)" />
          <action type="Rewrite" url="article.aspx?id={R:1}&amp;title={R:2}" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>

It relies on IIS URL Rewrite module, which is a separate download. If the web server does not yet have the module installed, an error page would occur,

../_images/oob_500.png

The error message does not reveal enough information, nor the root cause.

Detailed Error Message by Jexus Manager¶

If you use Jexus Manager to open this web site and check any of its settings (like Authentication), a thorough analysis is performed on web.config, and such issues would be identified and reported,

../_images/oob_dialog.png

Clearly Jexus Manager not only shows the exact line number in the config file, but also indicates the OOB module name and its download link. Simply follow the link to download and install the module, and the errors would disappear.

The most commonly missed modules are,

  • URL Rewrite module

  • ASP.NET Core module

  • CORS module

Related Resources¶

  • Install Jexus Manager on Windows

  • Managing IIS Express Servers

  • Visual Studio Project Diagnostics for IIS/IIS Express

  • IIS Express Specific

  • Local IIS Instance

Next
Jexus Specific
Previous
Local IIS Instance
Copyright © 2015-2023, LeXtudio Inc.
Made with Sphinx and @pradyunsg's Furo
Last updated on Feb 12, 2025
Advertisement
Advertisement
On this page
  • OOB Related 500.19 Errors
    • Background
    • Detailed Error Message by Jexus Manager
    • Related Resources