diff options
author | gareth | 2007-04-12 18:34:17 +0000 |
---|---|---|
committer | gareth | 2007-04-12 18:34:17 +0000 |
commit | cc53580ba4bb688baf75159d728c03ccfc568aec (patch) | |
tree | 2a1d54583252d3a056e54cb4ed6bf33743aadb99 /OpenGridServices.GridServer/Main.cs | |
parent | * Replaced GridHTTPServer and UserHTTPServer with BaseHttpServer (diff) | |
download | opensim-SC_OLD-cc53580ba4bb688baf75159d728c03ccfc568aec.zip opensim-SC_OLD-cc53580ba4bb688baf75159d728c03ccfc568aec.tar.gz opensim-SC_OLD-cc53580ba4bb688baf75159d728c03ccfc568aec.tar.bz2 opensim-SC_OLD-cc53580ba4bb688baf75159d728c03ccfc568aec.tar.xz |
aaaaaaarrrrrrrrrggggghhhhhhhh why oh why?
Diffstat (limited to '')
-rw-r--r-- | OpenGridServices.GridServer/Main.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/OpenGridServices.GridServer/Main.cs b/OpenGridServices.GridServer/Main.cs index 5827227..c69b6dc 100644 --- a/OpenGridServices.GridServer/Main.cs +++ b/OpenGridServices.GridServer/Main.cs | |||
@@ -109,8 +109,11 @@ namespace OpenGridServices.GridServer | |||
109 | 109 | ||
110 | httpServer.AddXmlRPCHandler("simulator_login", m_simProfileManager.XmlRpcLoginToSimulatorMethod); | 110 | httpServer.AddXmlRPCHandler("simulator_login", m_simProfileManager.XmlRpcLoginToSimulatorMethod); |
111 | 111 | ||
112 | httpServer.AddRestHandler("GET", "/sims/", m_simProfileManager.RestGetSimMethod); | 112 | httpServer.AddRestHandler("GET", "/sims", m_simProfileManager.RestGetSimMethod); |
113 | httpServer.AddRestHandler("POST", "/sims/", m_simProfileManager.RestSetSimMethod); | 113 | httpServer.AddRestHandler("POST", "/sims", m_simProfileManager.RestSetSimMethod); |
114 | httpServer.AddRestHandler("GET", "/regions", m_simProfileManager.RestGetRegionMethod); | ||
115 | httpServer.AddRestHandler("POST", "/regions", m_simProfileManager.RestSetRegionMethod); | ||
116 | |||
114 | 117 | ||
115 | // lbsa71 : This code snippet taken from old http server. | 118 | // lbsa71 : This code snippet taken from old http server. |
116 | // I have no idea what this was supposed to do - looks like an infinite recursion to me. | 119 | // I have no idea what this was supposed to do - looks like an infinite recursion to me. |