Im adding the filevistacontrol to my asp.net MVC web application.
I have a media.aspx page that is ignored in the routing with
routes.IgnoreRoute("media.aspx");
This works successfully and serves a standard webforms page.
Upon adding the filevistacontrol, I can't seem to ignore any calls the control makes to it's webservice.
Eg the following ignoreRoute still seems to get picked up by the MvcHandler.
routes.IgnoreRoute("FileVistaControl/filevista.asmx/GetLanguageFile/");
The exception thrown is:
'The RouteData must contain an item named 'controller' with a non-empty string value'
Thanks in advance.
Short answer:
routes.IgnoreRoute( "{*url}", new { url = @".*\.asmx(/.*)?" } );
Long answer:
If your service can be in any level of a path, none of these options will work for all possible .asmx services:
routes.IgnoreRoute("{resource}.asmx/{*pathInfo}");
routes.IgnoreRoute("{directory}/{resource}.asmx/{*pathInfo}");
By default, the parameters in a route pattern will match until they find a slash.
If the parameter starts with a star *
, like pathInfo
in those answers, it will match everything, including slashes.
So:
.asmx
services in the root path, becasuse {resource}
will not match slashes. (Would work for something like http://example.com/weather.asmx/forecast
).asmx
services which are one level away from the root.{directory}
will match the first segment of the path, and {resource}
the name of the service. (Would work for something like http://example.com/services/weather.asmx/forecast
)None would work for http://example.com/services/weather/weather.asmx/forecast
)
The solution is using another overload of the IgnoreRoute
method which allows to specify constraints. Using this solution you can use a simple pattern which matches all the url, like this: {*url}
. Then you only have to set a constraint which checks that this url refers to a .asmx
service. This constraint can be expressed with a regex like this: .*\.asmx(/.*)?
. This regex matches any string which ends with .asmx
optionally followed by an slash and any number of characters after it.
So, the final answer is this:
routes.IgnoreRoute( "{*url}", new { url = @".*\.asmx(/.*)?" } );
I got it to work using this (a combo of other answers):
routes.IgnoreRoute("{directory}/{resource}.asmx/{*pathInfo}");
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With