I am currently using the UDP-Sample (http://msdn.microsoft.com/en-us/ library/ms751494.aspx) to implement a UDP-connection between client and server. While everything goes smoothly with normal Transfers as well as Callbacks and Returns, there is a problem when the size of a message is greater than the 64KB enforced by the protocol and the used WinSock itself (Error 10040).
A possible solution to this is the ChunkingChannel-example, which won't work that well with advanced business logics like the one I'm trying to send/receive. Maybe streaming could be an alternative. Does anybody have experience how to successfully bypass this limitation by i.e. using a binary message splitter in the channel- stack or streaming? Thanks you for any hints or tips, namX.
