views:

726

answers:

1

I'm trying to write a WCF service that allows PCs and Windows Mobiles to download certain files. For the PCs I used MTOM to stream the data to the clients but it seems that Windows Mobile does not support MTOM. How can I implement a single service to download files? The file sizes vary from 100KBs to 10MBs.

+3  A: 

At this time, DIME is still the way to go as there is no MTOM implementation for .NET CF.

See also:

Koistya Navin
You mean there is no way to implement a WCF service for downloading in both platforms? What if I use buffered transfer with BasicHttpBinding? Is it a good approach with the file sizes I mentioned?
Mohammadreza