I'm implementing a custom WCF REST behavior, it implements/overrides the base WebHttpBehavior but allows for REST communication using a custom serializer. The code is based on Carlos' work here.
I've got it running but the thing is we REALLY want to use the UriTemplate functionality to allow for true REST-ful URIs. Has anyone seen this done or could provide help on finding the right implementation?
We're sticking with WCF on purpose to provide REST and SOAP endpoints at the same time so moving to Web API is not an option here.
I had started going down the road of implementing my own
UriTemplate
parsing/matching logic, but then I stumbled upon this answer (Using Custom WCF Body Deserialization without changing URI Template Deserialization) and found it did that and more.In order to use it, you still have to uncomment the code related to validating that a
UriTemplate
is not used. I also ended up reformatting the code a bit for my purposes (taking out logic to check if there was more than one parameter, since in my use case the body would always be exactly one parameter).