This is an implementation of a (fake) "print server" for the Authentication Lab in the course 02239 - Data Security at the Technical University of Denmark.
The project consists of three subprojects:
PrintServer.Common
is a java library containing interfaces shared between the client and the server.PrintServer.Client
is java application with a "print server" RMI Client.PrintServer.Server
is java application with a "print server" RMI Server.
This project uses the bazel
build tool. You can obtain bazel here.
Building is as simple as running:
bazel build //:all
Once the build process has finished, start the server by running:
bazel run //:PrintServer.Server
Then start the client by running:
bazel run //:PrintServer.Client