Chinaunix首页 | 论坛 | 博客
  • 博客访问: 342655
  • 博文数量: 166
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 10
  • 用 户 组: 普通用户
  • 注册时间: 2013-03-21 17:29
文章分类

全部博文(166)

文章存档

2015年(60)

2014年(99)

2013年(7)

我的朋友

分类: 系统运维

2015-04-23 17:39:09

原文地址:HTTPMU/UDP 作者:leigaiting

HTTPMU

On UDP, you send datagrams: self-contained messages
Multicast UDP sends datagrams to a "group"
For HTTPMU, the contents of the datagram are HTTP requests
There is no response to these multicast requests since the message may be received by any number of clients, and this is not a request-response situation
So a request like GET cannot be interpreted as a request for a document
HTTPMU is expected to use the syntax of HTTP while changing the semantics
HTTPMU allows the possibility of new request types such as NOTIFY as well as the standard HTTP requests of GET, POST, HEAD, etc
HTTPMU was invented to support UPnP
HTTPMU is not a W3C standard
HTTPMU is an expired IETF draft

HTTPU

HTTPU sends a single datagram over UDP to a host
The recipient may send a reply back to the host and port that sent the datagram
Again, it is not expected that standard HTTP requests be sent, only that the syntax is obeyed
HTTPU was invented for UPnP, etc

Simple Service Discovery Protocol (SSDP)

SSDP is used over HTTPMU and HTTPU tp provide basic information about services
It can be used by devices starting up to notify others about their presence
It can be used by clients trying to find a service by asking to search for a service
Announcements/requests are made by multicast over HTTPMU
Replies (if any) are made over HTTPU

SSDP notify

An SSDP notify is multicast by HTTPMU when a device wants to advertise itself, usually at startup
The notify message includes a statement about the device type such as schemas-upnp-org:device:BinaryLight:0.9 and an HTTP url for an XML description of the device
Each device has a UUID (universally unique id) so that it can be identified even if it's IP address changes or it leaves and revisits the network
There is no response to a notify
A typical notify might be
NOTIFY * HTTP/1.1
HOST: 239.255.255.250:1900
CACHE-CONTROL: max-age = seconds until advertisement expires
LOCATION: URL for UPnP description for root device
NT: search target
NTS: ssdp:alive
SERVER: OS/version UPnP/1.0 product/version
USN: advertisement UUID
A notify is also sent at graceful shutdown. The messages are distinguished by the field NTS which is set to ssdp:alive or ssdp:byebye

SSDP search

A search is made using HTTPMU when a client needs to find a device and has maybe missed any adverts
Search is on services not devices (but I am not sure...)
The search is trivially simple: does the service match the service type string or not? If yes then reply by HHTPU, if not then ignore it
The response should include a pointer to an XML service description, so more complex searches could be performed using the XML documents
An example search might be
M-SEARCH * HTTP/1.1
S: uuid:ijklmnop-7dec-11d0-a765-00a0c91e6bf6
Host: 239.255.255.250:reservedSSDPport
Man: "ssdp:discover"
ST: ge:fridge
MX: 3
Device description
A device is described by an XML description file




1
0

base URL for all relative URLs

urn:schemas-upnp-org:device:deviceType:v
short user-friendly title
manufacturer name
URL to manufacturer site
long user-friendly title
model name
model number
URL to model site
manufacturer's serial number
uuid:UUID
Universal Product Code


image/format
horizontal pixels
vertical pixels
color depth
URL to icon





urn:schemas-upnp-org:service:serviceType:v
urn:upnp-org:serviceId:serviceID
URL to service description
URL for control
URL URL for eventing








URL for presentation



Comments

There are many references to url's in this
manufacturer
this will be to home page of the manufacturer
icon
this could be to any icon anywhere
service description
this could be a url anywhere
control
this is the url to send SOAP messages to. It must be a url on the device. This is to allow client applications to make RPC calls to the device
eventing
this is the url to register yourself for device events. It must be a url on the device
presentation
this is an HTML form to control the device, so must be a url on the device. This to allow human interaction with the device
The device must be running an HTTP server
It must be able to understand SOAP messages, so needs an XML parser
It should be able to undersand form requests
The device may run many services, so the description includes a list of services
Service types are standardised by the UPnP consortium. These are (April 2004)
Basic Device
Internet Gateway Device
MediaServer and MediaRenderer
Printer Device and Print Basic Service
Scanner (External Activity, Feeder, Scan, Scanner)
HVAC
WLAN Access Point Device
Device Security and Security Console
Lighting Controls
A vendor will specialise within one of these types

UPnP and J2ME

There is heavy use of multicast. While J2ME supports UDP datagrams, it does not support multicast
UPnP requires use of web services. There is now an optional extension for the J2ME to support web services. This uses a restricted XMl parser
There are several Java implementations of UPnP. CyberLink is an open source version. Unknown if it runs on J2ME
There are no open forums attempting to add UPnP to J2ME, but some of the commercial implementations which claim to run under J2ME

Events

Events are handled by a mechanism called GETA
A service that wants to send an event does so by either HTTP or HTTPU to registered listeners
The service makes a NOTIFY request to the HTTP(U) servers running on the listeners. The listener has to decide what to do with each request - but it does not send an HTTP response
Like Java beans, every time a service changes state (by changing the value of a state variable) it generates an event
Listeners register for all state changes in a service

GUI

Usually, a service will be handled by a program running as a client making SOAP calls
A service may allow a user to control it directly
The UI for a service is an HTML page, typically an HTML Form
The user controls the service by filling in form parameters and submitting the form to the service
The service has to run CGI scripts/servlets/perl modules/etc to handle the form

UPnP life cycle - service

Multicast its existence using HTTPMU using a NOTIFY...alive message. The adverts contain
Device type (e.g. dimmable light device)
Each service type (e.g. on-off service)
URL for device and service descriptions
Runs an HTTP server to respond to device/service description requests (e.g. request for dimmable light description). Each service contains a URL for control
Respond to M-SEARCH requests from clients searching for devices/services. The responses are similar to the original adverts

Respond to control messages to an HTTP server handling SOAP requests by calling a service method. The service should complete the method call and respond within 30 seconds
Respond to event subscription, renewal or unsubscribe messages to an HTTP server by recording the URL of the subscribing party
When a state change occurs, sending NOTIFY messages to the HTTP server of each event subscriber
Respond to requests to an HTTP asking for an HTML page to control the device, and responding to requests made using this form (e.g. calling a servlet to call a method)
Advertises termination using HTTPMU using a NOTIFY...byebye message

UPnP life cycle - client

Make a search using HTTPMU when starting up or looking for a device/service
Receiving the response by HTTPU or HTTP
Listening for service adverts (hello/byebye) over HTTPMU
Invoking services by SOAP requests to an HTTP server
Getting a presentation page using HTTP
Subscribing to events by request to an HTTP server
Receiving event notifications on an the client's HTTP server

References

"Understanding Plug and Play", Microsoft,
Digital Home Working Group
"Multicast and Unicast UDP HTTP Messages" IETF draft draft-goland-http-udp-00.txt (expires 1999)
"General Event Notification Architecture Base: Client to Arbiter" IETF draft draft-cohen-gena-client-00.txt (expires 1999)
"Simple Service Discovery Protocol/1.0" IETF draft draft-cai-ssdp-v1-00.txt (expires 1999)
"UPnP Device Architecture"
阅读(1603) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~