Kent
Kent

Reputation: 1689

ColdFusion/ASP split URL handling

I am working on a new ASP.NET MVC (IIS 7) application that needs to hang off the URL of an existing group of ColdFusion applications. The URL hosts a series of applications and is of the form:

http://myapps.com/allApps/<appNumber>/<appViews>

ColdFusion is currently handling all the applications on this URL. I need the new ASP.NET application to use the same URL format but have a specific <appNumber>. So for example, ColdFusion handles:

http://myapps.com/allApps/1/<appViews>
http://myapps.com/allApps/2/<appViews>
http://myapps.com/allApps/3/<appViews>
http://myapps.com/allApps/4/<appViews>

New ASP.NET app needs to handle:

http://myapps.com/allApps/5/<appViews>

I know how to use ASP routing to send the requests to my ASP app controller once my app is getting the requests, but I don't know how to tell IIS to send the specific URLs to my application so they are not processed by ColdFusion.

Upvotes: 1

Views: 179

Answers (1)

Scott Stroz
Scott Stroz

Reputation: 7519

Unless you have IIS set up to pass ASP.NET pages to ColdFusion for processing, it should not matter.

Upvotes: 3

Related Questions