From 6d99f0c627d9f1eefd14b7488cce34b1e2e7d933 Mon Sep 17 00:00:00 2001 From: "Teravus Ovares (Dan Olivares)" Date: Thu, 14 Oct 2010 09:34:37 -0400 Subject: [PATCH] * Whoops, That was supposed to use the HTTP VERB 'GET' not 'POST' * At this point. Visually, Mesh works OK. Remember peeps, this is still highly experimental from the viewer side as well as the Simulator side. There are known problems with the new beta viewers and attachment breaking so be careful until that's fixed. Additionally there some new properties in the Mesh Viewer that determine physics settings that are non-functional. More work will be done on that. --- OpenSim/Region/CoreModules/Avatar/Assets/GetMeshModule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Region/CoreModules/Avatar/Assets/GetMeshModule.cs b/OpenSim/Region/CoreModules/Avatar/Assets/GetMeshModule.cs index bae108cdec..a090c0cd8f 100644 --- a/OpenSim/Region/CoreModules/Avatar/Assets/GetMeshModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Assets/GetMeshModule.cs @@ -104,7 +104,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Assets m_log.Info("[GETMESH]: /CAPS/" + capID); caps.RegisterHandler("GetMesh", - new RestHTTPHandler("POST", "/CAPS/" + capID + "/", + new RestHTTPHandler("GET", "/CAPS/" + capID, delegate(Hashtable m_dhttpMethod) { return ProcessGetMesh(m_dhttpMethod, agentID, caps);