NServiceBus sending data question

Posted by Alidaswe on Stack Overflow See other posts from Stack Overflow or by Alidaswe
Published on 2010-04-20T11:58:59Z Indexed on 2010/04/20 12:03 UTC
Read the original article Hit count: 154

Filed under:
|
|

hi, i am using NServices to send an object of the class MyMusicMessage as blow:

[Serializable]
public class MyMusicMessage:IMessage
{
    public Guid EventId { set; get; }
    public byte[] MusicBytes { set; get; }
}

when the size of MusicBytes is about 200k, it can be sent well.

but when the size is more than 300K,there is a "MessageQueueException".

is there any limit to the object size in NServiceBus?

thanks.

© Stack Overflow or respective owner

Related posts about nservicebus

Related posts about send