<?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: DCL &amp;amp; CGI in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/dcl-amp-cgi/m-p/5184659#M95594</link>
    <description>DCL works.  &lt;BR /&gt;&lt;BR /&gt;Here's probably the simplest example:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://labs.hoffmanlabs.com/node/277" target="_blank"&gt;http://labs.hoffmanlabs.com/node/277&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I've also included a chapter on this topic in the second edition of the Writing Real Programs in DCL Book.  That book is out of print, though copies do show up occasionally.  ISBN 1-55558-191-9.&lt;BR /&gt;&lt;BR /&gt;For non-trivial displays and operations and sequences, DCL is comparatively more involved here than using php or Perl or other languages.  With DCL, you're rolling your own CGI environment and tools, where other environments have mechanisms and libraries and assists available to programmers.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://labs.hoffmanlabs.com/node/928" target="_blank"&gt;http://labs.hoffmanlabs.com/node/928&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Other approaches for remote data collection here include SNMP (installed via SMH or such) and remote monitoring tools.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://labs.hoffmanlabs.com/node/1117" target="_blank"&gt;http://labs.hoffmanlabs.com/node/1117&lt;/A&gt;</description>
    <pubDate>Wed, 01 Jul 2009 14:14:31 GMT</pubDate>
    <dc:creator>Hoff</dc:creator>
    <dc:date>2009-07-01T14:14:31Z</dc:date>
    <item>
      <title>DCL &amp; CGI</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-amp-cgi/m-p/5184655#M95590</link>
      <description>Where can I obtain information on how to incorporate DCL procedures into usable CGI scripts?  I want to be able to execute DCL procedures/commands via Apache (CSWS) on OVMS.  (ie: '$ show system' -or- '$ show process' , etc)</description>
      <pubDate>Wed, 01 Jul 2009 03:39:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-amp-cgi/m-p/5184655#M95590</guid>
      <dc:creator>Manny DeAssis</dc:creator>
      <dc:date>2009-07-01T03:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: DCL &amp; CGI</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-amp-cgi/m-p/5184656#M95591</link>
      <description>Have a look at Alan Winston's book, "OpenVMS with Apache, OSU and WASD" (Digital Press, 2003, ISBN 1-55558-264-8).  Lots of useful information there about webserving on OpenVMS.&lt;BR /&gt;&lt;BR /&gt;Is there any particular reason you chose Apache?  If not, have a look at WASD - a webserver written specifically for OpenVMS with great support and lots of unique features including full support for DCL as CGI and higher performance than all other VMS webservers.&lt;BR /&gt;&lt;A href="http://wasd.vsm.com.au/" target="_blank"&gt;http://wasd.vsm.com.au/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Jeremy Begg</description>
      <pubDate>Wed, 01 Jul 2009 04:15:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-amp-cgi/m-p/5184656#M95591</guid>
      <dc:creator>Jeremy Begg</dc:creator>
      <dc:date>2009-07-01T04:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: DCL &amp; CGI</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-amp-cgi/m-p/5184657#M95592</link>
      <description>CGI is typically just a script executed by the webserver, and it''s written in a command language that the system understands. On OpenVMS, that is DCL.&lt;BR /&gt;&lt;BR /&gt;So actually: a CGI procedure on VMS IS a DCL procedure. You have to take care of a few things though. A CGI procededure typically runs under the webserver user. For CSWS that is APACHE$WWW. This is a 'normal' user without privileges, which complicates things a bit. But $SHOW SYSTEM would not be a problem</description>
      <pubDate>Wed, 01 Jul 2009 05:46:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-amp-cgi/m-p/5184657#M95592</guid>
      <dc:creator>Willem Grooters</dc:creator>
      <dc:date>2009-07-01T05:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: DCL &amp; CGI</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-amp-cgi/m-p/5184658#M95593</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have uploaded an example of a CGI script that can be used on VMS.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;/Toine</description>
      <pubDate>Wed, 01 Jul 2009 08:49:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-amp-cgi/m-p/5184658#M95593</guid>
      <dc:creator>Mario Dhaenens</dc:creator>
      <dc:date>2009-07-01T08:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: DCL &amp; CGI</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-amp-cgi/m-p/5184659#M95594</link>
      <description>DCL works.  &lt;BR /&gt;&lt;BR /&gt;Here's probably the simplest example:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://labs.hoffmanlabs.com/node/277" target="_blank"&gt;http://labs.hoffmanlabs.com/node/277&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I've also included a chapter on this topic in the second edition of the Writing Real Programs in DCL Book.  That book is out of print, though copies do show up occasionally.  ISBN 1-55558-191-9.&lt;BR /&gt;&lt;BR /&gt;For non-trivial displays and operations and sequences, DCL is comparatively more involved here than using php or Perl or other languages.  With DCL, you're rolling your own CGI environment and tools, where other environments have mechanisms and libraries and assists available to programmers.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://labs.hoffmanlabs.com/node/928" target="_blank"&gt;http://labs.hoffmanlabs.com/node/928&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Other approaches for remote data collection here include SNMP (installed via SMH or such) and remote monitoring tools.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://labs.hoffmanlabs.com/node/1117" target="_blank"&gt;http://labs.hoffmanlabs.com/node/1117&lt;/A&gt;</description>
      <pubDate>Wed, 01 Jul 2009 14:14:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-amp-cgi/m-p/5184659#M95594</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2009-07-01T14:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: DCL &amp; CGI</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-amp-cgi/m-p/5184660#M95595</link>
      <description>Thanks guys.  This information is helpful and appears to be a good start.  Any more questions and I know who to turn to.</description>
      <pubDate>Mon, 06 Jul 2009 22:00:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-amp-cgi/m-p/5184660#M95595</guid>
      <dc:creator>Manny DeAssis</dc:creator>
      <dc:date>2009-07-06T22:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: DCL &amp; CGI</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-amp-cgi/m-p/5184661#M95596</link>
      <description>.</description>
      <pubDate>Mon, 06 Jul 2009 22:00:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-amp-cgi/m-p/5184661#M95596</guid>
      <dc:creator>Manny DeAssis</dc:creator>
      <dc:date>2009-07-06T22:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: DCL &amp; CGI</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-amp-cgi/m-p/5184662#M95597</link>
      <description>I'm a bit late to the party since I don't get out here much, but you might want to check out &lt;A href="http://groups.google.com/group/comp.os.vms/browse_frm/thread/f753a86df523d7d8#" target="_blank"&gt;http://groups.google.com/group/comp.os.vms/browse_frm/thread/f753a86df523d7d8#&lt;/A&gt; - the thread is titled "Stupid DCL Tricks revisited - Bar and Pie Charts in DCL"&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Jul 2009 19:51:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-amp-cgi/m-p/5184662#M95597</guid>
      <dc:creator>Peter Weaver_1</dc:creator>
      <dc:date>2009-07-22T19:51:48Z</dc:date>
    </item>
  </channel>
</rss>

