REST HTTP IMS SIP in the WIMS

来源:互联网 发布:微信二次开发教程 java 编辑:程序博客网 时间:2024/06/07 16:57

写到哪算哪。 IMS A Development and Deployment Perspective : WILEY.

                  WIMS 2.0

 

    WEB 2.0 所用的 REST 几个准则:

 

  REST提出了一些设计概念和准则:

  1.网络上的所有事物都被抽象为资源(resource);   

      2.每个资源对应一个唯一的资源标识(resource identifier);  

      3.通过通用的连接器接口(generic connector interface)对资源进行操作;  

    4.对资源的各种操作不会改变资源标识;   

      5.所有的操作都是无状态的(stateless)

 

point 1 : the resource defined by the REST are univocally identified by URIs.  (sip uses URI, so each SIP URL can be treated at a Resouce id , 这样IMS和WEB2.0 在对资源的操作上是否就达成统一?都不需要额外的标识去联系WEB 2.0和 IMS 里的用户?~)' 和xcap 中的

 

point 3 : 通用的连接器接口 , the HTTP verbs, GET ,POST, PUT and DELETE.

 

    from the examples of Presence in the IMS domain:

 

       1.HTTP GET is utilize to retrieve a presentity's status;

       2. HTTP POST can be used for publishing presence information'. ------>SIP PUBLISH method.

       3. HTTP PUT for refreshing softstate presence information.

       4. HTTP Delete to erase this softstate infoamtion..

 

先存着,当草稿