Sriram
Sriram

Reputation: 2999

How to add a Windows Security dialogue to a Java Web Application

Sometimes I see the following sort of dialogue asking for username / password. I was wondering is there anyway we can add this to a java web application

Window Security dialogue

Upvotes: 1

Views: 161

Answers (1)

Santosh
Santosh

Reputation: 17923

The dialog that you are seeing appear to be coming from a web application integrated with Windows Security. Following are the couple of ways you can do it in java realm.

  1. Standard Apache recommended way.
  2. Using a open source Spnego Lib

This might be confusing with Basic-Authentication (Check Configuring Basic Authentication Here ) it also presents a similar dialog box but its NOT same as above.

Upvotes: 1

Related Questions