added AuthorizationRequest and AuthorizationResponse objects for passing Authorization messages over http. Added handling code for these in the AuthorizationServerConnector and AuthorizationServicesConnector

This commit is contained in:
Rob Smart
2009-09-10 20:15:50 +01:00
committed by Diva Canto
parent 953ef780c5
commit b5c8925fdf
5 changed files with 172 additions and 46 deletions

View File

@@ -55,7 +55,7 @@ namespace OpenSim.Server.Handlers.Authorization
m_AuthorizationService =
ServerUtils.LoadPlugin<IAuthorizationService>(authorizationService, args);
server.AddStreamHandler(new AuthorizationServerGetHandler(m_AuthorizationService));
server.AddStreamHandler(new AuthorizationServerPostHandler(m_AuthorizationService));
}
}
}