Further findings:

The problem is that in 

../applications/products/src/org/ofbiz/product/category/CatalogUrlFIlter.java

request.getContextPath() is ""

Therefore 

            if (urlBuilder.charAt(urlBuilder.length() - 1) != '/') {
                urlBuilder.append("/");
            }

will not work. As I am quite new to ofbiz, could anyone tell me if this is
something that could be configured (current mis-configuration) or should
this be catched in code like:

           if(contextPath ==""){
                contextPath = "/";
            }



--
View this message in context: 
http://ofbiz.135035.n4.nabble.com/Webapp-mount-point-problem-in-ofbiz-trunk-tp4649827p4649853.html
Sent from the OFBiz - User mailing list archive at Nabble.com.

Reply via email to