I need fast transmit data from my wcf service to client. As SO helps, it means good binary serializer\derializer and data through List But I've got only XML text of DataTable serialized on service. It's big overhead.

Ok I should move to binary encoding of List. I haven't any DTO, just xml of DataTable. Could you help me with best practice

PS: At client I need datatable again for processing PSS: Http,Tcp bindings of wcf service.

link|improve this question

72% accept rate
1  
DataTable = overhead. If you need speed, you need a much simpler model to hold your data. – Will Oct 12 '10 at 16:38
If you can give details of the DataTable schema, I might be able to implement it as a protobuf-net sample. – Marc Gravell Oct 12 '10 at 17:31
I did some additional investigation into this; see DataTable – life in the old beast? which may give you more information to make an informed choice. – Marc Gravell Oct 13 '10 at 21:43
Hello Marc, I try your experemental code from protobuf-net.googlecode.com/svn/trunk. With ProtoWrite method I have the worst results (time serializng/size output).. – Andrew Kalashnikov Oct 18 '10 at 14:20
feedback

2 Answers

The first thing to try is to gzip the xml and aend via an mtom blob - simply a byte[] via wcf

If the XML is if a fixed schema, I would then consider writing some DTO translation code and send via protobuf-net and MTOM (reversing the translation at the other end).

I have an idea to pack adhoc datatables via protobuf-net but I haven't had chance to implement it yet which I discuss here: DataTable – life in the old beast?.

link|improve this answer
1  
Marc thanks again!!! Your answer are perfect. I will try gzip with mton and track protobuf-net changes – Andrew Kalashnikov Oct 12 '10 at 18:45
marcgravell.blogspot.com/2010/10/… :-) – Patrik Oct 14 '10 at 7:59
@Patrik - yes, that link looks oddly familiar. I already added it as a comment to the question, though. – Marc Gravell Oct 14 '10 at 9:02
Ah. Didn't see that :) – Patrik Oct 15 '10 at 22:59
feedback

Indeed the first step in optimizing is getting rid of the DataTables and introducing model objects. Once this is done you could configure your service endpoint to use netTcpBinding for optimized binary transfer. Remember that this binding is not interoperable with non .NET clients so you could also have a basicHttpBinding endpoint exposed in case you need this.

At the end of the day there should be only model objects involved in the exposed service methods (no DataTables and DataSets):

[ServiceContract]
public interface IMyServiceContract
{
    [OperationContract]
    SomeModel[] GetModels();
}

This being said I would recommend you performing load tests and proving that this is a bottleneck for your application before trying to prematurely optimize it.

link|improve this answer
Nettcpbinding is very bloated in real terms. It's efficiency is generally vastly exaggerated. – Marc Gravell Oct 12 '10 at 16:57
Darin, thanks for the answer. But I've got a lot of legacy code, which uses datatable. I can't avoid them by introducing model objects. – Andrew Kalashnikov Oct 12 '10 at 18:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.