I'd written a routine to post process the trace summary output file and noticed that some transactions appeared to have taken an inordinate amount of time.
Closer inspection revealed that the REQUEST_URI had contained commas.
Solution
If the request contains commas then the string should be enclosed in double quotes.
Q. What happens with double quotes in the request?
A. These are encoded as %22
I'd written a routine to post process the trace summary output file and noticed that some transactions appeared to have taken an inordinate amount of time. Closer inspection revealed that the REQUEST_URI had contained commas.
Solution
If the request contains commas then the string should be enclosed in double quotes.
Q. What happens with double quotes in the request? A. These are encoded as %22