aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Donation of robust network connectors for estate service, as promised. This ↵Diva Canto2015-01-063-331/+340
| | | | | | allows to have one central database for estates without having to open the MySql port. This is off by default, so not to disturb everyone's existing installations. To use it, see GridCommon.ini.example [EstateDataStore] section and Robust*.ini.example's new additions. Note that I also made things consistent by removing both the EstateDataService and the SimulationService into their own dlls, just like all other services. They really didn't belong in Services.Connectors, since everything in that component is about network connectors to robust backends. We may have too many dlls, and at some point it might not be a bad idea to merge all services into one single dll, since they all have more or less the same dependencies.
* Renamed VERSION_NUMBER to VersionNumberDiva Canto2014-12-301-2/+2
|
* This cleans up versioning. Specifically:Diva Canto2014-12-301-2/+2
| | | | | | | - It establishes 4 digits for opensim versions - It uses the same number between opensim releases and mono addins versions It also eliminates the last addin.xml files that were still there, for consistency.
* WARNING: BREAKING CHANGES FOR REGION MODULE DEVELOPMENT.Diva Canto2014-12-301-1/+1
| | | | | | | This cleans up Opensim's use of mono addins. In particular, the extension points /OpenSim/RegionModules and /OpenSim/WindModule moved from OpenSim.exe to OpenSim.Region.Framework.dll. From here on, developers of region modules should declare their dlls to be dependent on OpenSim.Region.Framework, starting with version 0.8.1 Additional changes: - Addins version uniformly updated to 0.8.1. These numbers should be compatible with the release numbers or else it becomes very confusing. - Mono addins directives moved from files addins.xml to embedded directives in the class and assembly declarations, to make it all consistent
* Updated OpenSim-as-addin version from 0.5 to 0.8.1. The addin version number ↵Diva Canto2014-12-291-1/+1
| | | | doesn't need to match the release version number, but I think it's a very good idea that they do.
* Label all threadpool calls being made in core OpenSimulator. This is to add ↵Justin Clark-Casey (justincc)2014-11-252-3/+3
| | | | | | problem diagnosis. "show threadpool calls" now also returns named (labelled), anonymous (unlabelled) and total call stats.
* Move the inventory request lock introduced in git master a58152bd to ↵Justin Clark-Casey (justincc)2014-08-091-7/+4
| | | | | | | HGInventoryBroker to preserve that behaviour there but allow 2 simultaneous inv requests (chiefly WebFetch) rather than 1 This lock serialized all requests and made the inventory throttling in WebFetch redundant. By moving this lock, two simultaneous requests may now take place which may help with http://opensimulator.org/mantis/view.php?id=7054
* OpenSimExtrasBlueWall2014-08-062-0/+46
| | | | Move the experimental extra features functionality into the GridService. This sends default values for map, search and destination guide, plus ExportSupported control to the region on startup. Please watch http://opensimulator.org/wiki/SimulatorFeatures_Extras for changes and documentation.
* Add inventory.<url>.RequestsMade stat.Justin Clark-Casey (justincc)2014-07-261-0/+21
| | | | | | This gives a count of all requests made to the remote inventory service. This is finer grained than inventory.httpfetch.ProcessedFetchInventoryRequests since such a request can be comprised of many individual inv service calls. In addition, this will count requests that don't go through the HTTP inventory fetch (e.g. HG, archiving, etc.)
* Add undocumented RemoteRequestTimeout seconds parameter to xinventory requestsJustin Clark-Casey (justincc)2014-07-251-4/+14
| | | | | This is for testing purposes (chiefly http://opensimulator.org/mantis/view.php?id=7054) so many not be permanent Setting this will change the xinventory request timeout from the simulator from the default 100 seconds
* Close streams immediately when we finish using themOren Hurvitz2014-07-211-15/+17
|
* Change assembly versions to 0.8.1Justin Clark-Casey (justincc)2014-06-171-1/+1
|
* Added simulation version compatibility check so that agents coming from ↵Diva Canto2014-06-061-1/+2
| | | | 0.7.6 to a varregion running in 0.8 and above will be denied teleport, rather than be allowed and crash the viewer.
* Fixed a few things pertaining to interfacing with the estate service. ↵Diva Canto2014-06-011-1/+1
| | | | | | Specifically, StoreEstateSettings was not being used anywhere; instead EstatSetting.Save was being called, but that method is a trigger to the DB-layer code directly, which, besides being wrong, was making it impossible to replace the service with a remote connector. Also added more packing/unpacking code.
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2014-05-311-1/+1
|\
| * minor: Comment out 2 error level debugging message in authentication codeJustin Clark-Casey (justincc)2014-05-271-1/+1
| |
* | Moved these two estate-related interfaces to the projects where they belong.Diva Canto2014-05-301-2/+2
|/
* Adds optional HTTP Basic Authentication to Robust service connectors.Diva Canto2014-05-2311-59/+130
|
* Tell QueryAccess explicitly whether the user is coming in via Teleport or ↵Oren Hurvitz2014-05-191-1/+2
| | | | | | Cross, because the permission checks are different. Previously we used a heuristic of checking if the entry position is 0 to differentiate between Teleport and Cross, but that doesn't work anymore since we've started providing the precise entry position for cross, too. That's required in order to ensure that the user is allowed to enter the parcel that he's walking into.
* Return more specific error messages if an attempt to enter a region fails ↵Oren Hurvitz2014-05-191-1/+1
| | | | due to permissions (in QueryAccess and IsAuthorizedForRegion)
* Fix recent asset request timeout issue by commenting out (for now) the ↵Justin Clark-Casey (justincc)2014-05-141-10/+14
| | | | | | | | | m_maxAssetRequestConcurrency mistakenly passed in as a timeout to SynchronousRestObjectRequester.MakeRequest() For a long time, possibly forever, the m_maxAssetRequestConcurrency was mistakenly passed in as a 30 ms timeout rather than as a concurrent connection limiter. This didn't come to light until the timeout was actually used in recent commit faf9ba53 Since this hasn't been operational for a long time and in release candidate phase, commenting it out for now though will need to revisit this. Relates to http://opensimulator.org/mantis/view.php?id=7165
* 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
| |\ \ | | |/