0

I would like to learn about HTTP requests. I checked lot of websites, but I don't know where to start learning and understand it.

I'm learning Java and playing around a lot with Titanium. So it would be great if someone could guide me.

BalusC
  • 992,635
  • 352
  • 3,478
  • 3,452
Mohammad Fadin
  • 439
  • 5
  • 9
  • 21

2 Answers2

4

Here's a HTTP tutorial, here's the HTTP specification and here's an URLConnection guide.

Community
  • 1
  • 1
BalusC
  • 992,635
  • 352
  • 3,478
  • 3,452
0

Since you are using Java, you should also look into Servlets and JSPs. This will give you a more non-abstract view into the HTTP world. You will understand how it is used at an application level.

If you are into turning pages, I suggest http://www.amazon.com/Head-First-Servlets-JSP-Certified/dp/0596005407

If you want online tutorials you can find them by googling "Servlet and jsp tutorials".

An overview can be found here
http://www.apl.jhu.edu/~hall/java/Servlet-Tutorial/Servlet-Tutorial-Overview.html

kensen john
  • 4,922
  • 3
  • 26
  • 35