up vote 19 down vote favorite
1
share [g+] share [fb]

Can I do the following?

[OperationContract]
[WebGet(UriTemplate = "/foo/{id}")]
string GetFoo(int id);

I'd like my service to function as both RESTful service and RPC-style SOAP service. If possible I'd like to retain int as int, and not do parsing by hand.

link|improve this question

feedback

4 Answers

up vote 13 down vote accepted

If I remember correctly, UriTemplate variables in the path always resolve to strings when using WebGet or WebInvoke. You can only bind UriTemplate variables to int, long, etc. when they are in the query portion of the UriTemplate.

link|improve this answer
feedback

As dthrasher mentioned, move id to the query part of the URI. This worked for me:

[OperationContract]
[WebGet(UriTemplate = "/foo?id={id}")]
string GetFoo(int id);

See "URI scheme" on wikipedia for more info about the different parts of a URI: http://en.wikipedia.org/wiki/URI_scheme

link|improve this answer
Thanks! This also removes the req for parameters in a specific order. – Jerry Nov 17 '10 at 22:46
1  
Thanks for providing an example. – Doctor Oreo Dec 9 '11 at 4:15
feedback

Unfortunately you must do the parsing yourself if you want to use the UriTemplate.

link|improve this answer
feedback

If I understand your question correctly, then I think it is possible.

When the operation contract is exposed as a REST endpoint, then a GET request on "foo/123" will yield the desired result since the URI template automatically maps it to an int and the implementation of GetFoo can use id as an int.

When the same operation contract is exposed as a SOAP endpoint, the proxy(created via a ChannelFactory or derived from ClientBase ) will expose it as int.

I hope that answers your question.

link|improve this answer
I get error message "Operation 'GetFoo' in contract 'IFooService' has a path variable named 'id' which does not have type 'string'. Variables for UriTemplate path segments must have type 'string'." Can you show me the code that works? – Eugene Yokota Feb 17 '09 at 14:52
feedback

Your Answer

 
or
required, but never shown

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