How can I optimize the serialization process?- The first call to a Web Service takes long because XmlSerializer generate an assembly optimized for each type in memory. - To optimize the serialization process pregeneration of serialization assembly with Visual Studio or sgen.exe is needed. - Implementing serialization separately can also increase the performance.
|