We are facing performance issue in our .NET CF mobile application when calling the web service which fetches a lot of data from the web server. On narrow downing the issue we figured out the when the objects are getting deserialized on the client, it is taking a lot of time.

We are thinking of writing some custom code for the entire communication or probabaly for the serialization/deserialization of the objects.

Can anyone help me to find a best possible solution/approach.

link|improve this question

80% accept rate
+1 for narrow downing. btw, show us some code of the deserialization progress and/or tell us what you client library you use? – Polity Feb 14 at 9:35
I am using SoapExtension class from .NET to capture the web service call and try to log the time after every operation like before deserialization, after deserialization and before searialization and after serialization. – Ankush Gupta Feb 14 at 10:25
I am extending a class from SoapExtension and calling it as MyTraceExtension which is overriding a method called "ProcessMessage" in which I am logging the time to check for the time taken. In order to improve performance, can I unplugg (not sure how) the windows serialization/deserialization and add my custom code for it. – Ankush Gupta Feb 14 at 12:29
Is it possible to override to default behaviour of windows web service call. – Ankush Gupta Feb 15 at 18:12
btw your accept rate is very low... you may want to work on accepting answers to encourage other experts to help you. – Ezi Mar 22 at 18:27
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.