From 16940097beee0fad554dfcb7249294ff8ac247d4 Mon Sep 17 00:00:00 2001 From: Rob Smart Date: Wed, 9 Sep 2009 19:42:53 +0100 Subject: The stubs for an authorization service, at the moment the service will always grant access to an avatar entering the region if requested. --- bin/config-include/Standalone.ini | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'bin/config-include') diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini index c187358..24020b6 100644 --- a/bin/config-include/Standalone.ini +++ b/bin/config-include/Standalone.ini @@ -11,9 +11,13 @@ AssetServices = "LocalAssetServicesConnector" InventoryServices = "LocalInventoryServicesConnector" NeighbourServices = "LocalNeighbourServicesConnector" + AuthorizationServices = "LocalAuthorizationServicesConnector" [AssetService] LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" [InventoryService] LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" + +[AuthorizationService] + LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" -- cgit v1.1 From 953ef780c5858b70b3b2da551640c93105feb12c Mon Sep 17 00:00:00 2001 From: Rob Smart Date: Thu, 10 Sep 2009 16:13:18 +0100 Subject: adding in working functionality for the remote connector --- bin/config-include/Grid.ini | 1 + 1 file changed, 1 insertion(+) (limited to 'bin/config-include') diff --git a/bin/config-include/Grid.ini b/bin/config-include/Grid.ini index 3b8f3a9..10f7dbd 100644 --- a/bin/config-include/Grid.ini +++ b/bin/config-include/Grid.ini @@ -10,6 +10,7 @@ [Modules] AssetServices = "RemoteAssetServicesConnector" InventoryServices = "RemoteInventoryServicesConnector" + AuthorizationServices = "RemoteAuthorizationServicesConnector" NeighbourServices = "RemoteNeighbourServicesConnector" NeighbourServiceInConnector = true LandServiceInConnector = true -- cgit v1.1 From ce332f235ccc5168cfc44834e16318497c67cdd7 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Thu, 10 Sep 2009 19:56:08 -0700 Subject: Changed the interface of IAuthorizationService to get less data. --- bin/config-include/StandaloneHypergrid.ini | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 6359ac0..aa122be 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -11,6 +11,7 @@ AssetServices = "HGAssetBroker" InventoryServices = "HGInventoryBroker" NeighbourServices = "LocalNeighbourServicesConnector" + AuthorizationServices = "LocalAuthorizationServicesConnector" InventoryServiceInConnector = true AssetServiceInConnector = true HGAuthServiceInConnector = true @@ -31,6 +32,11 @@ LocalGridInventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" HypergridInventoryService = "OpenSim.Services.Connectors.dll:HGInventoryServiceConnector" +[AuthorizationService] + LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" + [AuthenticationService] ; For the HGAuthServiceInConnector - LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:HGAuthenticationService" \ No newline at end of file + LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:HGAuthenticationService" + + \ No newline at end of file -- cgit v1.1