I am writing a small image/video upload program using WCF REST. Ideally, I would have my service accepting a stream. But the client side developer told me that it would make his life more complicated and he would only pass me a byte array.
I have no idea how to write a REST service that receives a byte array instead of stream. All the examples I could find online are using stream.
Please help!