aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-08-11System folders inventory cache added to OUT inventory modules. This tracks ↵Diva Canto3-6/+6
agents in and out of *sims* in order to fetch/drop their system folders from the cache. Also added region-side support for fetching the system folders from the inventory service. Nothing of this is called yet.
2009-08-10Added two new methods to IIventoryService -- GetFolderForType and ↵Diva Canto4-0/+113
GetFolderContent. Some meat to it, but not completed. None of this code is called anywhere yet.
2009-08-10Changed RequestRootFolder to GetRootFolderDiva Canto1-1/+1
2009-08-09Finish the renaming and mae things compile againMelanie1-20/+20
2009-07-26Patch from RemedyTomm: A failed inventory request would block any furtherMelanie Thielker1-5/+44
requests from that same user, even after a relog. This patch changes the block on further requests to be in line with the request timeout timer and allows the system to recover.
2009-07-15minor: remove some mono compiler warningsJustin Clarke Casey1-4/+4
2009-07-10* minor: Make GridCommon.ini.example refer to inventory service rather than ↵Justin Clarke Casey1-1/+1
asset where appropriate * Send debug level notice to console if a user fails authentication
2009-06-30Updated services to allow external applications like web interfaces toMelanie Thielker1-2/+58
authenticate against the services. This paves the way for such apps to directly talk to services.
2009-06-22Forgot a fileMelanie Thielker1-0/+177
2009-06-22Update svn properties.Jeff Ames3-544/+544
2009-06-15Moving these nice HG connectors to their homes.diva2-0/+419
2009-06-14Factoring out "land_data" / RequestLandData that was hanging off of ↵diva1-0/+125
IGridServices, erroneously. Not sure when this is used, but now it is implemented in the new model of service connectors. Hopefully it works.
2009-06-14Update svn properties.Jeff Ames2-336/+336
2009-06-14Bug fix in remote neighbour connector.diva1-1/+1
2009-06-14And this one too...diva1-0/+166
2009-06-11Fixes mantis #3803. Thanks jhurliman.diva1-1/+1
2009-06-10Heart surgery no.2: the inventory service hooks. diva2-2/+172
Several improvements in the connectors themselves. Several improvements in configurations. Needed to add a hack in IUserService and UserManagerBase, to be removed when that service is refactored.
2009-06-07First draft of inventory service connectors, and service implementation. No ↵diva2-0/+450
handlers yet, this is just the OUT part for now. It's not active and nothing in the simulator uses this yet. Just checking it in to start sharing with others. There are a couple of interesting software design points that could use other devs opinions. Hopefully I added all needed files.
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-30Slashing trailing slashes.diva1-1/+1
https://lists.berlios.de/pipermail/opensim-dev/2009-May/006673.html
2009-05-29Making the delegate handlers async in async Get, to make things consistent. ↵diva1-1/+1
Them being synchronous in certain cases (asset in cache, for example) may account for slowness reported by folks in osgrid when they have the cache module on. Turns out that some of the provided handlers do non-trivial processing (the ones coming from J2KImage, for example), which means that the several asset requests that hit the cache end up being synchronous. The jury is still out on this.
2009-05-26Catching exceptions on Store, including timeout. Store may fail, for ↵diva1-2/+10
whatever reason, but it won't crash the sim. Addresses mantis #3707, mantis #3713, mantis #3686.
2009-05-18Move the connectors under services for reasons of application logic. RemoveMelanie Thielker1-0/+260
the user server skeleton in preparation for introducing a generic server