HttpSession |
HttpClient.checkSession(HttpSession session,
HttpPackage payLoad,
NetPackage netPackage) |
|
HttpSession |
HttpServer.checkSession(HttpSession session,
HttpPackage payLoad,
NetPackage netPackage) |
This method must update the http session with all the information of the request.
|
HttpSession |
HttpSessionManager.checkSession(HttpSession session,
HttpRequest request) |
This method must update the session with the information into the request.
|
HttpSession |
HttpSessionManager.DefaultHttpSessionManager.checkSession(HttpSession session,
HttpRequest request) |
This method must update the session with the information into the request.
|
HttpSession |
HttpSessionManager.DefaultHttpSessionManager.destroySession(HttpSession session) |
This method must update the session object when the session is destroyed.
|
HttpSession |
HttpSessionManager.destroySession(HttpSession session) |
This method must update the session object when the session is destroyed.
|
protected void |
HttpServer.onCheckSessionError(HttpSession session,
HttpPackage requestPayLoad,
NetPackage netPackage,
java.lang.Throwable exception) |
Manages an exception thrown while trying to check session (authenticate)
by calling to the specific context for get an error response depending on exception information.
|
protected void |
HttpClient.onConnect(HttpSession session,
HttpPackage payLoad,
NetPackage netPackage) |
|
protected void |
HttpServer.onDisconnect(HttpSession session,
NetPackage netPackage) |
This method is called when the session is closed.
|
protected void |
HttpClient.onRead(HttpSession session,
HttpPackage payLoad,
NetPackage netPackage) |
|
protected void |
HttpServer.onRead(HttpSession session,
HttpPackage payLoad,
NetPackage netPackage) |
First check if the package is complete, then try to found the context using the
http request information a create the response package.
|
protected void |
HttpServer.onWrite(HttpSession session,
NetPackage netPackage) |
When the net service write data then call this method to process the package.
|