Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MVC WEB API routing fails when url contains encoded ampersand

Tags:

When i call my webservice witch takes two parameters i get:

A potentially dangerous Request.Path value was detected from the client (&).

Routeconfig:

config.Routes.MapHttpRoute( name: "PropertiesSearch", routeTemplate: "api/property/Search/{category}/{query}", defaults: new { controller = "Property", action = "Search", category = "common", query = string.Empty } ); 

Controllermethod:

[HttpGet] public SearchResult Search(string category, string query) { } 

When i call the api with:

/api/property/search/homes/areaId%3D20339%26areaId%3D20015

A potentially dangerous Request.Path value was detected from the client (&).

Doing this:

/api/property/search/homes/?query=areaId%3D20339%26areaId%3D20015

works fine.

How do i solve the routing decoding problem?

like image 927
espvar Avatar asked Jan 16 '13 13:01

espvar


1 Answers

Scott Hanselman blogged about this. You might want to check the requestPathInvalidCharacters property of the <httpRuntime> node in your web.config.

Personally I would avoid such characters in the uri portion and simply put those values as query string parameters.

like image 58
Darin Dimitrov Avatar answered Sep 22 '22 19:09

Darin Dimitrov