I need to Call WCF REST Service from .NETCF 2.0 Smart Device Application. There us no "Add Service Reference" option for adding reference to WCF service in .NETCF 2.0 Smart Device Application.
A:
I'd look at using something like RestSharp unless it's just a few calls, in which case just rolling your won HttpWebRequest implementation is pretty easy.
ctacke
2010-10-16 19:23:44
How to post JSON in HttpWebRequest to WCF REST Service?
Let me Ask
2010-10-18 09:49:07
Package your data in JSON (it's pretty simple and there are parsers available) and send it as the payload in a POST.
ctacke
2010-10-18 14:23:03