পৃষ্ঠাসমূহ

Search Your Article

CS

 

Welcome to GoogleDG – your one-stop destination for free learning resources, guides, and digital tools.

At GoogleDG, we believe that knowledge should be accessible to everyone. Our mission is to provide readers with valuable ebooks, tutorials, and tech-related content that makes learning easier, faster, and more enjoyable.

What We Offer:

  • 📘 Free & Helpful Ebooks – covering education, technology, self-development, and more.

  • 💻 Step-by-Step Tutorials – practical guides on digital tools, apps, and software.

  • 🌐 Tech Updates & Tips – simplified information to keep you informed in the fast-changing digital world.

  • 🎯 Learning Support – resources designed to support students, professionals, and lifelong learners.

    Latest world News 

     

Our Vision

To create a digital knowledge hub where anyone, from beginners to advanced learners, can find trustworthy resources and grow their skills.

Why Choose Us?

✔ Simple explanations of complex topics
✔ 100% free access to resources
✔ Regularly updated content
✔ A community that values knowledge sharing

We are continuously working to expand our content library and provide readers with the most useful and relevant digital learning materials.

📩 If you’d like to connect, share feedback, or suggest topics, feel free to reach us through the Contact page.

Pageviews

Monday, February 6, 2017

Rexx - Web Programming

Rexx has the facility to work with web servers as well. The most common being the apache web server. In order to use Rexxw with the Apache web server, you need to first download the Rexx modules from the following link − https://sourceforge.net/projects/modrexx/?source=typ_redirect
Once done, make sure to add the mod Rexx modules to the class path.

The following lines need to be added and modified to the Apache configuration file.
The following lines need to be added to the end of the appropriate −
  • httpd.conf LoadModule list.
  • LoadModule rexx_module modules/mod_rexx.dll
The following lines should be added at the end of the http.conf file.
  • AddType application/x-httpd-rexx-script .rex .rexx
  • AddType application/x-httpd-rexx-rsp .rsp
  • Add these for REXX Server Page support
  • RexxRspCompiler “c:/Program Files/Apache Group/Apache2/bin/rspcomp.rex”
Once the above changes have been made, you need to shut down and restart your apache web server.
The above lines also allow you to have Rexx based server pages just like Java server pages. You can add the Rexx code directly to the html pages.
An example is shown below −
<p>The current date and time is 
   <?rexx 
      /* Inserting the rexx statement */ 
      say date() time() 
   ?>
</p>
When a Rexx based server page is run, the following things are carried out −
  • First a temporary file is created.
  • Then the Rexx Server compiler compiles the file into a Rexx program and places it in the temporary file.
  • The next step is to actually run the Rexx program.
Finally, the temporary file is removed.

No comments:

Post a Comment