737dcc50 by Ean Schuessler

Add the HTTP method to the service lookup

1 parent 7df44925
......@@ -141,7 +141,7 @@ public class DirectControlServlet extends HttpServlet {
// If there is a mapping for this pathInfo, run the corresponding service
// otherwise, return an error
String serviceName = serviceURLMappings.get(pathInfo) + "#" + method;
String serviceName = serviceURLMappings.get(pathInfo + "#" + method);
if (serviceName == null) {
serviceName = serviceURLMappings.get(pathInfo);
if (serviceName == null) {
......