aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-04-24- Created a standard function to send XML-RPC requests, which logs them like ↵Oren Hurvitz1-63/+6
we do for other types of HTTP activity. - Changed OpenProfileClient to use the new XML-RPC sending function - Improved logging in WebUtil
2014-04-24Refactored: moved OpenProfileClient to a location where it can be used by ↵Oren Hurvitz1-0/+193
both the Simulators and Robust
2014-04-24When sending JSON-RPC calls (for UserProfile), use WebUtil instead of ↵Oren Hurvitz1-5/+5
constructing the HTTP requests manually. This allows the calls to be logged when using "debug http all 6".
2014-04-24Fixed: hypergrid-linking stopped accepting the following format: ↵Oren Hurvitz1-11/+21
"http://grid.example.com" (without a region name) Fixes http://opensimulator.org/mantis/view.php?id=7128
2014-04-23Removed GetUserInventory(). It wasn't being used, and was creating warnings ↵Oren Hurvitz6-175/+1
because it's Obsolete.
2014-04-23Eliminated many warningsOren Hurvitz3-2/+4
2014-04-23Workaround for SRAS: if Store Asset returns 'null' then assume the asset ↵Oren Hurvitz1-0/+7
already exists, and this isn't an error
2014-04-21Removed an attempt to set a user's presence to "Region 0" when they HG ↵Oren Hurvitz1-3/+0
teleport to another grid. a) This shouldn't have been done because at that point the user is still logged-in to the current grid. b) It's not necessary because the user will soon be logged-out completely. c) And it didn't even work because the MySQL database layer prevents setting the region to 0.
2014-04-21Better logging in PresenceService, to help diagnose presence problems.Oren Hurvitz1-25/+63
2014-04-20Better error-handling when storing assets: recognize that 'null' is an error ↵Oren Hurvitz2-13/+12
value
2014-04-20Stopped setting the Service URL "GatekeeperURI" on users' accounts. It isn't ↵Oren Hurvitz1-1/+0
actually used.
2014-04-13Better error checking when creating hyperlinks: a) Reject invalid strings; ↵Oren Hurvitz1-17/+36
b) Default port is 80, not 0 The change of default port may fix http://opensimulator.org/mantis/view.php?id=7108 , where a user was able to create a Hyperlink to OSGrid from inside OSGrid.
2014-04-09In teleports, pass the source region to the destination (similar to an HTTP ↵Oren Hurvitz8-72/+61
referrer)
2014-04-09Log when the presence service logs-out all the users in a regionOren Hurvitz1-1/+2
2014-04-08Allow invalidating the users cacheOren Hurvitz5-1/+21
2014-04-07Better (amend to previous commit)Diva Canto1-12/+19
2014-04-07Avoid calling HELO service on malformed URLs. This is in response to an ↵Diva Canto1-0/+6
exception reported by danbanner.
2014-04-07When sending QueryAccess to a region, also send the user's Home URIOren Hurvitz3-5/+28
2014-04-06When preparing a Hypergrid teleport, tell the receiving grid which user is ↵Oren Hurvitz4-8/+19
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.
2014-04-03When teleporting using Hypergrid, show more informative error messages in ↵Oren Hurvitz4-4/+27
case of error
2014-04-02Added assets service method AssetsExist(), which returns whether the given ↵Oren Hurvitz6-42/+140
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.
2014-03-27Profiles local StorageProvider fix, round 3BlueWall1-1/+1
2014-03-27Fix to local StorageProvider overrideBlueWall1-3/+1
2014-03-27Add support for specifying non-default StorageProviderBlueWall1-0/+3
2014-03-26Reinsert code to extract size_x and size_y parameters from GetHomeRegion ↵Justin Clark-Casey (justincc)1-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
2014-03-24If prim region crossing fails then don't delete the prim from the original ↵Oren Hurvitz1-1/+8
region Resolves http://opensimulator.org/mantis/view.php?id=6946
2014-03-24HGAssetService searches for the "HomeURI" setting in several sections: ↵Oren Hurvitz1-4/+4
Startup, Hypergrid, HGAssetService Resolves http://opensimulator.org/mantis/view.php?id=6940
2014-03-24Moved the linkage between LoginService and HGInventoryService to the config fileOren Hurvitz1-4/+5
2014-03-24When a user logs-in, automatically create the Suitcase folderOren Hurvitz2-15/+23
This is only done if the Suitcase Inventory Service is used. Previously the Suitcase was created at a later time, which meant that it wasn't shown in the viewer until the viewer was restarted.
2014-03-24When logging in UserAgentServiceConnector, always log the original server ↵Oren Hurvitz1-20/+22
URL (the hostname), not the IP This resolves http://opensimulator.org/mantis/view.php?id=6955 (that patch was modified a bit)
2014-03-24Get the full viewer name even if it's (incorrectly) sent in the 'Channel' fieldOren Hurvitz1-5/+7
Recent versions of Firestorm and Singularity have started sending the viewer name in the 'Channel' field, leaving only their version number in the 'Viewer' field. So we need to search both of these fields for the viewer name. This resolves http://opensimulator.org/mantis/view.php?id=6952
2014-03-24Better error messagesOren Hurvitz1-15/+15
This resolves http://opensimulator.org/mantis/view.php?id=6936
2014-03-20If we find an existing suitcase folder in ↵Justin Clark-Casey (justincc)1-0/+4
HGSuitcaseInventoryService.GetRootFolder(), then return that as a response rather than null. Fixes a regression from commit 346644016c529db6ed63aa866c7cf91cec1b635f (Fri Nov 15 23:10:59 2013) This is actually the reverse of zadark's patch in http://opensimulator.org/mantis/view.php?id=6969 But I'm assuming that was a mistake since clearly we should be returning this data - this was original behaviour
2014-03-18Add delete maptile ability to MapImageService - yet untestedMelanie Thielker3-2/+92
2014-02-20If GetFolderContent called by WebFetchInvDescHandler.Fetch() fails for some ↵Justin Clark-Casey (justincc)1-1/+1
reason and returns null, log and return empty contents rather than throwing an exception that ends up terminating the simulator.
2014-02-15In GridUserService, if a UUID is given consistently use the longest matched ↵Justin Clark-Casey (justincc)1-6/+19
entry (as already done by GetGridUserInfo()) in order to avoid problems with multiple entries. This is to avoid issues where LoggedIn, SetHome, etc were always using the exact UUID match but GetGridUserInfo() would use the longest. Looks to address http://opensimulator.org/mantis/view.php?id=6986
2014-02-14Change warns associated with UserAgentServiceConnector to debugs, as this is ↵Justin Clark-Casey (justincc)1-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
2014-02-14If calls to UserAgentServiceConnector fail then throw an exception. This ↵Justin Clark-Casey (justincc)3-294/+139
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.
2014-02-06Fix - Viewer crash during HG TeleportRoger Kirkman1-2/+2
Signed-off-by: Robert Adams <misterblue@misterblue.com>
2014-02-05Update the SimianMaptile uploader to accommodate varregions.Mic Bowman1-74/+59
2014-02-04Final code drop for appearance. Adding Avination's baked texture storage server.Melanie1-0/+38
2014-01-31Make sure Web streams are disposed after useOren Hurvitz1-2/+2
2014-01-30Record whether login to home fails because no home set (UUID.Zero) or region ↵Justin Clark-Casey (justincc)1-7/+22
not found.
2014-01-30Add "show grid user" robust/standalone console command for debug purposes.Justin Clark-Casey (justincc)1-0/+33
Shows all data on entries which match or start with a given ID. This would usually be a UUID.
2014-01-24varregion: pass region size in more HG services.Robert Adams1-0/+12
2014-01-23Enable the simulator to handle region size information returned fromMic Bowman1-0/+12
a hypergrid gatekeeper. Fields are "size_x" and "size_y". Server side will be updated separately.
2014-01-16Can delete the Offline Messages sent to/from a user.Oren Hurvitz1-0/+7
This is useful if the user is deleted.
2014-01-11Allow Boolean nodes in XML to be specified as "0/1". AuroraSim does that.Oren Hurvitz1-1/+1
2014-01-04Remove some chatty DebugFormat statements. No functional changes.Robert Adams2-5/+4
2014-01-04varregion: Add region size to teleport event messages (EnableSimulator,Robert Adams2-1/+19
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