diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs index c74eab1404..75c9310de0 100644 --- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs +++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs @@ -964,8 +964,10 @@ namespace OpenSim.Framework.Servers.HttpServer } } - response.ContentType = "application/llsd+json"; - return Encoding.UTF8.GetBytes(OSDParser.SerializeJsonString(llsdResponse)); + // response.ContentType = "application/llsd+json"; + // return Encoding.UTF8.GetBytes(OSDParser.SerializeJsonString(llsdResponse)); + response.ContentType = "application/llsd+xml"; + return OSDParser.SerializeLLSDXmlBytes(llsdResponse); } ///