2

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.

Cœur
  • 37,241
  • 25
  • 195
  • 267
mrtaikandi
  • 6,753
  • 16
  • 62
  • 93

1 Answers1

4

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

See also:

Community
  • 1
  • 1
Konstantin Tarkus
  • 37,618
  • 14
  • 135
  • 121
  • 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? – mrtaikandi Apr 12 '09 at 08:08