tags:

views:

8

answers:

0

Currently I have a browser extension that can run a Java jar library locally on the same machine. Since the CPU needed by the jar file is so huge, I would like to run the jar from an outside machine, means another separate machine just for handling the jar running.

So then later my browser extension can send request/xml to this jar server, and the jar server will process and response to the extension with a result (maybe in xml form or other?).

My browser is IE, the extension is in visual c++.

Any suggestion for the best way of doing this?