(I'm not familiar to RESTFul, please correct me if my concept is wrong)

In RESTFul architecture, we map every action to an URL. If I click "post a article", may it's actually URL http://example.com/ and some data action=post&content=blahblah.

If I want to post, but not refresh the whole web page, I can use javascript's XMLHTTPRequest. I post it and then get it's content and insert it to a div in my page. These action is all asynchronous.

Then I know there is something named WebSocket and it's wrapper socket.io. It use "message" to communicate between client and server. When I click "post" the client just call socket.send(data) and wait for server's client.send(data). It's magical. But how about URL?

It's possible to use the two model both without repeating myself? In other word, every action has it's URL, and some of them can interact with user real-timely(by socket.io?)

Moreover, should I do this? In a very interactive web program(ex. games), the RESTFul is still meaningful?

link|improve this question

72% accept rate
When you post to a restful URL, you're posting to something like http://example.com/product/create, then when the "post" is complete, your web service will return some form of JSON or XML to tell whether or not the post was successful. I really don't think you need to use sockets as you're describing. – Chase Florell Jun 14 '11 at 5:26
In this example you're right. I added the edit. What I want to do is like a interactive white board(people can post and draw and so on). I think socket.io is a good idea. In this case, is it meaningful to add RESTFul-API? If yes, how can I do? – Lai Yu-Hsuan Jun 14 '11 at 5:31
1  
@rockinthesixstring You mean your sending a POST request to /products/ – Raynos Jun 14 '11 at 6:42
socket.send(data) is missing a lot of the picture. To make the data transfer useful, you still need routing. Just with JSON instead of urls. socket.send({ post:'product/create', . . . }) – generalhenry Jun 14 '11 at 7:05
feedback

1 Answer

up vote 2 down vote accepted

You're defining a handler for actions that map to REST over http. POST and GET generally refer to update and query over an entity. There's absolutely no reason you can't just define a handler for generic versions of these CRUD operations that can be used in both contexts. The way I generally do this is by introducing the concept of a 'route' to the real-time transport, and mapping those back to the same CRUD handlers.

You have a session, you can impose the same ACL, etc.

 +---------------------------------+
 |                                 |
 |      BROWSER                    |
 |                                 |
 +--+--^-------------------+---^---+
    |  |                   |   |
    |  |                   |   |
 +--v--+---+            +--v---+---+
 |         |            |          |
 | HTTP    |            | SOCKET.IO|
 +--+---^--+            +--+---^---+
    |   |                  |   |
 +--v---+------------------v---+---+
 |                                 |
 |        ROUTING/PUBSUB           |
 +-+--^-------+--^-------+--^------+
   |  |       |  |       |  |
 +-v--+--+  +-v--+--+  +-v--+-+
 |       |  |       |  |      |
 | USERS |  | ITEMS |  |ETC   |
 +-------+  +-------+  +------+
     ENTITY CRUD HANDLERS
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.