vote up 0 vote down star

I am using RESTful WFC's WebInvoke and WebGet attribute classes. In the UriTemplate parameter I want to capture a variable which includes the period character. How do I do so?

So [WebInvoke(Method = "PUT", UriTemplate = "{id}")] [OperationContract] TItem UpdateItemInXml(string id, TItem newValue);

I would like it to match the url: http://service.svc/A.1

flag

1 Answer

vote up 0 vote down

I couldn't find a way to do so. The solution I implemented was to base64 encode the id in the URL.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.