Best way to send floating point numbers from .NET to Java and back

Posted by Evgeny on Stack Overflow See other posts from Stack Overflow or by Evgeny
Published on 2010-05-21T04:56:23Z Indexed on 2010/05/21 5:00 UTC
Read the original article Hit count: 140

Filed under:
|
|

I'm writing a .NET application that will make an RPC call to a Java application (via a message queue). The data sent in both directions will be large arrays of floating-point numbers. What is the best way to serialize them to send them across the wire? I'd like something more compact than text, but architecture-independent as the server may not be an x86 machine. The Java application can be changed as needed.

© Stack Overflow or respective owner

Related posts about .NET

Related posts about java