Oops! I done an AdamZaius (forgot to test build before submit

This commit is contained in:
gareth
2007-04-30 02:53:06 +00:00
parent 002336e95c
commit 428cf88526

View File

@@ -40,6 +40,8 @@ using OpenSim.Framework.Console;
using OpenSim.Framework.Interfaces;
using OpenSim.GridInterfaces.Local; // REFACTORING IS NEEDED!!!!!!!!!!!
using OpenSim.Servers;
using Db4objects.Db4o;
using Db4objects.Db4o.Query;
namespace OpenGridServices.AssetServer
{
@@ -94,12 +96,16 @@ namespace OpenGridServices.AssetServer
/*httpServer.AddRestHandler("GET", "/sims/", m_simProfileManager.RestGetSimMethod);
httpServer.AddRestHandler("POST", "/sims/", m_simProfileManager.RestSetSimMethod);
httpServer.AddRestHandler("GET", "/regions/", m_simProfileManager.RestGetRegionMethod);
httpServer.AddRestHandler("POST", "/regions/", m_simProfileManager.RestSetRegionMethod);
httpServer.AddRestHandler("POST", "/regions/", m_simProfileManager.RestSetRegionMethod);
*/
httpServer.AddRestHandler("GET", "/assets/", this.assetGetMethod);
httpServer.Start();
}
public string assetGetMethod(string request, string path, string param) {
return "";
}