0

Take for example a web client that reaches out to a web service and displays periodic up-to-the minute stock price updates without the user having to submit additional requests.

What is this technique called? Once I know what it is called, I can search for it.

Tony Ennis
  • 12,000
  • 7
  • 52
  • 73

2 Answers2

0

This is called API consumption.

There are multiple ways and methods that this happens:

The web service might be a RESTful API over HTTP(s).

WebSockets uses the TCP protocol.

XHR = AJAX = XHttpRequest.

Not sure if this helped....

Brian Noah
  • 2,962
  • 18
  • 27
0

I read an article about possibly the first use of this the other day which lead to this which turned up the term Comet which has links to many other articles about the technique.

Hope that helps.

Community
  • 1
  • 1
arx
  • 16,686
  • 2
  • 44
  • 61