Is it possible to implement Streaming in a custom WCF LOB Adapter?

174 views Asked by At

The WCF LOB Adapter SDK creates skeleton code for getting started in the implementation of custom LOB Adapters. As part of this code, the following IOutboundHandler interface is implemented:

Message Execute (Message message, TimeSpan timeout);

Is it possible to implement streaming with Adapters built with the WCF LOB Adapter SDK? As far as I can tell, none of the builtin WCF Adapters that implement streaming are using the IOutboundHandler interface...

1

There are 1 answers

0
Dmitry Golubets On

According to MSDN Message class supports streaming. It doesn't hold a whole body but a reader or writer reference instead.