What is Cometd ? Why it is used and how to work on that

Dunston

i'm just a beginner in cometd , and i'm interested and wanted to learn what cometd is and what for it is used i googled it out and found some resource.Under the following link 1.http://docs.cometd.org/reference/installation.html#d0e346.

I tried out with the given demo but i could not able to get the expected output from it. can anybody post some resource url's so that i can learn ?

sbordet

Disclaimer: I'm the CometD project leader.

CometD is a set of library to write web applications that perform messaging over the web.

Whenever you need to write applications where clients need to react to server-side events, then CometD is a very good choice. Think chat applications, online games, monitoring consoles, collaboration tools, stock trading, etc. See more at the preface.

CometD ships a JavaScript client library, a Java client library and a Java server library. This allows you to write applications in the browser with fine-grained logic and control on the server. The server library, being in Java, leverages the high scalability of the JVM and the powerful asynchronous I/O API that the JVM and the Servlet specification provide.

CometD is transport agnostic: you write your applications using high level APIs, and CometD takes care of delivering the messages over the wire using the best transport available: WebSocket or HTTP, also providing a transparent fallback in case WebSocket does not work.

CometD provides a clustering solution called Oort that allows you to scale horizontally your web applications.

CometD comes with a ton of features and an extended documentation along with tutorials and demos you can use as a starting point for your project.

Join CometD to start hacking on your CometD-based web applications.

The CometD tutorials are currently written for CometD 2.x, but a port to CometD 3.x (the current version of CometD) is currently underway, so that requires a bit of patience. But you can start right away by following the primer and deploying the demos.

I hope you can get started with CometD with the above references. Drop an email on the mailing lists for any help you may need.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

What is a retpoline and how does it work?

From Java

What is a blob URL and why it is used?

From Java

What is polymorphism, what is it for, and how is it used?

From Java

What is this JavaScript pattern called and why is it used?

From Dev

What is rake and how it is used in rails?

From Dev

What is decltype and how is it used?

From Dev

What method is used to make the open button in FileDialog work?

From Dev

What are submodules and how are they used?

From Dev

What Scala concepts are being used to make Scalatra DSL work?

From Dev

Why doesn't the error message work when incorrect login used?

From Dev

What are work areas used for with the scrum methodology

From Dev

How does NDK work in Android - What is the order that NDK, JNI etc are used?

From Dev

What is forward invocation? What it is supposed to do? Why it is ever used?

From Dev

Why the static library is being used twice to make the compilation work?

From Dev

CometD - how estabilish long-polling connection

From Dev

What is Liquibase Producer and why it is used?

From Dev

Which Constructor to use? and Why? What is super used for?

From Dev

Why does the javascript I used to show/hide divs not work in IE?

From Dev

Why and how does this work?

From Dev

What is 1.1.1.1? Why does it work for traceoute but not ping?

From Dev

Why doesn't the error message work when incorrect login used?

From Dev

What is OpenStack? And how can it be used?

From Dev

Why does dropping a table not work with SQLServer unless a Transaction is used?

From Dev

Why won't --autostash option work ??? (used with git pull --rebase)

From Dev

How to make a Pub/Sub service with CometD and Jetty

From Dev

Why doesn't $1 work when used inside $'...'?

From Dev

How to send parameters from CometD client to CometD server

From Dev

How to use cometd cometProvider?

From Dev

What is a cookbook? and how is it used?

Related Related

  1. 1

    What is a retpoline and how does it work?

  2. 2

    What is a blob URL and why it is used?

  3. 3

    What is polymorphism, what is it for, and how is it used?

  4. 4

    What is this JavaScript pattern called and why is it used?

  5. 5

    What is rake and how it is used in rails?

  6. 6

    What is decltype and how is it used?

  7. 7

    What method is used to make the open button in FileDialog work?

  8. 8

    What are submodules and how are they used?

  9. 9

    What Scala concepts are being used to make Scalatra DSL work?

  10. 10

    Why doesn't the error message work when incorrect login used?

  11. 11

    What are work areas used for with the scrum methodology

  12. 12

    How does NDK work in Android - What is the order that NDK, JNI etc are used?

  13. 13

    What is forward invocation? What it is supposed to do? Why it is ever used?

  14. 14

    Why the static library is being used twice to make the compilation work?

  15. 15

    CometD - how estabilish long-polling connection

  16. 16

    What is Liquibase Producer and why it is used?

  17. 17

    Which Constructor to use? and Why? What is super used for?

  18. 18

    Why does the javascript I used to show/hide divs not work in IE?

  19. 19

    Why and how does this work?

  20. 20

    What is 1.1.1.1? Why does it work for traceoute but not ping?

  21. 21

    Why doesn't the error message work when incorrect login used?

  22. 22

    What is OpenStack? And how can it be used?

  23. 23

    Why does dropping a table not work with SQLServer unless a Transaction is used?

  24. 24

    Why won't --autostash option work ??? (used with git pull --rebase)

  25. 25

    How to make a Pub/Sub service with CometD and Jetty

  26. 26

    Why doesn't $1 work when used inside $'...'?

  27. 27

    How to send parameters from CometD client to CometD server

  28. 28

    How to use cometd cometProvider?

  29. 29

    What is a cookbook? and how is it used?

HotTag

Archive