aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-06-30Updated services to allow external applications like web interfaces toMelanie Thielker5-24/+228
authenticate against the services. This paves the way for such apps to directly talk to services.
2009-06-27Make cleartext authentication case sensitive. Thanks jhurliman for spotting ↵Dahlia Trimble1-1/+1
this.
2009-06-23Add RegionSecret to user data structure to provide data update securityMelanie Thielker1-0/+6
2009-06-23Fix the AssetServiceBase bug I introduced by reordering configuration loadMelanie Thielker1-2/+2
order. Thanks, Grumly57, for pointing it out. The point of the original change was to let the more specific setting override the less specific one, actually, I disabled the use of the less specific one.
2009-06-22Forgot a fileMelanie Thielker1-0/+177
2009-06-22Committing RemoteUserServiceConnector out connector, local user serviceMelanie Thielker2-4/+3
connector and the glue code.
2009-06-22Committing the meat of the user server interface and the bones of the ↵Melanie Thielker3-10/+81
service implementation
2009-06-22Update svn properties.Jeff Ames4-582/+582
2009-06-17Implementation of a simple authentication service + in connector in route to ↵diva2-20/+191
making HGInventory (client access) work in standalone again. This is the refactoring of what was/is there, but done in the new model. Not complete yet, but key authentication works. It should be enough to make HGInventory work again soon.
2009-06-15Moving these nice HG connectors to their homes.diva2-421/+419
2009-06-14Factoring out "land_data" / RequestLandData that was hanging off of ↵diva2-0/+163
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 Ames3-374/+374
2009-06-14Bug fix in remote neighbour connector.diva1-1/+1
2009-06-14And this one too...diva1-0/+166
2009-06-14Oops. Forgot to add this file.diva1-0/+38
2009-06-11Fixes mantis #3803. Thanks jhurliman.diva3-7/+8
2009-06-11Changed the inventory service so that is uses exactly one DB plugin, not ↵diva2-115/+28
many. The composition of plugins can be done at the service and connector levels. This fixes the unit tests that were failing yesterday, but I'm not committing those yet, because I'm seeing 2 of those tests having pass and fail outcomes randomly which suggests that the tests are buggy.
2009-06-10Heart surgery no.2: the inventory service hooks. diva6-60/+329
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-08IInentoryDataPlugins were missing.diva1-2/+7
2009-06-08Added more functions to IInventoryService. Unsure about whether all of these ↵diva2-6/+102
are really necessary.
2009-06-07First draft of inventory service connectors, and service implementation. No ↵diva6-0/+1388
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-04Comment out unused variables / private fields to avoid compiler warnings.Jeff Ames1-4/+0
2009-06-03Committing the skeleton of the authentication serviceMelanie Thielker1-0/+74
2009-06-03Committing the partial refactor of authentication services. No user functionlityMelanie Thielker1-4/+23
will eat your babies, etc
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames7-7/+7
LICENSE.txt.
2009-05-31Add copyright headers, formatting cleanup, ignore some generated files.Jeff Ames2-2/+56
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-25Correct a minor typoMelanie Thielker1-1/+1
2009-05-25Beginning of refactoring RESTComms/LocalComms in the new style of services ↵diva2-0/+95
and connectors. This commit has the beginning of the In connector, not the Out. Nothing of this is finished yet, and it doesn't run. But it should compile ok.
2009-05-23This should make HG asset transfers work much better. It now uses ↵diva1-2/+3
HGUuidGatherer, which is a subclass of UuidGatherer. Hence, on-line HG asset transfers use exactly the same UUID collection code as save oar/xml. If it doesn't work, it's Justin's fault :D
2009-05-22Bug fix in HGAssetService. POSTs back home (standalone) should now work.diva1-1/+1
2009-05-22cleaning out warnings.Dr Scofield2-2/+2
NOTE: we currently have a gazillion warnings caused stuff flagged as "obsolete" (OGS1 stuff) --- what's up with that?
2009-05-18Finished HG Service Store. Not fully functional because of problems with ↵diva1-1/+12
asset.ID insisting on being a UUID string.
2009-05-18Move the connectors under services for reasons of application logic. RemoveMelanie Thielker2-1/+261
the user server skeleton in preparation for introducing a generic server
2009-05-17Renaming [ServiceConnectors] back to [Modules].diva1-4/+11
2009-05-17HG asset transfers starting to work -- GETs only for now. diva2-13/+68
2009-05-15* Resolve bug where save oar would never complete if any assets were missingJustin Clarke Casey1-0/+4
2009-05-15Heart surgery on asset service code bits. Affects OpenSim.ini configuration ↵diva1-1/+1
-- please see the example. Affects region servers only. This may break a lot of things, but it needs to go in. It was tested in standalone and the UCI grid, but it needs a lot more testing. Known problems: * HG asset transfers are borked for now * missing texture is missing * 3 unit tests commented out for now
2009-05-11Plumb the HG asset broker. More naming changes to clarify things. Lots moreMelanie Thielker2-0/+109
config options.
2009-05-10Enhance the submodule loader and port the enhancements to the services baseMelanie Thielker1-3/+26
2009-05-10Connect up the new asset cache and introduce an asynchronous call pathMelanie Thielker2-0/+19
for asset retrieval (full asset only) to ease migration to the new system
2009-05-09FInish basic asset server functionality on the new asset serverMelanie Thielker1-3/+17
2009-05-08The new asset server now actually serves existing assetsMelanie Thielker1-1/+7
2009-05-08More additions to the nextgen reference UGAIMMelanie Thielker5-29/+305
2009-05-05Add copyright header. Formatting cleanup. Ignore some generated files.Jeff Ames1-0/+27
2009-05-05Some refactoring. Database is now active in the new user serverMelanie Thielker3-5/+90
2009-05-05Plumb the database into the new server skelMelanie Thielker1-0/+3
2009-05-05Plumb the new server connector logicMelanie Thielker1-1/+32