On Mon, Sep 29, 2008 at 10:07 PM, Chris McNamara
<[EMAIL PROTECTED]> wrote:
> Where shall I place the configuration files when using the server in an
> embedded way?
You would use the setFile() method if you are using the PropertiesUserManager.
> Alternatively, how would one add users to the server if following the
> "Embeed in 5 minutes" code snippet.
PropertiesUserManager userManager = new PropertiesUserManager();
userManager.setFile(new File("myusers.properties"));
server.setUserManager(userManager);
/niklas