Hello, I want to change the location of the ?wsdl url's. This is by default /services/*?wsdl, and I want to change the url mapping to
/sub/services/ Problem seems to be that reportAvailableServices that lists the available services is hardcoded to /services/. any way to get around this and get reportAvailableServices working, or any way to find the url-mapping so the hardcoded /services/ can be replaced with the actual mapping? AxisServlet.java - reportAvailableServices : String baseURL = getWebappBase(request)+"/services/"; ... sb.append(" <a href=\""); sb.append(baseURL); sb.append(name); sb.append("?wsdl\"><i>(wsdl)</i></a></li>");