Java Servlet can be used as part of a hybrid solution (i.e. website using many different programming languages.) But how a hybrid solution would work, i.e. how would the different programs execute/call each other and exchange information?
Please don’t use code to explain. Thank you very much!
Java Servlet can be used as part of a hybrid solution (i.e. website using
Share
There are many ways you can ‘exchange data.’ It all depends on the your application.
You could use XML to define your data, as many programming languages support digesting/serializing XML. You could also use JSON (more for javascript), or direct socket connection as mentioned above.
I have seen C# Client applications that write java byte code to send to server implemented in java. The answer depends on the specific details of your needs.