I am working on converting the functionality of some JSP pages to GWT. I noticed that javax.servlet.http.HttpServletRequest request is an implied object in JSP, and one can obtain the client's refresh count by calling request.getParameter("refreshCount"). I noticed that one can also access this request object in GWT in the service implementation class (extends RemoteServiceServlet) for the client making an RPC call to this service class by calling getThreadLocalRequest(). However, I noticed that the request object has no parameters. How may I possibly get the refresh count of the calling client (through HttpServletRequest or otherwise)?I am working on converting the functionality of