The getHttpMethodName member of WebServerUtility,
needs to be updated to reflect the Invalid Method,
like so :
final String[] methods = {
"Invalid",
"GET",
"POST",
"HEAD",
"OPTIONS",
"PUT",
"DELETE",
"TRACE",
"CONNECT"
};
With out it, it incorrectly labels for example a GET
method as a POST method.
updated WebServerUtility.java