Hi all,
we are running a taffy-service on a CF9/IIS/Windows 2008-box for a while.
I'm planning a migration to CF10 but taffy stopped working. It always redirects to the dashboard because the path after /index.cfm isn't passed into onRequestStart. (e.g. /API/index.cfm/samples/1).
Is this because Tomcat does not have the proper wildcard-mappings? But I thought the tomcat installation of ACF10 does have these necessary mappings in contrary to the vanilla tomcat installation...
In WEB-INF/web.xml, there is:
<servlet-mapping id="coldfusion_mapping_6">
<servlet-name>CfmServlet</servlet-name>
<url-pattern>*.cfm/*</url-pattern>
</servlet-mapping>
Do I have to add something like the next snippet to enable /API/index.cfm/samples/1?
<url-pattern>/API/*.cfm/*</url-pattern>
Thanks
Roel