I'm getting an error of:
" The service is unavailable. Server Error Either the Macromedia application server(s) are unreachable or none of them has a mapping to process this request. "
I already had a folder such as /mobile/qr-image/ with a ColdFusion Mobile application, and then I created a mobile template in ASP.NET and converted /mobile to an IIS Application.
So at /mobile/ you'd receive the site's ASP.NET mobile template, but at /mobile/qr-image/ you'd receive the site's ColdFusion mobile template.
Only.. /mobile/ works fantastic, but I get the error when I try to view /mobile/gr-image/.
I guess if you think about running a ColdFusion application inside of an ASP.NET application folder, it doesn't make sense and would logically not work, but is there a way in IIS that I could get it to work?
I'm using IIS7.5 and I'm on Windows Server 2008R2
Oh and it's not exactly a possible solution to strip out the ColdFusion application and throw it in another folder.
Any ideas? Is it possible?
Thanks in advance
Edit - Added the contents of my Web.config:
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<handlers>
<remove name="AboMapperCustom-20623"/>
<remove name="AboMapperCustom-25687"/>
<remove name="AboMapperCustom-24453"/>
</handlers>
</system.webServer>
</configuration>