If your resourcePath starts with a /, the HttpRequest toString prints an additional /.
builder.append("/" + (getResourcePath() != null ? getResourcePath() : "") + " ");
The toString should not print a / if the resourcePath begins with a /.
Log in to post a comment.