Ramu Agrawal
Ramu Agrawal

Reputation: 21

how to implement reverse ajax in java

I want to implement Reverse AJAX using javascript or jquery framework.

Does Jquery framework support the reverse ajax?

Also what changes would need to be done on the server-side ? I am using Java.

Upvotes: 1

Views: 386

Answers (1)

wero
wero

Reputation: 33010

The modern version of reverse Ajax are Websockets.

On the Java server side it is available via JSR 356 and implemented by current servlet containers.
In the browser you even don't need JQuery as it supported directly by modern browsers.

Upvotes: 1

Related Questions