How to allow desktop applications to invoke methods on a Java application on the same machine -


so i'd able allow other applications residing on same machine call java application.

the call either launch app if not running , invoke method or invoke method.

ideally communication should language independent calling application written in language.

has done before , can suggest things explore/avoid?

thanks

i'd use tcp , make application daemon. if want application easy other platforms integrate with, should use text based protocol define suit needs.

and avoid xml if don't need transport complex structures. (i'd go json if need more complex data transfer).

if new socket programming, might help:

http://download.oracle.com/javase/tutorial/networking/sockets/


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -