views:

19

answers:

1

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
How to post JSON in HttpWebRequest to WCF REST Service?
Let me Ask
Package your data in JSON (it's pretty simple and there are parsers available) and send it as the payload in a POST.
ctacke