I'm in the process of implementing a site that is basically comprised of three independent modules, however, I want them to interact on some level. I have setup the standalone sling app and have much of the first module complete. The next phase is to create another instance of the sling application (all running on the same machine). Using the "-p <port>" option, I have the second instance running parallel on a different port, but a question arose. Through Felix, I can manage the RMI port (default 1099), but now they are in conflict. Since 1099 is the "standard" port for RMI, I'm trying to decide if it's best practice to have one repository with 3 different workspaces (which will need to interact) or if it's better to have multiple repos with different RMI ports (thus, non-standard). Eventually, I may have these on separate machines, but certainly no need at this time.
Also, is there any other gotchas or good practices I should follow in this area during my implementation? Respectfully, John
