When doing a GET with an email address (periods present) in the middle of the path we are getting an error from ServiceStack saying "Handler for Request Not Found". When moving the email address portion of the route to the last section of the path it is successful.
- Fails "/path/to/me%40example.com/action"
- Success "/path/to/action/me%40example.com"
We have been able to work around it by keeping the email address at the end of the path, but when there is more than one parameter with the potential of having periods we have to rely on a POST to accomplish the call. Any suggestions for work-arounds?