RSS::Cloud
Inherits RSS::Element / Reference / Object
Optional sub-element of a channel.
It specifies a web service that supports the rssCloud interface which can be implemented in HTTP-POST, XML-RPC or SOAP 1.1.
Its purpose is to allow processes to register with a cloud to be notified of updates to the channel, implementing a lightweight publish-subscribe protocol for RSS feeds.
<cloud domain="radio.xmlstoragesystem.com" port="80" path="/RPC2" registerProcedure="xmlStorageSystem.rssPleaseNotify" protocol="xml-rpc" />
In this example, to request notification on the channel it appears in, you would send an XML-RPC message to radio.xmlstoragesystem.com on port 80, with a path of /RPC2. The procedure to call is xmlStorageSystem.rssPleaseNotify.
A full explanation of this element and the rssCloud interface is here.
Constructors
new(domain : URI | String, port : Int32, path : String, register_procedure : String, protocol : String)
SourceInstance methods
domain
Sourcedomain=(domain : URI)
Sourcepath
Sourcepath=(path : String)
Sourceport
Sourceport=(port : Int32)
Sourceprotocol
Sourceprotocol=(protocol : String)
Sourceregister_procedure
Sourceregister_procedure=(register_procedure : String)
Source