I am currently working on a project that requires many platforms using many programming languages (including js) to communicate with a java server.
Currently the protocol is using thrift to serialize the data on all platforms, but each platform is using it's own transport mechanism to transmit the data to server (where it gets de-serialized).
However in js, since it is lacking the binary-protocol (TBinaryProtocol) this seems impossible.
Is this the case, can't js simply serialize the data (I don't mind if it serializes the data into the json-thrift format) and send it using other methods?
Thanks