Call API from JVM Process

+1 vote
What is the best way to call the multichain API commands from a JVM process?

If we had binaries (or source code to compile) we can link to a library and make function calls to Multichain API.
asked Oct 17, 2015 by anonymous

1 Answer

0 votes
MultiChain is written in C/C++, so I'm not sure that the source code would help in your case. The API is straightforwards JSON-RPC, and you should find that any library designed to work with Bitcoin Core (aka bitcoind) will also work with MultiChain. Please see this question for some suggestions:

http://bitcoin.stackexchange.com/questions/7529/how-to-communicate-between-java-and-bitcoind
answered Oct 18, 2015 by MultiChain
...