59e7ce90 by Jerry Pommer

Merge branch 'BF-2528' of /home/git/repositories/brainfood/ofbiz-directcontrolservlet

2 parents 7df44925 737dcc50
...@@ -141,7 +141,7 @@ public class DirectControlServlet extends HttpServlet { ...@@ -141,7 +141,7 @@ public class DirectControlServlet extends HttpServlet {
141 141
142 // If there is a mapping for this pathInfo, run the corresponding service 142 // If there is a mapping for this pathInfo, run the corresponding service
143 // otherwise, return an error 143 // otherwise, return an error
144 String serviceName = serviceURLMappings.get(pathInfo) + "#" + method; 144 String serviceName = serviceURLMappings.get(pathInfo + "#" + method);
145 if (serviceName == null) { 145 if (serviceName == null) {
146 serviceName = serviceURLMappings.get(pathInfo); 146 serviceName = serviceURLMappings.get(pathInfo);
147 if (serviceName == null) { 147 if (serviceName == null) {
......