<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Setting HTTP status code using DCL CGI script under CSWS? in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946425#M34019</link>
    <description>But what happens in this case if the "browser" is a Java program or Perl script or whatever?&lt;BR /&gt;&lt;BR /&gt;Will the client see error 403 or 500?</description>
    <pubDate>Thu, 15 Dec 2005 04:48:46 GMT</pubDate>
    <dc:creator>Sebastian Bazley</dc:creator>
    <dc:date>2005-12-15T04:48:46Z</dc:date>
    <item>
      <title>Setting HTTP status code using DCL CGI script under CSWS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946417#M34011</link>
      <description>Hi. I'm new to CGI programming.  I'm writing DCL CGI code in a CSWS V1.3-1 Web server environment, and I'm writing with a question about DCL CGI programming. Can someone please tell me whether it's possible within a DCL CGI command procedure to assign an HTTP status code to override the normal "200 OK" code?&lt;BR /&gt;&lt;BR /&gt;The book "CGI Programming with Perl" says that there's a special "Status" header that "specifies the status code the server should include in the status line of the request", and proceeds to show an example how to do this in Perl.  I'd like to do the same thing in DCL. I'd like to set an HTTP status code when my code can't produce the output the user seeks, for example, if the user specified a record identifier using an invalid format for the identifier.&lt;BR /&gt;&lt;BR /&gt;I tried modifying a simple DCL CGI command procedure from the "Writing Real Programs in DCL" book, adding the following line within the section of code that prints the "Content-type" header:&lt;BR /&gt;&lt;BR /&gt;$ display "status: 503 Resource Unavailable"&lt;BR /&gt;&lt;BR /&gt;("display" is a symbol with the value "write sys$output".)&lt;BR /&gt;&lt;BR /&gt;Unfortunately, the Web server seemed to ignore this command.  It didn't make a difference whether I put this line before or after the line that prints the "Content-type" header.&lt;BR /&gt;&lt;BR /&gt;I looked in the Web server's ACCESS_LOG file to try to get insight into this, but my attempts to run the script didn't appear to be logged.&lt;BR /&gt;&lt;BR /&gt;FWIW, the system running the Web server is running OpenVMS Alpha 7.3-2.&lt;BR /&gt;&lt;BR /&gt;- Duane</description>
      <pubDate>Tue, 13 Dec 2005 00:17:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946417#M34011</guid>
      <dc:creator>Duane Sadowski</dc:creator>
      <dc:date>2005-12-13T00:17:05Z</dc:date>
    </item>
    <item>
      <title>Re: Setting HTTP status code using DCL CGI script under CSWS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946418#M34012</link>
      <description>This is an example I found in WASD.&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Tue, 13 Dec 2005 03:57:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946418#M34012</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2005-12-13T03:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: Setting HTTP status code using DCL CGI script under CSWS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946419#M34013</link>
      <description>And another one using sys$output.&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Tue, 13 Dec 2005 04:01:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946419#M34013</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2005-12-13T04:01:31Z</dc:date>
    </item>
    <item>
      <title>Re: Setting HTTP status code using DCL CGI script under CSWS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946420#M34014</link>
      <description>Wim:&lt;BR /&gt;&lt;BR /&gt;Thanks for the code samples.  These seem to confirm that one can do this in a VMS / DCL environment.&lt;BR /&gt;&lt;BR /&gt;The big question that remains is whether release 1.3-1 of the HP Secure Web server / CSWS, the Web server that I'm using, supports the "Status" header feature.&lt;BR /&gt;&lt;BR /&gt;- Duane</description>
      <pubDate>Tue, 13 Dec 2005 20:07:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946420#M34014</guid>
      <dc:creator>Duane Sadowski</dc:creator>
      <dc:date>2005-12-13T20:07:55Z</dc:date>
    </item>
    <item>
      <title>Re: Setting HTTP status code using DCL CGI script under CSWS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946421#M34015</link>
      <description>Duane,&lt;BR /&gt;    it doesn't really matter what the web server is your running (as long as you get the syntax right). Whatever you send as the header will simply be sent to the browser.&lt;BR /&gt;&lt;BR /&gt;Sending 'custom' headers is normally done for file-attachments, i.e.&lt;BR /&gt;&lt;BR /&gt;$               CONTENT_HEADER = "Content-Disposition: attachment; filename=''FILENAME'"&lt;BR /&gt;$               WS F$FAO("''CONTENT_FAO'","Content-type: ''MIMESTRING'",CONTENT_HEADER)&lt;BR /&gt;&lt;BR /&gt;As long as you get the syntax right, which should be "Status: xxx" then it should work. You just need to be carefull that Apache expects the header to be sent in a very particular way formatted with F$FAO.&lt;BR /&gt;&lt;BR /&gt;Robert.</description>
      <pubDate>Wed, 14 Dec 2005 05:07:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946421#M34015</guid>
      <dc:creator>Robert Atkinson</dc:creator>
      <dc:date>2005-12-14T05:07:25Z</dc:date>
    </item>
    <item>
      <title>Re: Setting HTTP status code using DCL CGI script under CSWS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946422#M34016</link>
      <description>Surely the status is derived from the initial line returned by the server, e.g.&lt;BR /&gt;&lt;BR /&gt;HTTP/1.1 400 Bad Request&lt;BR /&gt;Content-Type: text/html&lt;BR /&gt;Date: Wed, 14 Dec 2005 18:49:57 GMT&lt;BR /&gt;Connection: close&lt;BR /&gt;Content-Length: 39&lt;BR /&gt;&lt;BR /&gt;here is the content...</description>
      <pubDate>Wed, 14 Dec 2005 13:46:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946422#M34016</guid>
      <dc:creator>Sebastian Bazley</dc:creator>
      <dc:date>2005-12-14T13:46:57Z</dc:date>
    </item>
    <item>
      <title>Re: Setting HTTP status code using DCL CGI script under CSWS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946423#M34017</link>
      <description>I'm with Mr. Bazley.  You can certainly&lt;BR /&gt;produce page content which _says_ "Status:&lt;BR /&gt;xxx", but that differs from the server&lt;BR /&gt;declaring (and logging) an error "xxx".&lt;BR /&gt;&lt;BR /&gt;You _could_ use an exploding CGI program. If&lt;BR /&gt;it dies unexpectedly, the server should&lt;BR /&gt;declare some kind of error, but, again,&lt;BR /&gt;that's something different.&lt;BR /&gt;&lt;BR /&gt;I suspect that you really want to produce&lt;BR /&gt;error pages to show to the victim, not create&lt;BR /&gt;actual errors at the server.</description>
      <pubDate>Wed, 14 Dec 2005 15:36:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946423#M34017</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2005-12-14T15:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: Setting HTTP status code using DCL CGI script under CSWS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946424#M34018</link>
      <description>The point is that you can control the HTTP header in the way described.&lt;BR /&gt;&lt;BR /&gt;Sending this string will give you a valid HTTP error within the browser :-&lt;BR /&gt;&lt;BR /&gt;$ ws "Content-Type: text/plain"&lt;BR /&gt;$ ws "Status: 403 Nice try!"&lt;BR /&gt;&lt;BR /&gt;----------&lt;BR /&gt;&lt;BR /&gt;Nice try! &lt;BR /&gt;You don't have permission to access /cms-cgi/ht_test on this server.&lt;BR /&gt;&lt;BR /&gt;Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request. &lt;BR /&gt;&lt;BR /&gt;----------&lt;BR /&gt;&lt;BR /&gt;As you can see, the output is not completely correct. Apache doesn't like it if you don't close the header properly with a CRLF. &lt;BR /&gt;&lt;BR /&gt;Unfortunately, if you do, the browser ignores the status code and just assumes it's been sent a valid page.&lt;BR /&gt;&lt;BR /&gt;I'm still continuing to investigate how to get the correct output.&lt;BR /&gt;&lt;BR /&gt;Rob.</description>
      <pubDate>Thu, 15 Dec 2005 04:18:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946424#M34018</guid>
      <dc:creator>Robert Atkinson</dc:creator>
      <dc:date>2005-12-15T04:18:24Z</dc:date>
    </item>
    <item>
      <title>Re: Setting HTTP status code using DCL CGI script under CSWS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946425#M34019</link>
      <description>But what happens in this case if the "browser" is a Java program or Perl script or whatever?&lt;BR /&gt;&lt;BR /&gt;Will the client see error 403 or 500?</description>
      <pubDate>Thu, 15 Dec 2005 04:48:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946425#M34019</guid>
      <dc:creator>Sebastian Bazley</dc:creator>
      <dc:date>2005-12-15T04:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: Setting HTTP status code using DCL CGI script under CSWS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946426#M34020</link>
      <description>If I can get it working properly, it'll see :-&lt;BR /&gt;&lt;BR /&gt;Content-Type: text/plain CRLF&lt;BR /&gt;Status: 403 Nice try! CRLF&lt;BR /&gt;CRLF&lt;BR /&gt;&lt;BR /&gt;....which is a valid HTTP header. It's just that last CRLF that's stuffing me at the moment.&lt;BR /&gt;&lt;BR /&gt;Rob.&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Dec 2005 04:53:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946426#M34020</guid>
      <dc:creator>Robert Atkinson</dc:creator>
      <dc:date>2005-12-15T04:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: Setting HTTP status code using DCL CGI script under CSWS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946427#M34021</link>
      <description>Robert, Sebastian, Steven:&lt;BR /&gt;&lt;BR /&gt;Thanks for the additional information.&lt;BR /&gt;&lt;BR /&gt;I think that I made a beginner's conceptual mistake, and I think that was part of the difficulty that I experienced.&lt;BR /&gt;&lt;BR /&gt;I was initially assuming that if I'm using a Web browser such as Firefox, the browser reacts in an explicit manner to an error status returned by the server in the top line of the server's response, but now I doubt that assumption.  I now assume that the browser merely displays the content that follows the HTTP header returned by the server, which in the case of a non-200 status would typically be an HTML document with some error message in the body of the document.  So when I concluded that my DCL command procedure wasn't working, I think I might have been mistaken.&lt;BR /&gt;&lt;BR /&gt;To see what status code the server is sending back to the browser, I think I should not be relying on what I see in the Web browser window. (Sebastian Bazley wrote about the possibility that some program other than a conventional Web browser might access the Web server, and indeed that's the type of "browser" with which I need to be concerned.)&lt;BR /&gt;&lt;BR /&gt;To test my DCL CGI, I think I should instead be doing one of two things: either looking at the entries in the Secure Web Server's log files, or else TELNETing to the Web server, issuing a GET command to launch the DCL CGI, and watching what the server sends back.  (A problem that I encounter looking at the log file entries is that it appears that I have to wait many hours before they're visible to me in the log files.)&lt;BR /&gt;&lt;BR /&gt;- Duane</description>
      <pubDate>Sat, 17 Dec 2005 01:15:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946427#M34021</guid>
      <dc:creator>Duane Sadowski</dc:creator>
      <dc:date>2005-12-17T01:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: Setting HTTP status code using DCL CGI script under CSWS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946428#M34022</link>
      <description>You may find a program like Wget more&lt;BR /&gt;convenient than Telnet for your non-browser&lt;BR /&gt;HTTP GET activity.&lt;BR /&gt;(&lt;A href="http://antinode.org/dec/sw/wget.html)" target="_blank"&gt;http://antinode.org/dec/sw/wget.html)&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I flush my CSWS logs files by doing a RESTART&lt;BR /&gt;every hour (or so) with a self-resubmitting&lt;BR /&gt;batch job.  (There was a problem with FLUSH.)&lt;BR /&gt;&lt;BR /&gt;You can also have your CGI program write data&lt;BR /&gt;to its own diagnostic file(s).  You won't&lt;BR /&gt;need to wait for that.</description>
      <pubDate>Sat, 17 Dec 2005 12:21:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946428#M34022</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2005-12-17T12:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: Setting HTTP status code using DCL CGI script under CSWS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946429#M34023</link>
      <description>Steven:&lt;BR /&gt;&lt;BR /&gt;Thanks for the reference to wget, for explaining how to view the log file entries more readily, and for suggesting a separate file containing diagnostic information.&lt;BR /&gt;&lt;BR /&gt;- Duane</description>
      <pubDate>Sun, 18 Dec 2005 23:36:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946429#M34023</guid>
      <dc:creator>Duane Sadowski</dc:creator>
      <dc:date>2005-12-18T23:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: Setting HTTP status code using DCL CGI script under CSWS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946430#M34024</link>
      <description>Sorry about the 404 errors caused by the&lt;BR /&gt;mangled URL in the "helpful" ITRC Forum&lt;BR /&gt;interpretation.  Apparently, many forms of&lt;BR /&gt;quotation cause trouble.  This should be clean:&lt;BR /&gt;&lt;BR /&gt;   &lt;A href="http://antinode.org/dec/sw/wget.html" target="_blank"&gt;http://antinode.org/dec/sw/wget.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;(It sure would be nice if the Forum-formed&lt;BR /&gt;links were just plain links instead of all&lt;BR /&gt;the JavaJive.)</description>
      <pubDate>Mon, 19 Dec 2005 00:36:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946430#M34024</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2005-12-19T00:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: Setting HTTP status code using DCL CGI script under CSWS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946431#M34025</link>
      <description>Steven:&lt;BR /&gt;&lt;BR /&gt;Thanks for the clarification of the URL.  At first, I thought it was an obsolete link, but I eventually figured out that the problem was the closing parenthesis within the URL.&lt;BR /&gt;&lt;BR /&gt;- Duane</description>
      <pubDate>Mon, 19 Dec 2005 01:19:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946431#M34025</guid>
      <dc:creator>Duane Sadowski</dc:creator>
      <dc:date>2005-12-19T01:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Setting HTTP status code using DCL CGI script under CSWS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946432#M34026</link>
      <description>Duane,&lt;BR /&gt;    your first assumption was correct regarding the interpretation of the status code.&lt;BR /&gt;&lt;BR /&gt;As with my example, this text is returned :-&lt;BR /&gt;&lt;BR /&gt;Nice try! &lt;BR /&gt;You don't have permission to access /cms-cgi/ht_test on this server.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;As you can see, although I sent the 'Nice Try' message, IE interpretted the status code and also outputted "You don't have permission to access /cms-cgi/ht_test on this server."&lt;BR /&gt;&lt;BR /&gt;As you've said though, I wouldn't rely on the browser giving you the information you require, especially IE which loves to wrap errors in cute little messages.&lt;BR /&gt;&lt;BR /&gt;Rob.</description>
      <pubDate>Mon, 19 Dec 2005 03:51:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946432#M34026</guid>
      <dc:creator>Robert Atkinson</dc:creator>
      <dc:date>2005-12-19T03:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: Setting HTTP status code using DCL CGI script under CSWS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946433#M34027</link>
      <description>Rob:&lt;BR /&gt;&lt;BR /&gt;Thanks for confirming my understanding.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Nice try!&lt;BR /&gt;&amp;gt; You don't have permission to access&lt;BR /&gt;&amp;gt; /cms-cgi/ht_test on this server.&lt;BR /&gt;&lt;BR /&gt;Could you please clarify one thing?  The first phrase, "Nice try!", is clearly coming from your program, but what about the second phrase, "You don't have permission...&lt;BR /&gt;"?  Are you generating that with a WS command in your DCL command procedure, or is the Web server generating that phrase as a consequence of the 403 code and sending it to the browser, or is the Web browser generating that in response to the 403 code?  (I think that the answer is that the browser is doing this, but I want to make sure I understand things correctly.)&lt;BR /&gt;&lt;BR /&gt;- Duane</description>
      <pubDate>Mon, 19 Dec 2005 04:15:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946433#M34027</guid>
      <dc:creator>Duane Sadowski</dc:creator>
      <dc:date>2005-12-19T04:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: Setting HTTP status code using DCL CGI script under CSWS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946434#M34028</link>
      <description>You're correct. The Browser is generating the message, which is it's interpretation of a '403' error.&lt;BR /&gt;&lt;BR /&gt;Rob.</description>
      <pubDate>Mon, 19 Dec 2005 04:20:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946434#M34028</guid>
      <dc:creator>Robert Atkinson</dc:creator>
      <dc:date>2005-12-19T04:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: Setting HTTP status code using DCL CGI script under CSWS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946435#M34029</link>
      <description>Thanks again for the help.  As things turned out, the outside developer with whom we worked on this ended up having us specify code numbers within the body of the document instead of using HTTP codes.</description>
      <pubDate>Tue, 18 Apr 2006 20:13:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/setting-http-status-code-using-dcl-cgi-script-under-csws/m-p/4946435#M34029</guid>
      <dc:creator>Duane Sadowski</dc:creator>
      <dc:date>2006-04-18T20:13:48Z</dc:date>
    </item>
  </channel>
</rss>

