Hi,
I have a workflow service which receives a stream through a ReceiveRequest activity.
The workflow works well, but if I try to persist it I have an exception (Cannot access a closed stream) which I think is related to the stream object.
The object received is similar to this:
public class MessageContext
{
public Stream Content{get;set;}
//..other properties
}
and the object sent is a MemoryStream (which is added to Known service types).
Anyone can help me?