aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/GridServer (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-05-31* Propogate OpenSimMain hack to stop mono-addins scanning warnings to the ↵Justin Clarke Casey1-0/+7
grid managing * This hack just temporarily sends console output to /dev/null when we make the relevant addins calls, restoring it afterwards
2008-05-28let Grid Servers specify a connect string in their configuration.Sean Dague2-4/+4
2008-05-25Update svn properties. Formatting cleanup.Jeff Ames1-4/+4
2008-05-20i'm extending the RestStreamHandler.Handler(...) signature to actually Dr Scofield1-6/+18
provide OSHttpRequest and OSHttpResponse to our REST handler. also, this adds proper RestPlugin.IsGod() checking against the X-OpenSim-Godkey HTTP request header. last, i added XML doc comments to RestPlugin.cs
2008-05-16* Minor: For no particularly good reason, make all console prompts conform ↵Justin Clarke Casey1-1/+1
to the same prompt scheme
2008-05-16Formatting cleanup.Jeff Ames3-37/+37
2008-05-14Formatting cleanup.Jeff Ames2-3/+3
2008-05-13* As part of the region registration process, the grid service now requests ↵Justin Clarke Casey2-11/+57
the status of the region using the region http uri just passed in * If the status cannot be retrieved, then the region startup will terminate. * The aim of this is for earlier detection of situations where the region can send messages out but cannot accept incoming requests (often due to firewall issues) * This is currently an extremely simplistic check which completely trusts whatever http uri is given by the region * This contact may be problematic, though since the user service needs to be able to contact the region http uri, it doesn't seem unreasonable for the grid to have to be able to do so too at this stage * This change will require a prebuild
2008-05-12* Refactor: Creating grid login exceptions to try and break up a large method. Justin Clarke Casey1-71/+109
* This in preparation for further login validation to check that the region logging in is properly contactable. * Also increase verbosity of some error messages
2008-05-12* Minor: Make some direct grid server console output into logged messages ↵Justin Clarke Casey1-7/+10
instead
2008-05-12* If a region running in grid mode fails to login to the grid service, ↵Justin Clarke Casey1-1/+1
startup will now terminate instead of carrying on (and thus burying the error message)
2008-05-12* Minor: Change 'delete region' message to region logout messageJustin Clarke Casey1-1/+2
2008-05-12* Minor: Commenting out message detailing all individual map information ↵Justin Clarke Casey1-2/+1
dispatch for now
2008-05-12* Minor: Initial cleaning up of some of the grid sim login messagesJustin Clarke Casey1-22/+25
2008-05-09* Fix opensim region server shutdown.Justin Clarke Casey1-1/+1
2008-05-07* Move shutdown processing to base OpenSimServer, overriding the method ↵Justin Clarke Casey1-16/+5
where appropriate * This also means that the command quit (as well as shutdown) will now close down grid servers (instead of only being in place for the region server)
2008-05-01* Rolled back a few changes.Adam Frisby5-129/+122
2008-05-01* Cleaning code still.Adam Frisby5-122/+129
2008-05-01* Breaking all the code, breaking all the code..!Adam Frisby1-10/+3
* Made a bunch more members static, removed some dead code, general cleaning.
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby3-14/+9
(this took a while to run).
2008-04-13* Fix a bug in the friends module that causes a friend not to appear online ↵Teravus Ovares1-1/+16
when they were. * A few things for testing. * This makes a modification to the region registration with the grid server so that the region can send it a chosen password to identify itself. It will not cause any errors, if either one are not updated.
2008-04-11* Discerned between AddProfile and UpdateProfile in region registrationlbsa711-1/+11
:: Believe it or not, but INSERT/UPDATE is actually a better pattern than REPLACE, since, with INSERT/UPDATE you can catch erroneous UPDATES to non-INSERTed items as well as catch erroneous re-INSERTS. in 95% of the cases, you SHOULD have a clear INSERT context, and a clear and separate UPDATE context. If you think your case falls within the 5%, maybe you should re-evaluate your code. ::
2008-04-02changing more references to OpenSim.DataSean Dague1-5/+5
2008-03-28* Refactored out common http handler operationslbsa711-34/+27
2008-03-26* Increase timeout for initial simulator login from 16 to 30 secondsJustin Clarke Casey1-21/+48
* Comments, capitalization
2008-03-25Minor formatting / svn properties cleanup.Jeff Ames1-6/+5
2008-03-24XmlRpcCommand refactoringJohan Berntsson1-1/+1
2008-03-24Added a plugin loader in GridServerJohan Berntsson2-1/+74
2008-03-21Comment out an unused 'str' and add a WriteLine to useCharles Krinke1-1/+1
an "Exception e" with e.ToString() to eliminate 2 warnings.
2008-03-18Formatting cleanup. Minor refactoring.Jeff Ames1-56/+52
2008-03-18* Added the ability to type the partial name of a region in the start ↵Teravus Ovares1-0/+25
location box and go to that region if it's there. If no close match was found, it sends you home. This is tested on mySQL. There's untested code on grids that are based on sqlite and MSSQL. The SQL statements *should* be right, but your results may very. * Ex, if you want to go to Wright Plaza, you simply need to type Wright Plaza in the start location in the client when you log-in.
2008-03-18Formatting cleanup.Jeff Ames3-57/+53
2008-03-18Added copyright messages. Set svn:eol-style. Minor cleanup.Jeff Ames2-55/+82
2008-03-12* made some privates protected lbsa711-2/+2
2008-03-12* made GridManager class publiclbsa711-1/+1
2008-03-12* Renamed Main.cs to GridServerBase.cslbsa712-3/+3
2008-03-12* Refactored out exe bit out of Grid Server for great justicelbsa712-54/+44
2008-03-12* Refactored some internals in Grid Server Mainlbsa711-24/+21
2008-03-12* Refactored out creation of LoginResponselbsa711-114/+121
* Refactored out ErrorResponse
2008-03-12* Extracted RegionProfileData from Requestlbsa712-131/+141
* Introduced ValidateNewRegion and ValidateOverwrite
2008-03-12* minor refactoringlbsa711-84/+82
2008-03-11* Applying patch from Mantis #607 - Grid Server crash. Thanks Diva.Adam Frisby1-10/+22
2008-03-04Cleaned up a couple compiler warnings.Jeff Ames1-2/+3
2008-03-04Merged 3Di code that provides scene and avatar serialization, and plugin ↵Johan Berntsson2-4/+73
support for region move/split/merge. See ThirdParty/3Di/README.txt. Unless the new modules are used there should be no noticeable changes when running OpenSim.
2008-02-20Minor cleanup.Jeff Ames1-3/+0
2008-02-19Remove "Loading inventory" messages from item inventory loadsJustin Clarke Casey1-12/+12
2008-02-18* Make RegionProfileData.RequestSimProfileData staticJustin Clarke Casey1-0/+5
* Minor documentation bits
2008-02-17Thank you very much, Diva for a patch to increase the Charles Krinke1-14/+24
grid server reliability.
2008-02-14* Took a stab at getting keys to work as intendedlbsa711-2/+2
[Provided by openlifegrid.com]
2008-02-14* Added more debugging output to GridManager to pin down the key exchange ↵lbsa711-3/+15
weirdness [Provided by openlifegrid.com]