Concepts a web application developer should know?

Posted by iama on Stack Overflow See other posts from Stack Overflow or by iama
Published on 2010-04-14T16:59:34Z Indexed on 2010/04/14 17:03 UTC
Read the original article Hit count: 308

I think it is imperative for web application developers to know the answers surrounding the following general questions on web development irrespective of the programming language/framework used.

  1. What authentication mechanisms HTTP offer & what are their pros and cons?
  2. Why should one go for FORMS authentication?
  3. How to secure authentication or for that matter any transactions via HTTP?
  4. How to maintain state in HTTP?
  5. What are the downsides to maintaining state via cookie & what happens when browsers disable them?
  6. Security issues like cross site scripting, session hijacking etc.

What other questions a web developer should have answers for similar to the ones above that are programming language/web framework agnostic?

© Stack Overflow or respective owner

Related posts about web-development

Related posts about general-concepts