Hi,
Is there a way to use TransferMode="Streamed" when using the NetMessagingBinding or a CustomBinding with the NetMessagingTransport configured?
I was trying to overcome the QuotaExceededException because when using the Azure Service Bus, the maximum message size is 256KB. The Idea is that data would be split over multiple messages when configuring streaming in the WCF binding.
I know that I could alternatively send larger messages through the Cache or Blob storage as is proposed in the following article: http://msdn.microsoft.com/en-us/library/hh690942.aspx
Or manually split the data over multiple messages and aggregate them again as proposed in the following article: http://geekswithblogs.net/asmith/archive/2012/04/10/149275.aspx
Thanks in advance!
Is there a way to use TransferMode="Streamed" when using the NetMessagingBinding or a CustomBinding with the NetMessagingTransport configured?
I was trying to overcome the QuotaExceededException because when using the Azure Service Bus, the maximum message size is 256KB. The Idea is that data would be split over multiple messages when configuring streaming in the WCF binding.
I know that I could alternatively send larger messages through the Cache or Blob storage as is proposed in the following article: http://msdn.microsoft.com/en-us/library/hh690942.aspx
Or manually split the data over multiple messages and aggregate them again as proposed in the following article: http://geekswithblogs.net/asmith/archive/2012/04/10/149275.aspx
Thanks in advance!