Changeset 644 for TI12-security/tags
- Timestamp:
- 21/02/06 11:50:03 (15 years ago)
- Location:
- TI12-security/tags/rel0-3/python
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/tags/rel0-3/python/attAuthority.wsdl
r532 r644 72 72 <documentation>NDG Attribute Authority Web Service</documentation> 73 73 <port name="attAuthority" binding="tns:attAuthorityBinding"> 74 <soap:address location=" http://127.0.0.1:5000/attAuthority.wsdl"/>74 <soap:address location=""/> 75 75 </port> 76 76 </service> -
TI12-security/tags/rel0-3/python/attAuthorityProperties.xml
r542 r644 3 3 <!-- 4 4 <name>BODC</name> 5 <keyFile> ./certs/bodc-aa-key.pem</keyFile>6 <keyPwd> 7 <certFile> ./certs/bodc-aa-cert.pem</certFile>5 <keyFile></keyFile> 6 <keyPwd></keyPwd> 7 <certFile></certFile> 8 8 --> 9 9 <name>BADC</name> 10 <keyFile>./certs/badc-aa-key.pem</keyFile> 11 <keyPwd> </keyPwd> 12 <certFile>./certs/badc-aa-cert.pem</certFile> 13 <caCertFile>./certs/cacert.pem</caCertFile> 14 <!-- Time is in seconds = 8 hours --> 15 <attCertLifeTime>28800</attCertLifeTime> 16 <attCertFilePfx>ac-</attCertFilePfx> 17 <attCertFileSfx>.xml</attCertFileSfx> 18 <mapConfigFile>./mapConfig.xml</mapConfigFile> 19 <attCertDir>./attCert</attCertDir> 20 <dnSeparator>/</dnSeparator> 21 <usrRolesModFilePath> 22 /disks/humid1/pjkersha/Development/security/python/NDG 23 </usrRolesModFilePath> 24 <usrRolesModName>BADCUserRoles</usrRolesModName> 25 <usrRolesClassName>BADCUserRoles</usrRolesClassName> 26 <usrRolesPropFile>badcUserRolesProperties.xml</usrRolesPropFile> 10 <keyFile></keyFile> 11 <keyPwd></keyPwd> 12 <certFile></certFile> 13 <caCertFile></caCertFile> 14 <attCertLifeTime></attCertLifeTime> 15 <attCertFilePfx><attCertFilePfx> 16 <attCertFileSfx></attCertFileSfx> 17 <mapConfigFile></mapConfigFile> 18 <attCertDir></attCertDir> 19 <dnSeparator><dnSeparator> 20 <usrRolesModFilePath></usrRolesModFilePath> 21 <usrRolesModName></usrRolesModName> 22 <usrRolesClassName></usrRolesClassName> 23 <usrRolesPropFile></usrRolesPropFile> 27 24 </AAprop> -
TI12-security/tags/rel0-3/python/mapConfig.xml
r493 r644 2 2 <AAmap> 3 3 <trusted name="BODC"> 4 <wsdl>http://gabriel.bnsc.rl.ac.uk/attAuthority.wsdl</wsdl> 5 <role remote="academic" local="nercInst"/> 6 <role remote="academic" local="nercFunded"/> 7 <role remote="academic" local="university"/> 8 <role remote="government" local="government"/> 9 <role remote="commercial" local="commercial"/> 10 <role remote="public" local="school"/> 11 <role remote="public" local="other"/> 12 <role remote="public" local="metOfficeForm"/> 13 <role remote="metOfficeForm" local="metOfficeForm"/> 14 <role remote="public" local="bodcUser"/> 15 <role remote="public" local="badcUser"/> 16 <role remote="academic" local="acsoe"/> 17 <role remote="academic" local="rapid"/> 18 <role remote="RapidMemb" local="rapid"/> 4 <wsdl>attAuthority.wsdl</wsdl> 5 <role remote="remoteRole" local="localRole"/> 19 6 </trusted> 20 7 <trusted name="escience"> 21 <wsdl> /home/users/pjkersha/E-Sci/config/attAuthority.wsdl</wsdl>8 <wsdl>attAuthority.wsdl</wsdl> 22 9 <role remote="bodc" local="nerc"/> 23 10 </trusted> -
TI12-security/tags/rel0-3/python/ndgSetup.sh
r509 r644 18 18 19 19 # NDG Installation directory 20 export NDG_DIR= /usr/local/NDG20 export NDG_DIR=<NDG location> 21 21 22 22 … … 38 38 39 39 # NDG Custom Python installation 40 if [ ! `echo ${PATH} | grep "${NDG_DIR}/ ActivePython-2.4/bin"` ]; then40 if [ ! `echo ${PATH} | grep "${NDG_DIR}/<python location>"` ]; then 41 41 42 export PATH=${NDG_DIR}/ ActivePython-2.4/bin:$PATH42 export PATH=${NDG_DIR}/<python location>:$PATH 43 43 fi 44 44 45 45 # Globus Toolkit and MyProxy Server 46 export GLOBUS_LOCATION= ${NDG_DIR}/globus-4.0.146 export GLOBUS_LOCATION=<Globus location> 47 47 export GPT_LOCATION=${GLOBUS_LOCATION} 48 48 49 49 . ${GLOBUS_LOCATION}/etc/globus-user-env.sh 50 50 51 export MYPROXY_SERVER= `/bin/hostname`51 export MYPROXY_SERVER=<hostname> 52 52 53 53 # Set DN explicitly to ensure match with server certificate … … 61 61 62 62 63 # MySQL64 if [ ! `echo ${PATH} | grep " /usr/local/mysql/bin"` ]; then63 # Database Settings 64 if [ ! `echo ${PATH} | grep "<database location>"` ]; then 65 65 66 export PATH= /usr/local/mysql/bin:$PATH66 export PATH=<database location>:$PATH 67 67 fi -
TI12-security/tags/rel0-3/python/sessionMgr.wsdl
r532 r644 94 94 <documentation>NDG Session Manager Web Service</documentation> 95 95 <port name="sessionMgr" binding="tns:sessionMgrBinding"> 96 <soap:address location=" http://127.0.0.1:5700/sessionMgr.wsdl"/>96 <soap:address location=""/> 97 97 </port> 98 98 </service> -
TI12-security/tags/rel0-3/python/simpleCA.wsdl
r443 r644 47 47 <documentation>simpleCA web service</documentation> 48 48 <port name="simpleCA" binding="tns:simpleCABinding"> 49 <soap:address location=" http://127.0.0.1:5500/simpleCA.wsdl"/>49 <soap:address location=""/> 50 50 </port> 51 51 </service>
Note: See TracChangeset
for help on using the changeset viewer.