diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Environment/Modules/Avatar/Concierge/ConciergeModule.cs | 6 | ||||
-rw-r--r-- | bin/OpenSim.ini.example | 7 |
2 files changed, 11 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Modules/Avatar/Concierge/ConciergeModule.cs b/OpenSim/Region/Environment/Modules/Avatar/Concierge/ConciergeModule.cs index 297913e..2d1f381 100644 --- a/OpenSim/Region/Environment/Modules/Avatar/Concierge/ConciergeModule.cs +++ b/OpenSim/Region/Environment/Modules/Avatar/Concierge/ConciergeModule.cs | |||
@@ -357,6 +357,8 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Concierge | |||
357 | if (String.IsNullOrEmpty(_brokerURI)) | 357 | if (String.IsNullOrEmpty(_brokerURI)) |
358 | return; | 358 | return; |
359 | 359 | ||
360 | string uri = String.Format(_brokerURI, scene.RegionInfo.RegionName, scene.RegionInfo.RegionID); | ||
361 | |||
360 | // get attendee list for the scene | 362 | // get attendee list for the scene |
361 | List<UUID> attendees; | 363 | List<UUID> attendees; |
362 | lock (_sceneAttendees) | 364 | lock (_sceneAttendees) |
@@ -394,7 +396,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Concierge | |||
394 | string payload = list.ToString(); | 396 | string payload = list.ToString(); |
395 | 397 | ||
396 | // post via REST to broker | 398 | // post via REST to broker |
397 | HttpWebRequest updatePost = WebRequest.Create(_brokerURI) as HttpWebRequest; | 399 | HttpWebRequest updatePost = WebRequest.Create(uri) as HttpWebRequest; |
398 | updatePost.Method = "POST"; | 400 | updatePost.Method = "POST"; |
399 | updatePost.ContentType = "text/xml"; | 401 | updatePost.ContentType = "text/xml"; |
400 | updatePost.ContentLength = payload.Length; | 402 | updatePost.ContentLength = payload.Length; |
@@ -405,7 +407,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Concierge | |||
405 | payloadStream.Close(); | 407 | payloadStream.Close(); |
406 | 408 | ||
407 | updatePost.BeginGetResponse(UpdateBrokerDone, updatePost); | 409 | updatePost.BeginGetResponse(UpdateBrokerDone, updatePost); |
408 | _log.DebugFormat("[Concierge] async broker update to {0} started", _brokerURI); | 410 | _log.DebugFormat("[Concierge] async broker update to {0} started", uri); |
409 | } | 411 | } |
410 | 412 | ||
411 | private void UpdateBrokerDone(IAsyncResult result) | 413 | private void UpdateBrokerDone(IAsyncResult result) |
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index f202e18..7fe7e09 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example | |||
@@ -971,3 +971,10 @@ InterregionComms = "RESTComms" | |||
971 | ; {2} is replaced with the name of the concierge (whoami variable above) | 971 | ; {2} is replaced with the name of the concierge (whoami variable above) |
972 | 972 | ||
973 | welcomes = /path/to/welcome/template/directory | 973 | welcomes = /path/to/welcome/template/directory |
974 | |||
975 | ; Concierge can send attendee lists to an event broker whenever an | ||
976 | ; avatar enters or leaves a concierged region. the URL is subject | ||
977 | ; to format substitution: | ||
978 | ; {0} is replaced with the region's name | ||
979 | ; {1} is replaced with the region's UUID | ||
980 | broker = "http://broker.place.com/{1}" \ No newline at end of file | ||