SóProvas


ID
28426
Banca
CESGRANRIO
Órgão
DNPM
Ano
2006
Provas
Disciplina
Programação
Assuntos

Assinale a opção que apresenta dois mecanismos utilizados em programação WEB para gerenciamento de sessão do usuário.

Alternativas
Comentários
  • Cookies: sua função principal é a de manter a persistência de sessões HTTP.URL Rewriting:técnica que permite a re-escrita de URLs, ou seja, possibilita que uma determinada URL original seja mascarada ou substituída por outra mais segura, apresentável e acessível para nós humanos.
  • Session Handling: URL Rewriting

    URL rewriting is another way of implementing session handling. In this technique a unique session identifier is generated and attached to each and every URL sent to the client browser. For example, if any HTML page is sent to the client browser, any URLs in that page will contain the session identifier. For every request from the client browser, the servlet checks for this session identifier. If this identifier is missing in the URL, the servlet treats it as a new session and generates another session identifier.