Changeset 4692 for TI12-security/trunk/python/ndg.security.server/ndg/security/server/sso/sso/config/ssoServiceMiddleware.py
- Timestamp:
- 19/12/08 16:39:57 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/python/ndg.security.server/ndg/security/server/sso/sso/config/ssoServiceMiddleware.py
r4587 r4692 116 116 self.smURI = None 117 117 118 if self.cfg.has_option(defSection, 'attAuthorityURI'): 119 self.aaURI = self.cfg.get(defSection, 'attAuthorityURI') 118 if self.cfg.has_option(defSection, 'sessionManagerEnvironKey'): 119 self.smEnvironKey = self.cfg.get(defSection, 120 'sessionManagerEnvironKey') 121 else: 122 self.smEnvironKey = None 123 124 if self.cfg.has_option(defSection, 'attributeAuthorityURI'): 125 self.aaURI = self.cfg.get(defSection, 'attributeAuthorityURI') 120 126 else: 121 127 self.aaURI = None 128 129 if self.cfg.has_option(defSection, 'attributeAuthorityEnvironKey'): 130 self.aaEnvironKey = self.cfg.get(defSection, 131 'attributeAuthorityEnvironKey') 132 else: 133 self.aaEnvironKey = None 122 134 123 135 # ... for SSL connections to security web services
Note: See TracChangeset
for help on using the changeset viewer.