Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 948 Bytes

README.md

File metadata and controls

35 lines (23 loc) · 948 Bytes

PrintServer implementation with java.rmi

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.

Project structure

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.

Building and Running

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