- Timestamp:
- 22/05/08 15:08:26 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TI05-delivery/ows_framework/trunk/ows_server/ows_server/config/ndgMiddleware.py
r3901 r3919 9 9 class ndgMiddleware: 10 10 11 def __init__(self, app,g):11 def __init__(self, app, g, app_conf): 12 12 13 13 #this is the next application in the wsgi stack … … 86 86 87 87 88 SSOMiddleware(app, cf.config, g,89 defSection='NDG_SECURITY.ssoClient')88 self.app = SSOMiddleware(app, cf.config, g, app_conf, 89 defSection='NDG_SECURITY.ssoClient') 90 90 91 self.globals.sslServer = g.ndg.security.c lient.ssoclient.cfg.sslServer92 self.globals.wayfuri=g.ndg.security.c lient.ssoclient.cfg.wayfuri93 self.globals.logout=g.ndg.security.c lient.ssoclient.cfg.logoutURI91 self.globals.sslServer = g.ndg.security.common.sso.cfg.sslServer 92 self.globals.wayfuri=g.ndg.security.common.sso.cfg.wayfuri 93 self.globals.logout=g.ndg.security.common.sso.cfg.logoutURI 94 94 95 95 elif isSSOService: … … 104 104 105 105 106 SSOMiddleware(app, cf.config, g, 107 defSection='NDG_SECURITY.ssoService') 106 self.app = SSOMiddleware(app, g, app_conf, 107 defSection='NDG_SECURITY.ssoService', 108 wssSection='NDG_SECURITY.wssecurity') 108 109 109 self.globals.sslServer=g.ndg.security.server.sso service.cfg.sslServer110 self.globals.wayfuri=g.ndg.security.server.sso service.cfg.wayfuri111 self.globals.logout=g.ndg.security.server.sso service.cfg.logoutURI112 self.globals.getCredentials=g.ndg.security.server.sso service.cfg.getCredentials110 self.globals.sslServer=g.ndg.security.server.sso.cfg.sslServer 111 self.globals.wayfuri=g.ndg.security.server.sso.cfg.wayfuri 112 self.globals.logout=g.ndg.security.server.sso.cfg.logoutURI 113 self.globals.getCredentials=g.ndg.security.server.sso.cfg.getCredentials 113 114 114 115 # Policy Enforcement Point initialisation
Note: See TracChangeset
for help on using the changeset viewer.