You can get the archive for Windows 64 bits (7, 8, 10).
The archive contains:
- Cameo server
- Cameo console
- Basic runnable Java examples
To run the examples, it is likely that you need to have VC++ redistributable 2015 installed on your system.
To test the basic examples:
- Open a first shell.
- execute
cd cameo-win
. - run
cameo-server.bat
and let it run. - Open a second shell.
- run
cameo-console.bat list
, the list of available applications are displayed. - run
cameo-console.bat exec responder-server
, the server responding to string requests is running. - Open a third shell.
- run
cameo-console.bat exec requester-client my-request-1
, the client sending a request to the responder server (not the Cameo server). - run
cameo-console.bat exec requester-client my-request-2
, the client another string request. - Stop the applications of the second and third shells by ctl-C.
You can test the second example by running in two shells the commands cameo-console.bat exec publisher-app
and cameo-console.bat exec subscriber-app
.
The source code of the examples is available here.