int noSc = 0;
// get the errorpage's in this .war
for (Enumeration e = descriptor.getSecurityConstraints() ; e.hasMoreElements() ;) {
foundIt = false;
noSc++;
SecurityConstraintImpl securityConstraintImpl = (SecurityConstraintImpl) e.nextElement();
UserDataConstraintImpl userDataConstraint = (UserDataConstraintImpl) securityConstraintImpl.getUserDataConstraint();
if (userDataConstraint != null) {
String transportGuarantee = userDataConstraint.getTransportGuarantee();
if (transportGuarantee.length() > 0) {
if ((transportGuarantee.equals("NONE")) ||
(transportGuarantee.equals("INTEGRAL")) ||