开发者

XML compression compatible to both Java and C#

开发者 https://www.devze.com 2022-12-21 07:48 出处:网络
Am building a C# front end that communicates to a Java Tomcat server via HTTP. The WOX package is used to de/serialize the objects on the Java and C# ends.

Am building a C# front end that communicates to a Java Tomcat server via HTTP.

The WOX package is used to de/serialize the objects on the Java and C# ends.

However, I want to reduce the time spent in sending XML strings over HTTP, by using some XML compression packages.

My questions are:

  1. Is using WOX de/serialization resulting in XML 开发者_开发百科strings being passed back and forth, the best way to communicate between C# and Java?

  2. What XML compression libraries (has to be free) should I consider to increase the speed?

Many thanks. Chapax


I'd initially try just applied gzip compression at the HTTP level - partly because that should be able to be applied transparently to your app. XML generally compresses pretty well. Do you have a specific target in mind, so you'll know when a result is "good enough"? (If not, that might be the first thing to work out - otherwise you won't know when to stop.) Tomcat supports gzip compression as a connector configuration option.

As for whether XML is the right way to go - it certainly has advantages and disadvantages. There are plenty of other serialization options, including JSON, Thrift and Protocol Buffers. Each has pros and cons in terms of platform integration, size, readability, versioning etc. You should work out what's important to you and then look at the options in terms of those considerations.

0

精彩评论

暂无评论...
验证码 换一张
取 消