Hello, I have just received the instructions for the
SCJD. The most confusing part is regarding the mode flag. The instructions state:
"Your programs must not require use of command line arguments other than the single mode flag, which must be supported. ... The mode flag must be either "server", indicating the server program must run, "alone", indicating standalone mode, or left out entirely, in which case the network client and gui must run."
Does this mean the following:
java -jar <path_and_filename> server = I only start the server and no GUI
java -jar <path_and_filename> = I only start the GUI
java -jar <path_and_filename> alone = ???
I am really unclear abouth this? Do I also let the user specify the location of the db file? Do I also let the user specify the RMI port if I choose RMI? Or can I just assume the defaults?
Thank you