default-web.xml File Modifications

The following extract of the default-web.xml file will enable you to see the changes made by the FusionReactor Installer in the web descriptor.

 

<?xml version="1.0" encoding="UTF-8"?>

<web-app>

    <!--FusionReactor filter - created Thu Jan 10 17:50:57 CET 2008-->

    <filter>

        <filter-name>FusionReactor</filter-name>

        <filter-class>com.intergral.fusionreactor.filter.FusionReactorFilter</filter-class>

        <init-param>

            <param-name>config</param-name>

            <param-value>C:/FusionReactor/instance/coldfusion.cfmx8.int000b/conf/reactor.conf</param-value>

        </init-param>

    </filter>

    <filter-mapping>

        <filter-name>FusionReactor</filter-name>

        <url-pattern>/*</url-pattern>

    </filter-mapping>

.

.

.

 

</web-app>

 

 

Examples of where the default-web.xml file is typically located :
 

ColdFusion 6 (Windows)

/CFusionMX/runtime/servers/coldfusion/SERVER-INF/default-web.xml

ColdFusion 7 (Windows)

/CFusionMX7/runtime/servers/coldfusion/SERVER-INF/default-web.xml

ColdFusion 8 (Windows)

/ColdFusion8/runtime/servers/coldfusion/SERVER-INF/default-web.xml

 

NOTE: If FusionReactor stops working you should check that the web descriptor contains correct settings similar to the ones above.

NOTE: On some J2EE servers you may have to look in the web.xml and not the default-web.xml file. See the Installation Guide for further details..