"Before the forward method of the RequestDispatcher interface returns, the response
content must be sent and committed, and closed by the servlet container." to read
"Before the forward method of the RequestDispatcher interface returns without exception,
the response content must be sent and committed, and closed by the servlet container.
If an error occurs in the target of the RequestDispatcher.forward() the
exception may be propogated back through all the calling filters and servlets and eventually back
to the container.
<xsd:pattern value="[\p{L}-[\p{Cc}\p{Z}]]+"/>
<xsd:pattern value="[!-~-[\(\)<>@,;:"/\[\]?=\{\}\\\p{Z}]]+"/>
"Multiple servlets executing request threads may have active access to a single session object at the same time. The Developer has the responsibility for synchronizing access to session resources as appropriate." to read
"Multiple servlets executing request threads may have active access to the same session object at
the same time. The container must ensure that manipulation of internal data structures
representing the session attributes is performed in a threadsafe manner. The Developer has the
responsibility for threadsafe access to the attribute objects themselves. This will protect the
attribute collection inside the HttpSession object from concurrent access,
eliminating the opportunity for an application to cause that collection to become corrupted.