aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors/Inventory/InventoryServiceConnector.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-02-04Added an additional debug message, and removed a bunch of files that weren't ↵Diva Canto1-582/+0
being used anymore -- the old RemotsInventory connectors stuff.
2009-11-18minor: Correct some inventory corrector log messages and add more ↵Justin Clark-Casey (justincc)1-19/+20
identifying detail
2009-11-18minor: correct error messages when queryfolder failsJustin Clark-Casey (justincc)1-4/+1
2009-10-06* Removed verbose debug messageDiva Canto1-7/+0
* Restored HG inventory access which had been lost upon adding a 3rd argument to inventory and asset server handlers * Fixed a stupid bug in the InventoryConnector which was making move items do things twice
2009-09-17Remove the methods for full inventory fetch from the connector. Remove testsMelanie1-35/+1
for the old, removed asset handlers
2009-09-03Fixes seven leaky .BeginInvoke() callsJohn Hurliman1-0/+2
2009-08-25Closed the web request and stream in SynchronousRestSessionObjectPoster -- ↵Diva Canto1-0/+5
maybe this is the cause of some timeouts seen in some monos?
2009-08-22* Fixes mantis http://opensimulator.org/mantis/view.php?id=4044. Turns out ↵Diva Canto1-2/+21
folders were never being removed from trash when they were singled out for purging in trash. They were being removed when Trash was purged as a whole. That behavior is now fixed for the new InventoryService set. * Removed left-overs from AssetInventoryServer.
2009-08-21Added a more sane InventoryServerMoveItemsHandler. Changed ↵Diva Canto1-3/+18
SynchronousRestObjectRequester so that it also understands PUTs.
2009-08-19Makes the inventory connectors fully compatible with the old ↵Diva Canto1-29/+35
Grid.InventoryServer. WARNING: interacting with the old server is _much_ slower than interacting with the new one. Grids with the old server will not see any improvements on crossings and TPs, because inventory needs to be fetched from it in its entirety.
2009-08-19Added MoveItems, which is most useful upon viewer-delete inventory ↵Diva Canto1-0/+42
operation. Moving a batch of items is a 1-time operation. Made it async anyway, so that the viewer doesn't wait in case the DB layer is dumb (which is the case currently).
2009-08-19A better purge of trash folder.Diva Canto1-3/+6
2009-08-18GetFolderItems implemented. It's not being called, but it might.Diva Canto1-0/+17
2009-08-17Added some padding to the remote inventory connector so that it tries to ↵Diva Canto1-4/+70
operate with the old Grid.InventoryServer.exe. Untested, but it should work -- slow.
2009-08-13Added GetAssetPermissions. Few last bugs nixed. This is ready for testing.Diva Canto1-15/+34
2009-08-11Fixes a race condition in EQ processing that was making EQs pop up again ↵Diva Canto1-14/+14
upon client close. Commented remote call on GetSystemFolders again, so that it's not live yet.
2009-08-11Some more hammering on the head of the obsolete rest inventory handlers, ↵Diva Canto1-10/+14
just to make this work.
2009-08-11Re-adding a conditional in UserManager that was removed with arthusv's ↵Diva Canto1-2/+2
commit. Changing new inventory ops to POST.
2009-08-11Disabling the remote call for the time being, so that I can test it on a ↵Diva Canto1-10/+11
grid before making it live.
2009-08-11Added http handlers for the two new inventory operations.Diva Canto1-4/+4
2009-08-11System folders inventory cache added to OUT inventory modules. This tracks ↵Diva Canto1-3/+3
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 Canto1-0/+44
GetFolderContent. Some meat to it, but not completed. None of this code is called anywhere yet.
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-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-10Heart surgery no.2: the inventory service hooks. diva1-2/+2
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 ↵diva1-170/+162
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-04Intermediate commit. WILL NOT COMPILE!Melanie Thielker1-1/+1
2009-04-18Thank you dslake for diagnosing and fixing a race condition in ↵diva1-57/+65
OGS1SecureInventoryServer (mantis #3483). The provided patch was slightly modified to narrow the locking scope to smaller portions of the functions. Applied the same locking to HGInventoryService, which suffered from the same race condition.
2009-03-23Committing partial work on passing folders across instances. This may crash.Melanie Thielker1-0/+16
2009-03-22Add QueryItem method to secure inventory and HG inventory, change method sig toMelanie Thielker1-0/+16
provide additional information the HG needs.
2009-02-12* optimized usings.lbsa711-2/+2
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-16/+16
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-07-24* Separate out OGS1 calls used between services (rather than from region to ↵Justin Clarke Casey1-14/+1
services) into a separate assembly to parallel OpenSim.Region.Communications.OGS1
2008-07-24* Fix spelling mistake in OGS1SecureInvenotryServiceJustin Clarke Casey1-0/+0
2008-07-24* minor: Rename IInterGridInventoryServices since it's inter service rather ↵Justin Clarke Casey1-1/+1
than inter grid
2008-07-23* refactor: break out inter grid inventory services furtherJustin Clarke Casey1-1/+1
* more to follow
2008-07-23adding files that were not included in r5589Johan Berntsson1-31/+30
2008-07-22* refactor: move new inventory service call by user server to OGS1 with all ↵Justin Clarke Casey1-2/+3
the other service calls * will post to mailing list about moving this shortly
2008-06-28plumbing for multiple inventory servers. Mostly done on the region server side. MW1-0/+7
TODO next is to make the login server read/write a users inventory from the correct server (the inventory url set in a userprofile) On the region side, although not tested with multiple servers it should work if that inventory url was set, and the inventory servers urls have been added to the CommunicationsManager, using CommunicationsManager.AddInventoryService(string hostUrl)
2008-06-11Mantis#1514. Thank you kindly, Boscata for an InventoryServer patchCharles Krinke1-0/+20
to allow the InventoryServer to work with MSSQL..
2008-05-16Formatting cleanup.Jeff Ames1-42/+42
2008-05-14* Start recording initial complete avatar inventory retrieval failures from ↵Justin Clarke Casey1-1/+5
the region server * In theory, this should be a somewhat useless statistic since the user server will already have tried to use the inventory service to retrieve the avatar's skeleton. If this fails, login is halted completely. * Nonetheless I'm recording it anyway just to see whether it happens (yes, I'm too lazy to scan the logs...)
2008-05-01* Refactor: Remove redundant userID from further up the inventory request chainJustin Clarke Casey1-20/+5
2008-05-01* Refactor: Remove the unused userID parameter that was being passed into ↵Justin Clarke Casey1-26/+28
almost every inventory method * This allows lots of redundant inventory methods with only slightly different names to be eliminated.
2008-05-01* Assorted spring cleanings.Adam Frisby1-1/+1
2008-04-30* Completely inconsequential inventory odds and ends (actual impact - only ↵Justin Clarke Casey1-1/+1
one log message changed)
2008-04-30* Long awaited patch from A_Biondi Mantis 923. Kept alive by Melanie. ↵Teravus Ovares1-0/+15
Thanks A_Biondi and Melanie! * This builds but might not work. JustinCC will examine.. it may work out of the box.
2008-04-23* Implement full grid mode Trash emptyJustin Clarke Casey1-2/+36
* Now, emptying the trash should remove folders and the items they contain as well as items which were not in a subfolder. * This will only work once both the region and grid servers have reached this revision. * You may also need to clear your cache before this will work * Refactoring to follow.
2008-04-23* Implement proper emptying of trashcan on standaloneJustin Clarke Casey1-0/+10
* On standalone, folders (and their items) should now be persistently deleted on trash emptying, as well as immediate child items * An implementation for grid mode will follow.