diff options
author | Marck | 2010-11-01 13:36:30 +0100 |
---|---|---|
committer | Diva Canto | 2010-11-02 14:11:49 -0700 |
commit | 4d1f0c5348f9a59501f81c4d4ce061db309b5d8a (patch) | |
tree | 298f734f2fa22484d3fc280c89159e24e1beab37 /OpenSim/Framework/Servers/HttpServer | |
parent | Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff) | |
download | opensim-SC_OLD-4d1f0c5348f9a59501f81c4d4ce061db309b5d8a.zip opensim-SC_OLD-4d1f0c5348f9a59501f81c4d4ce061db309b5d8a.tar.gz opensim-SC_OLD-4d1f0c5348f9a59501f81c4d4ce061db309b5d8a.tar.bz2 opensim-SC_OLD-4d1f0c5348f9a59501f81c4d4ce061db309b5d8a.tar.xz |
Support for CORS with simple requests in BaseHttpServer
Diffstat (limited to 'OpenSim/Framework/Servers/HttpServer')
-rw-r--r-- | OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs index ba8c194..30505f6 100644 --- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs +++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | |||
@@ -1450,6 +1450,10 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
1450 | if (responsedata.ContainsKey("reusecontext")) | 1450 | if (responsedata.ContainsKey("reusecontext")) |
1451 | response.ReuseContext = (bool) responsedata["reusecontext"]; | 1451 | response.ReuseContext = (bool) responsedata["reusecontext"]; |
1452 | 1452 | ||
1453 | // Cross-Origin Resource Sharing with simple requests | ||
1454 | if (responsedata.ContainsKey("access_control_allow_origin")) | ||
1455 | response.AddHeader("Access-Control-Allow-Origin", (string)responsedata["access_control_allow_origin"]); | ||
1456 | |||
1453 | //Even though only one other part of the entire code uses HTTPHandlers, we shouldn't expect this | 1457 | //Even though only one other part of the entire code uses HTTPHandlers, we shouldn't expect this |
1454 | //and should check for NullReferenceExceptions | 1458 | //and should check for NullReferenceExceptions |
1455 | 1459 | ||