Dan Albey
Dan Albey

Reputation: 559

HTTP Basic Authentication in JBoss 4?

How can I enable HTTP Basic Authentication in JBoss 4 for a specific web application?

Having a fixed username/password will do.

Upvotes: 0

Views: 3293

Answers (1)

karoberts
karoberts

Reputation: 9938

Follow this process http://community.jboss.org/wiki/SecureAWebApplicationInJBoss

Summary:

  • You add a security domain to login-config.xml

  • You modify web.xml and jboss-web.xml in your war file to enable authentication using the security domain

Upvotes: 1

Related Questions