aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-02-29More compiler warning cleanup.Jeff Ames1-13/+7
Removed verbose flag, since it doesn't do anything any more.
2008-02-25* Caught HttpListenerException and swallowed if with outputlbsa711-2/+10
* Moved Flush into Close since it's always done in that order. * Minor renamings * Reversed if for clarity
2008-02-21"threads" command now works. I've added manual tracking of threads (only if ↵Tedd Hansen1-0/+1
compiled in DEBUG mode)... Its ugly and even requires a separate thread to track the treads, but it will be very valuable in debugging.
2008-02-20Minor cleanup.Jeff Ames4-4/+4
2008-02-20* Caught 'OPTIONS' verb in BaseHttpServer that would otherwise explode.lbsa711-1/+17
(There are actually other non-content requests too, but I didn't know what we wanted to do with them)
2008-02-19Playing "Name that thread". Adding names and isbackground=true to all ↵Tedd Hansen1-0/+1
threads so it will be easier to debug.
2008-02-18* Output XmlRpc error message if user server gets a fault response from the ↵Justin Clarke Casey1-6/+9
region server on login * This will make it more obvious if one accidentally starts one's region server in standalone rather than grid mode but then tries to login to a grid (as I am wont to do) * We are now sending back a fault code (-32601) if no xmlrpc method is found rather than an ordinary message
2008-02-18More exception checks and crash hintsTedd Hansen1-0/+1
If no scriptengine is specified then don't try to load any.
2008-02-05Converted logging to use log4net.Jeff Ames3-23/+23
Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
2008-02-04* Rebase all current servers on common abstract BaseOpenSimServer classJustin Clarke Casey1-2/+45
* The immediate upshot is that "show uptime" from the console will now show uptime on all server types (user, asset, grid, etc) * DEV: This refactoring is far from complete - only just enough to makes the "show uptime" command common accross the servers. More is needed, but in this case it's somewhat like eating cabbage, which I prefer not to do all at once
2008-01-25* Add missed out evn:eol-style nativeJustin Clarke Casey1-43/+43
* I intended to think about refactoring the servers to use this common base class, but temporary laziness won out. * I'm leaving this here as a reminder/mind poke and for reasons of laziness (again) * If people object to me leaving this kind of thing lying around, please say
2008-01-25* Add very basic initial login stats to the user serverJustin Clarke Casey1-0/+43
* Typing 'stats' on the command line will given total number of successful logins today and yesterday * A little bit more to come, probably * Refactoring will follow next
2008-01-15* Mother of all commits:Adam Frisby1-1/+1
* Cleaned up copyright notices in AssemblyInfo.cs's * Added Copyright headers to a bunch of files missing them * Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
2008-01-10* After fighting with it a bit more, Opensim is now compatible with the most ↵Teravus Ovares1-13/+26
recent release client(RC) on the linden labs download page. * Don't forget, you need -loginuri *and* -loginpage * Ex: -loginpage http://10.1.1.2:8002/?method=login -loginuri http://10.1.1.2:8002/ * The ?method=login is important, don't forget to add it * If you customize your http_loginform.html file, be sure to keep the form post address as is.
2008-01-09* This update enables the web_login method.Teravus Ovares1-5/+2
* Remember, the client doesn't support web_login to other grids in the current RC, however the next RC will.
2008-01-09* Added a hashtable based HTTP processor in preparation of the web_login_keyTeravus Ovares3-124/+255
* Added the web_login_key to the users table * Added happy configurable http error message pages * This update is large enough to have 'awe' value.. so backup your users or weep. * Not tested on MSSQL, even though I added code to update the tables!
2008-01-07* Enabling the LLSD Login method by jhurliman so libSecondLife clients work ↵Teravus Ovares1-3/+3
on OpenSim again.
2008-01-07* Adding More to the MessageServer classes.Teravus Ovares1-0/+27
* Don't forget to prebuild
2008-01-06* A few more Message Server comms related updatesTeravus Ovares1-0/+4
2008-01-06* Added some userserver glue for communications with the message server Teravus Ovares1-0/+17
* Added some code for the message server, fixed a few references and starting to flesh it out.
2008-01-05* Applying jhurliman's LLSD login enablement patch.Teravus Ovares2-3/+105
* I'm keeping it deactivated until some issues are resolved. * I'm patching it in deactivated so the patch doesn't get outdated * I've deactivated it by commenting out the handler for the application/xml+llsd content type. * While I've tested this as much as possible on my setup and found the deactivated code doesn't cause any problems, consider this update experimental (event though it's deactivated)
2008-01-02* Updates UserServer Teravus Ovares1-1/+1
* Updates OSG1UserServices * Friends list is now persistent in grid mode. * You can add, new friends and remove them
2007-12-27* Optimized usingslbsa717-48/+60
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-24* Added some ugly hackish code to the user server to start implementing the ↵Teravus Ovares1-0/+134
new login method. You still can't yet log-in via the new method. Does not interfere with normal userserver operation, ie safe to update if you want.
2007-12-11added copyright noticesJeff Ames5-3/+143
2007-12-10saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames4-8/+8
notice of doom
2007-12-06removed some duplicate hard-coded port numbers. changed ports to uint.Jeff Ames1-4/+4
2007-12-05Some refactoring of the RestObjectPoster (and related classes).MW3-4/+14
2007-12-04keeping opensim safe for children -- made some namespace references less ↵Jeff Ames1-2/+2
explicit
2007-12-04* Fixed compile issue.Adam Frisby1-1/+1
2007-12-04* Added SSL Support to HttpListenerAdam Frisby1-1/+15
* Added SSL Option to User Server to allow logins to be done via SSL. * Added sane handling for when Remote Admin Plugin configuration is not found * Added some performance boosts to an area of libTerrain which was highlighted in profiling.
2007-12-02Attempt to fix mantis issue #82, taking prims into inventory and then ↵MW1-1/+1
rezzing them in another region.
2007-12-02Added some error handling (and console output) to BaseHttpServer.MW1-14/+22
a few other bits of refactoring.
2007-12-02Some refactoring , mainly on Inventory code. MW3-93/+108
2007-12-01Initial working Grid Inventory server. Only been tested on a very small ↵MW1-0/+92
grid, so likely to have problems on a larger grid with more people? To use , both the user server and Inventory server need to be running this latest revision. (older regions should be able to still be used, just the user won't have inventory on them). Also and HERE IS THE BIG BREAK ISSUE, currently, so that the initial inventory details for a user are added to the inventory db , you need to recreate the accounts using the user server "create user" feature. It should be quite easy to manual populate the inventory database instead but I someone else will need to look into that) Also I've only tested using SQLite as the database provider, there is a Mysql inventory provider but I don't know if it works (SQLite is set as default, so you will need to change it in the inventory server config.xml)
2007-11-04normalized line endingsJeff Ames3-119/+119
2007-11-03* Removed unused UDPServerBaselbsa711-84/+0
2007-11-03testing different rest post method/class for Grid asset client. (possible ↵MW1-0/+49
that I haven't set the post url correctly)
2007-11-01* Diuerse beavtificatemslbsa713-13/+8
2007-10-31* Added a streamhandler that does streams both in and outlbsa715-55/+92
* The RestDeserialisehandler now does streams and returns an object instead of string
2007-10-31forgotten fileMW1-0/+41
2007-10-31fixed filenames in log messagesJeff Ames1-1/+1
2007-10-30* Optimized usingslbsa719-67/+55
* Shortened type references * Removed redundant 'this' qualifier
2007-10-22* Return of R2162. /Take that SVN!/Adam Frisby1-1/+1
2007-10-22revert r2162 as it completely clobbered all the work onSean Dague1-1/+1
the ChatModule by MW and myself. Couldn't find Adam online after that rev went in.
2007-10-22* Major ass commit.Adam Frisby1-1/+1
* Sqlite Storage Engine now supports terrain -- however be aware that every terrain revision stored will at 512KB to your database file. At the moment it is storing every revision from the first. * Fixed an issue where by noverbose mode would display lots of useless junk. Noverbose mode is now quite usable. * Fixed a whole bunch of console message issues such as naming and categorisation
2007-10-15* Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa714-0/+112
2007-09-24* Applied tleiades patch #435 fixing HttpBaseServer ABEND (thanx!)lbsa711-3/+12
2007-09-10mass update of urls in source code to new websiteSean Dague5-5/+5
2007-09-10* Fixed: Accessing xmlrpc with invalid xml data would crash the sim.lbsa711-17/+31
* Ignored some bins and gens