Custom Query (4 matches)
Results (1 - 3 of 4)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#870 | fixed | [S] NOCS Attribute Authority address needs to be permanent | hsnaith | pjkersha |
Description |
#855 raised for the BADC applies to the other data providers. Each Data Provider needs a permanent URI set aside for their Attribute Authority. MOLES [and CMSL] include the role name, Attribute Authority address tuple in their records. The latter should be fixed to avoid the need to have to change all data records should the Attribute Authority move location. The address could be set up with a proxy e.g. http://some-host-inside-firewall:51000/AttributeAuthority -> http://aa.data-provider-name.nerc.ac.uk |
|||
#1101 | fixed | [S] Update Paster templates for Security Installation | pjkersha | pjkersha |
Description |
The paster templates in ndg.security.server.paster_templates should be updated. Templates should exist for:
Other possibilities in brackets. |
|||
#1122 | fixed | [S] Wrong format for Yadis XRDS additional service endpoints | pjkersha | pjkersha |
Description |
For ESGF, the XRDS document returned by the OpenID Provider returns additional service endpoints. These should be listed at the level of a single XRD element and not one per XRD element. This is the current wrong way: <?xml version="1.0" encoding="UTF-8"?> <xrds:XRDS xmlns:xrds="xri://$xrds" xmlns="xri://$xrd*($v*2.0)"> <XRD> <Service priority="0"> <Type>http://specs.openid.net/auth/2.0/signon</Type> <Type>http://openid.net/signon/1.0</Type> <URI>https://openid.provider.somewhere.ac.uk</URI> <LocalID>https://somewhere.ac.uk/openid/PJKershaw</LocalID> </Service> </XRD> <XRD> <Service priority="10"> <Type>urn:esg:security:myproxy-service</Type> <URI>socket://myproxy-server.somewhere.ac.uk:7512</URI> <LocalID>https://somewhere.ac.uk/openid/PJKershaw</LocalID> </Service> </XRD> <XRD> <Service priority="20"> <Type>urn:esg:security:attribute-service</Type> <URI>https://attributeservice.somewhere.ac.uk</URI> <LocalID>https://somewhere.ac.uk/openid/PJKershaw</LocalID> </Service> </XRD> </xrds:XRDS> This is the correct way: <?xml version="1.0" encoding="UTF-8"?> <xrds:XRDS xmlns:xrds="xri://$xrds" xmlns="xri://$xrd*($v*2.0)"> <XRD> <Service priority="0"> <Type>http://specs.openid.net/auth/2.0/signon</Type> <Type>http://openid.net/signon/1.0</Type> <URI>https://openid.provider.somewhere.ac.uk</URI> <LocalID>https://somewhere.ac.uk/openid/PJKershaw</LocalID> </Service> <Service priority="10"> <Type>urn:esg:security:myproxy-service</Type> <URI>socket://myproxy-server.somewhere.ac.uk:7512</URI> <LocalID>https://somewhere.ac.uk/openid/PJKershaw</LocalID> </Service> <Service priority="20"> <Type>urn:esg:security:attribute-service</Type> <URI>https://attributeservice.somewhere.ac.uk</URI> <LocalID>https://somewhere.ac.uk/openid/PJKershaw</LocalID> </Service> </XRD> </xrds:XRDS> |