aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers/Authentication/OpenIdServerHandler.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-08-13Update OpenID server handler with proper interface. fixes ↵BlueWall1-1/+1
http://opensimulator.org/mantis/view.php?id=7301
2013-07-08Add "show caps stats by user" and "show caps stats by cap" console commands ↵Justin Clark-Casey (justincc)1-19/+11
to print various counts of capability invocation by user and by cap This currently prints caps requests received and handled, so that overload of received compared to handled or deadlock can be detected. This involves making BaseStreamHandler and BaseOutputStream record the ints, which means inheritors should subclass ProcessRequest() instead of Handle() However, existing inheriting classes overriding Handle() will still work, albeit without stats recording. "show caps" becomes "show caps list" to disambiguate between show caps commands
2012-05-03Implement optional name and description on http stream handlers so that we ↵Justin Clark-Casey (justincc)1-0/+2
can relate a slow request to what the handler actually does and the agent it serves, if applicable. This is most useful for capabilities where the url is not self-describing.
2012-03-02OpenID auth needs hashing before authenticatingBlueWall1-1/+1
2011-12-05Implement IOSHttpRequest and IOSHttpResponse http interfaces and use instead ↵Justin Clark-Casey (justincc)1-1/+1
of OSHttpRequest/OSHttpResponse. This is required for the substitution of different HTTP servers or the newer HttpServer.dll without having to commit to a particular implementation. This is also required to write regression tests that involve the HTTP layer. If you need to recompile, all you need to do is replace OSHttpRequest/OSHttpResponse references with IOSHttpRequest/IOSHttpResponse.
2010-01-10Moved OpenId authentication from user server to Server.Handlers.Authentication.Diva Canto1-15/+22
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-04Intermediate commit. WILL NOT COMPILE!Melanie Thielker1-1/+1
2009-03-19* Group OpenSim.Framework.Servers interfaces togetherJustin Clarke Casey1-0/+1
2009-02-24Setting svn:eol-style=native on new files.Mike Mazur1-337/+337
2009-02-24First step in separating out the Userserver console command handling to a ↵MW1-337/+337
"module". Added OpenSim.Grid.UserServer.Modules project/dll which now contains the components of the userserver. With the OpenSim.Grid.UserServer being the setup and initiate exe.
2009-02-12* optimized usings.lbsa711-2/+0
2008-12-30Update svn properties, minor formatting cleanup.Jeff Ames1-339/+339
2008-12-20* ReCommit the OpenID patch with a few less dependencies.Teravus Ovares1-0/+339
* Removes all references to ASP.NET (System.Web.UI,*) * Removes all references to System.Web.Mobile
2008-12-20Revert OpenId until we can come to grips with the mono 2 requirementCharles Krinke1-339/+0
for System.Web.Mobile
2008-12-19Mantis#2816. Thank you kindly, JHurliman for the beginnings of Charles Krinke1-0/+339
OpenID support in OpenSim for the UserServer.