- Timestamp:
- 25/01/10 10:21:19 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/WSSecurity/ndg/wssecurity/common/__init__.py
r6387 r6392 30 30 super(WSSecurityError, self).__init__(errorMessage) 31 31 32 32 33 class WSSecurityConfigError(WSSecurityError): 33 34 """Configuration error with WS-Security setting or settings""" 34 35 36 35 37 class WSSecurityConfigOpNotPermitted(WSSecurityConfigError): 36 38 "Raise for dict methods not allowed in WSSecurityConfig" 37 39 40 41 class InvalidCertChain(WSSecurityError): 42 """Raised from SignatureHandler.verify if the certificate submitted to 43 verify a signature is not from a known CA""" 44 45 46 class TimestampError(WSSecurityError): 47 """Raised from SignatureHandler._verifyTimestamp if there is a problem with 48 the created or expiry times in an input message Timestamp""" 49 50 51 class MessageExpired(TimestampError): 52 """Raised from SignatureHandler._verifyTimestamp if the timestamp of 53 the message being processed is before the current time. Can be caught in 54 order to set a wsu:MessageExpired fault code""" 38 55 class WSSecurityConfig(dict): 39 56 """Parser for WS-Security configuration. Extends dict to enable
Note: See TracChangeset
for help on using the changeset viewer.