Space Rocker
Space Rocker

Reputation: 787

cross language api for this client server communication model

my question is following up from this question:
Simple Protocol Concept in Java for this setup

The idea is exactly the same i.e client will send request and server respond with some information:
enter image description here

However i want a well known protocol implemtation such that the server/client can be implemented in any programming langguage. So that client Running java can communicate over TCP/IP sockets to remote app written in C e.g.

for this reason, can you recommend any well known opensource implementation?

Upvotes: 0

Views: 507

Answers (2)

lost_in
lost_in

Reputation: 75

it depend on your architecture and your requirement, you can use TCP protocol directly, Http is another choice, if your server deployed on a http server, i recommend using web service. i hope my answer will give you some ideas.

Upvotes: 0

Related Questions