I have a REST Service and when I try and make a call to an item that has a & in it's name, I get the above error, which would make sense if I was not encoded the &
So this would be my call:
http://localhost:57851/myService/Servers/myServer/Repositories/myRepository/Models/Mine%26Yours
You can see "Mine&Yours" has been encoded as "Mine%26Yours" so should be safe.
But the request is being picked up as though I'd not encoded it.
Any ideas?
Edit:
This is not the same as (Getting "A potentially dangerous Request.Path value was detected from the client (&)")