With CFMX 6.1, if you wanted to use .dog instead of .cfm to serve CF pages, 
you needed to edit the file mappings in IIS to point to the jrun dll and 
also edit the /cfusionmx/wwwroot/web.xml file and add your mappings like this:

<servlet-mapping>
         <servlet-name>CfmServlet</servlet-name>
         <url-pattern>*.dog</url-pattern>
   </servlet-mapping>

This is not working for me in CFMX7, I can serve cfm pages but not my 
custom file extension. The web.xml format is a bit different, the mappings 
have id's like this:

<servlet-mapping id="macromedia_mapping_3">
        <servlet-name>CfmServlet</servlet-name>
        <url-pattern>*.cfm</url-pattern>
</servlet-mapping>

So I tried to add my mapping with the next available id:

<servlet-mapping id="macromedia_mapping_14">
        <servlet-name>CfmServlet</servlet-name>
        <url-pattern>*.dog</url-pattern>
</servlet-mapping>

But this does not work. Does anyone know how to make this work?

Brook



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:198037
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to