OPENDJ-902 Add connectionID to the HTTP access log + move to extended log format
OPENDJ-858 Add stats tracking to HTTP client connections
The value output by the "cs-uri-query" extended log format was incorrect, the URL parameters should have been separated by a question mark character '?' instead of a slash character '/'.
HTTPClientConnection.java:
Used a question mark character '?' to build the uri query.
| | |
| | | this.securityStrengthFactor = |
| | | calcSSF(request.getAttribute(SERVLET_SSF_CONSTANT)); |
| | | this.method = request.getMethod(); |
| | | this.query = request.getRequestURI() + "/" + request.getQueryString(); |
| | | this.query = request.getRequestURI() + "?" + request.getQueryString(); |
| | | this.protocol = request.getProtocol(); |
| | | this.userAgent = request.getHeader("User-Agent"); |
| | | |