diff options
author | Teravus Ovares | 2008-09-19 00:13:16 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-09-19 00:13:16 +0000 |
commit | a1217410e5cb22a5764f191b6abfa015ec9614d1 (patch) | |
tree | 16cf3e09f6a17ec6c02ce324df3110f7f588bc16 /OpenSim/Framework | |
parent | Fix llParcelMedia queries. Correct types and add a missing ToString() (XEngine) (diff) | |
download | opensim-SC_OLD-a1217410e5cb22a5764f191b6abfa015ec9614d1.zip opensim-SC_OLD-a1217410e5cb22a5764f191b6abfa015ec9614d1.tar.gz opensim-SC_OLD-a1217410e5cb22a5764f191b6abfa015ec9614d1.tar.bz2 opensim-SC_OLD-a1217410e5cb22a5764f191b6abfa015ec9614d1.tar.xz |
* Switches content type from application/xml+llsd to application/llsd+xml on outgoing requests.
* Monitors / for getting the seed cap for rez_avatar/request on application/llsd+xml && application/xml+llsd && !application/xml
* Experimental, this might break LibOMV temporarily.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Servers/BaseHttpServer.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Servers/BaseHttpServer.cs b/OpenSim/Framework/Servers/BaseHttpServer.cs index 264ffae..7bf8a3c 100644 --- a/OpenSim/Framework/Servers/BaseHttpServer.cs +++ b/OpenSim/Framework/Servers/BaseHttpServer.cs | |||
@@ -650,7 +650,7 @@ namespace OpenSim.Framework.Servers | |||
650 | llsdResponse = GenerateNoLLSDHandlerResponse(); | 650 | llsdResponse = GenerateNoLLSDHandlerResponse(); |
651 | } | 651 | } |
652 | 652 | ||
653 | response.ContentType = "application/xml+llsd"; | 653 | response.ContentType = "application/llsd+xml"; |
654 | 654 | ||
655 | byte[] buffer = LLSDParser.SerializeXmlBytes(llsdResponse); | 655 | byte[] buffer = LLSDParser.SerializeXmlBytes(llsdResponse); |
656 | 656 | ||