I am using the below route in MVC3 application
context.MapRoute("RoutName", "GetReport/{Id1}/{Id2}/{requestId}/{customerId}/
{CustomerVersion}/{Code}", new {controller= "ControllerName",action = "GetReport" });
This route works fine for below URL in the local environment
http://localhost/ControllerName/GetReport/104334/120531211240541002/120531211240551002
/120531211237331002/1/Code
But in the server i am getting "Access Blocked due to invalid characters in URL". Is there restriction on the length of the URL in MVC?
Any input would be great.