简体   繁体   中英

how to find the physical path of Http module Assembly

In my web application we are using HTTP modules, this module has been registered as follows:

<system.webServer>
    <modules>
        <add name="MyModule" type="com.Security.MyModule, MyModule, version=1.0.5873.52018, culture= neutral, PublicKeyToken=fegg50b0f0f4" preCondition="managedHandler" /> 
    <modules>
<system.webServer>

I want to edit the functionality of this module, where can I find the physical path of the above module.

Note: There is no assembly reference made for this module in the web application. The above Registration code in the Web.config file is the only link between the module and application.

I would search in the local directory, the bin and in the GAC. More information on assembly loading can be found here... . You may also like to try Fuslogvw .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM