Hello all,
I am quite new to Jackrabbit and content repositories in general. I have run
the first part ("Hop 1") of the "first hops" example, and I ran into the
following peculiar behavior: I noticed that if I changed the line
Session session = repository.login();
to
Credentials creds = new SimpleCredentials("bullshit",
"password".toCharArray());
Session session = repository.login(creds);
I could still login successfully. Why does it behave like this? And what is
the easiest way to setup "real" authentication?
Regards,
Karianne Berg