We have recently replaced binary based communication protocol with XML one (between browser based client and server). The implementation is almost complete, however I am looking for ways to improve its performance both for faster transmission and parsing. Any ideas ? Please post link along with the answer.
Tell me more
×
Programmers Stack Exchange is a question and answer site for
professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.
|
|
I presume this is a web service and using C++ as a mod extenstions to a web server rather than writing your own. To speed up transfer you could be able to enable gzip compression on the web server, this is relatively straight forward in all modern web servers. Parsing could be sped up by:
|
|||||
|
|
Use compression if you have the needed computing power on both ends. |
|||||
|
|
|||
|
|