|
|
|
|
|
rssDisplay (Function) In french: rssAffiche
Not available
Builds a RSS feed and returns the content of the RSS feed to the client. The result is displayed in user's browser. MonFluxRSS is rssStream
MonFluxRSS = rssInitialize("http://www.monsite.fr/feeds/rss/actualites/", fromURL)
...
rssDisplay(MonFluxRSS)
Syntax
rssDisplay(<RSS feed to display> [, <Encoding>])
<RSS feed to display>: rssStream variable Name of the variable of type rssStream to be used. <Encoding>: Optional Integer constant Indicates the encoding that will be used in the XML file corresponding to the stream: | | XMLEncodingIso8859_1 | Encoding according to the Latin character set | XMLEncodingIso8859_2 | Encoding according to Iso8859_2 | XMLEncodingIso8859_3 | Encoding according to Iso8859_3 | XMLEncodingIso8859_4 | Encoding according to Iso8859_4 | XMLEncodingIso8859_5 | Encoding according to Iso8859_5 | XMLEncodingIso8859_6 | Encoding according to Iso8859_6 | XMLEncodingIso8859_7 | Encoding according to Iso8859_7 | XMLEncodingIso8859_8 | Encoding according to Iso8859_8 | XMLEncodingIso8859_9 | Encoding according to Iso8859_9 | XMLEncodingIso8859_15 | Latin-9 encoding | XMLEncodingUTF8 (default value) | Unicode 8 encoding | XMLEncodingUTF16 | Unicode encoding | XMLNoEncoding | No encoding |
Remarks - The MIME type used is "application/xml".
- The encoding used when creating the XML file is automatically written in the HTTP headers.
- If your project uses pre-launched sessions, this function must not be used in the project initialization event. This function must be used in the "Initialization in pre-launched session mode" event.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|