sending/receiving Attachments in WCF
In my RESTful WCF project I need to receive an image attachmen开发者_StackOverflow中文版t. I dont know how to send /receive attachments in WCF REst Service. In my WCF Service I will receive an image attachment from a mobile App. I dont know how to write the code. I appreciate if you can forward some examples and code. I am new to WCF.
Thanks in advance
You can attach images to a REST WCF Service. Implement PUT or POST and submit.
[WebInvoke(Method="PUT", UriTemplate =...
Here is a discussion: http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/6da8261d-152c-4053-9254-84cf6e7e1573/
精彩评论