aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.Servers/IRestHandler.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2007-04-11* Started on converting UserHTTPServer to BaseHttpServerlbsa711-1/+1
* Added a 'param' param to the RestMethod * Added RestHandlerEntry to store more info about the 'rest' handler
2007-04-11Renamed the Servers directory to OpenSim.ServersMW1-0/+0
2007-03-30Started to add a few features to the web front end that should be useful ↵MW1-1/+1
during debugging. First such feature is that you can see a list of any connected clients inventory.
2007-03-29* Now the rest handlers try to match path as close as possibly, so it's ↵lbsa711-1/+1
possible to add handlers for just a beginning of a path.
2007-03-29* RestMethod now uses same pattern as XmlRpcMethodlbsa711-4/+1
* Made /Admin use RestMethod * HttpServer is now a mini-webapp-server yay!
2007-03-29Added lbsa71's http server changes. MW1-0/+0
So it now has a single http listener that passes incoming requests to the correct handler. This means that logins (in sandbox mode) now go through this listener, which for now is listening on the port you set in startup (default 9000). (This needs changing so that the http listener and udp server are not using the same port)
2007-03-27Added REST-handler interface for the http server and changed the Admin Web ↵MW1-0/+11
front end to one.