IPC between .NET and Java client applications

后端 未结 3 1496
南方客
南方客 2021-02-03 14:20

I must get two different client application talk without any kind of broker or server. What is the best method for IPC beween two process, Java and .NET?

It must able to

3条回答
  •  日久生厌
    2021-02-03 14:54

    I would use protobuf.

    Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. Google uses Protocol Buffers for almost all of its internal RPC protocols and file formats.

提交回复
热议问题