diff --git a/OpenSim/Services/IntegrationService/IntegrationService.cs b/OpenSim/Services/IntegrationService/IntegrationService.cs index 022acd84da..5390f8a345 100644 --- a/OpenSim/Services/IntegrationService/IntegrationService.cs +++ b/OpenSim/Services/IntegrationService/IntegrationService.cs @@ -41,7 +41,7 @@ using Nini.Config; using log4net; using Mono.Addins; -using Ux = OpenSim.Services.IntegrationService.IUtils; +using Ux = OpenSim.Services.IntegrationService.IntegrationUtils; namespace OpenSim.Services.IntegrationService { diff --git a/OpenSim/Services/IntegrationService/IntegrationServiceBase.cs b/OpenSim/Services/IntegrationService/IntegrationServiceBase.cs index fb3fbe8fa4..d4eb3b8002 100644 --- a/OpenSim/Services/IntegrationService/IntegrationServiceBase.cs +++ b/OpenSim/Services/IntegrationService/IntegrationServiceBase.cs @@ -37,7 +37,7 @@ using GridRegion = OpenSim.Services.Interfaces.GridRegion; using Mono.Addins; using log4net; -using Ux = OpenSim.Services.IntegrationService.IUtils; +using Ux = OpenSim.Services.IntegrationService.IntegrationUtils; [assembly:AddinRoot ("IntegrationService", "2.1")] namespace OpenSim.Services.IntegrationService diff --git a/OpenSim/Services/IntegrationService/IntegrationUtils.cs b/OpenSim/Services/IntegrationService/IntegrationUtils.cs index 1b0ce33d1d..41332c3681 100644 --- a/OpenSim/Services/IntegrationService/IntegrationUtils.cs +++ b/OpenSim/Services/IntegrationService/IntegrationUtils.cs @@ -38,7 +38,7 @@ using OpenMetaverse.StructuredData; namespace OpenSim.Services.IntegrationService { - public static class IUtils + public static class IntegrationUtils { private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); @@ -82,8 +82,8 @@ namespace OpenSim.Services.IntegrationService public static byte[] FailureResult(string msg) { OSDMap doc = new OSDMap(2); - doc["Result"] = OSD.FromString("Failure"); - doc["Message"] = OSD.FromString(msg); + doc["result"] = OSD.FromString("failure"); + doc["message"] = OSD.FromString(msg); return DocToBytes(doc); } @@ -91,8 +91,8 @@ namespace OpenSim.Services.IntegrationService public static byte[] ResponseMessage(string message) { OSDMap doc = new OSDMap(2); - doc["Result"] = OSD.FromString("Success"); - doc["Message"] = OSD.FromString(message); + doc["result"] = OSD.FromString("success"); + doc["message"] = OSD.FromString(message); return DocToBytes(doc); } diff --git a/OpenSim/Services/IntegrationService/PluginManager.cs b/OpenSim/Services/IntegrationService/PluginManager.cs index 85637003fd..c4df44704a 100644 --- a/OpenSim/Services/IntegrationService/PluginManager.cs +++ b/OpenSim/Services/IntegrationService/PluginManager.cs @@ -35,7 +35,7 @@ using Mono.Addins; using Mono.Addins.Setup; using Mono.Addins.Description; using OpenSim.Framework; -using Ux = OpenSim.Services.IntegrationService.IUtils; +using Ux = OpenSim.Services.IntegrationService.IntegrationUtils; namespace OpenSim.Services.IntegrationService {