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?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…