top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What are different ways for servlet authentication in Java?

0 votes
336 views
What are different ways for servlet authentication in Java?
posted Sep 12, 2017 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Servlet Container provides different ways of login based servlet authentication:

HTTP Basic Authentication
HTTP Digest Authentication
HTTPS Authentication

Form Based Login: A standard HTML form for authentication, advantage is that we can change the login page layout as our application requirements rather than using HTTP built-in login mechanisms.

answer Sep 13, 2017 by Ayush Srivastav
...