How to parse the multipart data in a restful service...
- by AXS
I have written a restful web service in c# and .net using the Restful Starter Kit that receives a mime multipart form via a stream.
The multipart form contains a small xml fragment and a small file binary.
I have read the stream in, and I have also written some code to parse the data to obtain the XML and the file binary.
However, I feel that…