aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Improved HTTP loggingOren Hurvitz2014-04-291-1/+6
|
* When sending JSON-RPC calls (for UserProfile), use WebUtil instead of ↵Oren Hurvitz2014-04-241-5/+5
| | | | constructing the HTTP requests manually. This allows the calls to be logged when using "debug http all 6".
* Removed GetUserInventory(). It wasn't being used, and was creating warnings ↵Oren Hurvitz2014-04-232-71/+1
| | | | because it's Obsolete.
* Workaround for SRAS: if Store Asset returns 'null' then assume the asset ↵Oren Hurvitz2014-04-231-0/+7
| | | | already exists, and this isn't an error
* Better error-handling when storing assets: recognize that 'null' is an error ↵Oren Hurvitz2014-04-201-12/+11
| | | | value
* In teleports, pass the source region to the destination (similar to an HTTP ↵Oren Hurvitz2014-04-092-47/+26
| | | | referrer)
* Allow invalidating the users cacheOren Hurvitz2014-04-082-0/+9
|
* Better (amend to previous commit)Diva Canto2014-04-071-12/+19
|
* Avoid calling HELO service on malformed URLs. This is in response to an ↵Diva Canto2014-04-071-0/+6
| | | | exception reported by danbanner.
* When sending QueryAccess to a region, also send the user's Home URIOren Hurvitz2014-04-071-4/+4
|
* When preparing a Hypergrid teleport, tell the receiving grid which user is ↵Oren Hurvitz2014-04-061-1/+7
| | | | | | entering the grid. This can affect which region to use. E.g., returning users may be allowed to enter any region, whereas users from other grids will have to enter a gateway region. Previously per-user decisions were only made later, but by then it's too late to change which region the user enters.
* When teleporting using Hypergrid, show more informative error messages in ↵Oren Hurvitz2014-04-031-1/+12
| | | | case of error
* Added assets service method AssetsExist(), which returns whether the given ↵Oren Hurvitz2014-04-023-38/+107
| | | | | | list of assets exist. This method is used to optimize sending assets with embedded assets: e.g., when a Hypergrid visitor takes an item into the inventory.
* Reinsert code to extract size_x and size_y parameters from GetHomeRegion ↵Justin Clark-Casey (justincc)2014-03-261-0/+12
| | | | | | | | response in UserAgentServiceConnector. This is actually code from commits afb2e07 and cf61cdf For as yet unexplained reasons, the section of these commits which changed UserAgentServiceConnector.cs disappeared from its history between approx Feb 5 2014 and Feb 13 2014. This ought to be impossible. More details to follow in opensim-dev mailing list
* If prim region crossing fails then don't delete the prim from the original ↵Oren Hurvitz2014-03-241-1/+8
| | | | | | region Resolves http://opensimulator.org/mantis/view.php?id=6946
* When logging in UserAgentServiceConnector, always log the original server ↵Oren Hurvitz2014-03-241-20/+22
| | | | | | URL (the hostname), not the IP This resolves http://opensimulator.org/mantis/view.php?id=6955 (that patch was modified a bit)
* Better error messagesOren Hurvitz2014-03-241-15/+15
| | | | This resolves http://opensimulator.org/mantis/view.php?id=6936
* Add delete maptile ability to MapImageService - yet untestedMelanie Thielker2014-03-181-0/+60
|
* Merge branch 'justincc-master'Justin Clark-Casey (justincc)2014-02-141-301/+94
|\
| * Change warns associated with UserAgentServiceConnector to debugs, as this is ↵Justin Clark-Casey (justincc)2014-02-141-1/+1
| | | | | | | | | | | | not necessarily a problen with the source simulator (e.g. someone else's remote simulator cannot be contacted). This is Oren Hurvitz's second patch from http://opensimulator.org/mantis/view.php?id=6956 with a small amount of correction
| * If calls to UserAgentServiceConnector fail then throw an exception. This ↵Justin Clark-Casey (justincc)2014-02-141-289/+94
| | | | | | | | | | | | lets the caller decide whether to discard the error or not. This is Oren Hurvitz's 0001 patch from http://opensimulator.org/mantis/view.php?id=6956 but I ended up doing some tweaking to resolve patch application issues.
* | Fix - Viewer crash during HG TeleportRoger Kirkman2014-02-061-2/+2
| | | | | | | | Signed-off-by: Robert Adams <misterblue@misterblue.com>
* | Update the SimianMaptile uploader to accommodate varregions.Mic Bowman2014-02-051-74/+59
| |
* | Merge branch 'justincc-master'Justin Clark-Casey (justincc)2014-01-311-2/+2
|\ \ | |/
| * Make sure Web streams are disposed after useOren Hurvitz2014-01-311-2/+2
| |
* | varregion: pass region size in more HG services.Robert Adams2014-01-241-0/+12
| |
* | Enable the simulator to handle region size information returned fromMic Bowman2014-01-231-0/+12
| | | | | | | | | | a hypergrid gatekeeper. Fields are "size_x" and "size_y". Server side will be updated separately.
* | Merge branch 'master' into varregionRobert Adams2014-01-111-1/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs OpenSim/Region/Framework/Scenes/SceneBase.cs OpenSim/Services/Interfaces/IGridService.cs OpenSim/Services/LLLoginService/LLLoginResponse.cs (conflicts were debug statements that are commented out in master branch)
| * \ Merge branch 'justincc-master'Justin Clark-Casey (justincc)2014-01-111-1/+1
| |\ \ | | |/
| | * Allow Boolean nodes in XML to be specified as "0/1". AuroraSim does that.Oren Hurvitz2014-01-111-1/+1
| | |
| * | varregion: Add region size to teleport event messages (EnableSimulator,Robert Adams2014-01-041-1/+5
| |/ | | | | | | | | | | | | | | | | | | | | CorssRegion, TeleportFinishEvent). Have Simian grid service return the region size. Many teleport related debug log messages. Can be removed when teleport works (like that's ever going to happen). Conflicts: OpenSim/Framework/RegionInfo.cs
* | varregion: Add region size to teleport event messages (EnableSimulator,Robert Adams2014-01-031-1/+5
| | | | | | | | | | | | | | CorssRegion, TeleportFinishEvent). Have Simian grid service return the region size. Many teleport related debug log messages. Can be removed when teleport works (like that's ever going to happen).
* | varregion: many more updates removing the constant RegionSize and replacingRobert Adams2013-12-261-6/+6
| | | | | | | | with a passed region size. This time in the map code and grid services code.
* | varregion: rename 'LegacyRegionLocX' back to 'RegionLocX' and same for Y and Z.Robert Adams2013-12-141-2/+2
| | | | | | | | | | | | Rename 'RegionWorldLocX' to 'WorldLocX' and same for Y and Z. This keeps the downward compatibility and follows the scheme of 'region' and 'world' location naming that is happening in the Util module.
* | varregion: many replacements of in-place arithmetic with calls toRobert Adams2013-11-282-2/+2
| | | | | | | | | | the Util functions for converting world addresses to region addresses and converting region handles to locations.
* | Merge branch 'master' into varregionRobert Adams2013-11-041-8/+11
|\ \ | |/
| * Give the caller AddMapTile a valid reason response if this failed due to ↵Justin Clark-Casey (justincc)2013-10-291-8/+11
| | | | | | | | | | | | blank response from server or connection failure. Raise log lines which indicate problems to warning from debug
* | varregion: push TerrainData implementation up and down the database storage ↵Robert Adams2013-11-011-0/+10
| | | | | | | | | | | | | | stack. Implement both LoadTerrain and StoreTerrain for all DBs. Move all database blob serialization/deserialization into TerrainData.
* | Merge branch 'master' into varregionRobert Adams2013-10-071-1/+1
|\ \ | |/
| * Bump OPenSimulator version and assembly versions up to 0.8.0 DevJustin Clark-Casey (justincc)2013-10-041-1/+1
| |
* | VarRegion: change RegionInfo storage of region coordinates from regionRobert Adams2013-09-281-2/+2
|/ | | | | | | | count number to integer world coordinates. Added new methods RegionWorldLoc[XY]. Refactored name of 'RegionLoc*' to 'LegacyRegionLoc*' throughout OpenSim. Kept old 'RegionLoc*' entrypoint to RegionInfo for downward compatability of external region management packages.
* Allow one to specify a DefaultHGRegion flag in [GridService] in order to ↵Justin Clark-Casey (justincc)2013-09-022-0/+57
| | | | | | | | | | allow different default regions for HG and direct grid logins. This requires a new GridService.GetDefaultHypergridRegions() so ROBUST services require updating but not simulators. This method still returns regions flagged with just DefaultRegion after any DefaultHGRegions, so if no DefaultHGRegions are specified then existing configured defaults will still work. Immediate use is for conference where we need to be able to specify different defaults However, this is also generally useful to send experienced HG users to one default location and local users whose specified region fails (e.g. no "home" or "last") to another.
* minor: remove mono compiler warnings from OpenSim/Services/Connectors/SimianGridJustin Clark-Casey (justincc)2013-08-172-9/+2
|
* minor: Make log messages consistent in NeighbourServicesConnectorJustin Clark-Casey (justincc)2013-08-171-6/+6
|
* Remove some debugging from simian connectors.Mic Bowman2013-08-052-3/+11
|
* Experimental comment to eneralize the handling of Linden caps when theMic Bowman2013-07-311-0/+179
| | | | | | | cap is something other than "localhost". A new interface for handling external caps is supported with an example implemented for Simian. The only linden cap supporting this interface right now is the GetTexture cap.
* A pretty major restructuring of the simian method invocations in order toMic Bowman2013-07-3111-282/+578
| | | | | | | service access capabilities. In conjunction with the corresponding Simian updates, this enables explicit per-simulator capability-based access to grid services. That enables grid owners to add or revoke access to the grid on a simulator by simulator basis.
* Several major improvements to group (V2) chat. Specifically: handle ↵Diva Canto2013-07-271-0/+1
| | | | | | join/drop appropriately, invitechatboxes. The major departure from flotsam is to send only one message per destination region, as opposed to one message per group member. This reduces messaging considerably in large groups that have clusters of members in certain regions.
* Minor typo in log messageDiva Canto2013-07-141-1/+1
|
* Guard against unauthorized agent deletes.Diva Canto2013-07-131-4/+3
|