if (bpath != null && cpath == null) return bpath;
StringBuffer buf = new StringBuffer("");
int n = bpath.lastIndexOf('/');
if (n > -1) buf.append(bpath.substring(0,n+1));
if (cpath.length() != 0) buf.append(cpath);
return normalize(new HttpScheme(),buf.toString());
}