I need to create WCF Application, which will be working with pictures. It allows you to get a picture as a stream, and to send a picture to server (as a stream). It will wor
Streamed response mode is not an optimal mode if you do not have very large streams. Say if your pictures are withing a couple of KB or even upto 100KB you might be better off with buffered transferMode. You can have a stream contract and buffered transfer mode where the whole data is actually buffered across but the data contract enables you to access it like a stream.