I'm creating an MVC application that's following a RESTful URL approach.
I am experiencing the following error:
The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters
This error occurs when my URL length >= 225 chars. Surely I can have much longer URLs without this problem. Doesn’t this relate to file paths rather than URLs?
Is there a way around it?