We send bitmaps from our Silverlight client to a server that will be saved using a specific WCF-RIA service. Our DomainService class looks something like this:
[EnableClientAccess()] public class CBitmapSavingService : DomainService { public void SaveBitmap(string bitmapGuid, byte[] pngBytes) {
Works well until we get a large bitmap. Then we get the "DomainOperationException" exception.
I suspect that we have exceeded the size limit for a parameter or message.
Can I reconfigure my service so that larger bitmaps can be sent by the client using WCF-RIA-Services?
source share