• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

security-constraint

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In web.xml, <security-constraint> would it be correct to say:

* Leave off <http-method> means allow all
* Leave off <auth-constraint> means allow all
* Specifying element means allow one except for an empty element which means allow none.

Thanks in advnace.
 
Ranch Hand
Posts: 2874
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Art Van Delay:
In web.xml, <security-constraint> would it be correct to say:

* Leave off <http-method> means allow all
* Leave off <auth-constraint> means allow all
* Specifying element means allow one except for an empty element which means allow none.



Yes. Not sure about the second part of the third-one, though.

In web.xml, <security-constraint> would it be correct to say:

* Leave off <http-method> means apply to all Http methods
* Leave off <auth-constraint> means allow all
* Specifying element means allow one except for an empty element which means allow none.
 
Ranch Hand
Posts: 95
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I confirmed the last one too from HFSJ...
I'd also like to add:

<auth-constraint>*</auth-constraint> ==> allow all
<auth-constraint></auth-constraint> ==> allow none
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic