Hi,

I am trying to figure out a way for CF server to process html files. After
some research I found out a way to configure IIS to do it.
My first question is if this is the best way to do it or there is a better way?

Start the Internet Services Manager.
From the IIS Snap-In window, right click the Computer icon. Select Properties.
Select WWW Service in the Master Properties pulldown. If you're running IIS 5,
click the Internet Information Services tab to display the Masters Properties
pulldown.
Click Edit.
Select Home Directory on the Tab menu, and click Configuration.
If the .dbm extension is listed within the Extension column:
Highlight the .dbm extension and click Edit
In the Executable field, enter "C:\CFusionMX\runtime\lib\wsconfig\1\jrun.dll"
without the quotes.
Click OK, Apply and OK.
If the .dbm extension is not listed within the Extension column:
Click Add.
In the Executable field, enter"C:\CFusionMX\runtime\lib\wsconfig\1\jrun.dll "
without the quotes.
In the Extension field, enter ".dbm" without the quotes.
Click OK, Apply and OK.
Stop the ColdFusion MX Application Server service.
In a text editor, open the file \cf_root\wwwroot\WEB-INF\web.xml.
Add a servlet mapping to the web.xml file for the .dbm extension.
<servlet-mapping>
<servlet-name>CfmServlet</servlet-name>
<url-pattern>*.dbm</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>CfmServlet</servlet-name>
<url-pattern>*.dbm/*</url-pattern>
</servlet-mapping>


Save the file.
Restart the ColdFusion MX Application Server service.


My second question is if there is a way to process only files in specific
directories instead of every single html file.

Thanks a lot