- Rexx 教程
- Rexx - 首页
- Rexx - 概述
- Rexx - 环境
- Rexx - 安装
- Rexx - 插件安装
- Rexx - 基本语法
- Rexx - 数据类型
- Rexx - 变量
- Rexx - 运算符
- Rexx - 数组
- Rexx - 循环
- Rexx - 决策
- Rexx - 数字
- Rexx - 字符串
- Rexx - 函数
- Rexx - 栈
- Rexx - 文件I/O
- Rexx - 文件函数
- Rexx - 子程序
- Rexx - 内置函数
- Rexx - 系统命令
- Rexx - XML
- Rexx - Regina
- Rexx - 解析
- Rexx - 信号
- Rexx - 调试
- Rexx - 错误处理
- Rexx - 面向对象
- Rexx - 可移植性
- Rexx - 扩展函数
- Rexx - 指令
- Rexx - 实现
- Rexx - Netrexx
- Rexx - Brexx
- Rexx - 数据库
- 手持设备与嵌入式
- Rexx - 性能
- Rexx - 最佳编程实践
- Rexx - 图形用户界面
- Rexx - Reginald
- Rexx - Web编程
- Rexx 有用资源
- Rexx - 快速指南
- Rexx - 有用资源
- Rexx - 讨论
Rexx - Web编程
Rexx 也可以与 Web 服务器一起工作。最常见的是 Apache Web 服务器。为了将 Rexx 与 Apache Web 服务器一起使用,您需要首先从以下链接下载 Rexx 模块:https://sourceforge.net/projects/modrexx/?source=typ_redirect
完成后,请确保将 mod Rexx 模块添加到类路径中。
需要将以下行添加到 Apache 配置文件中并进行修改。
需要将以下行添加到相应的末尾:
- httpd.conf LoadModule 列表。
- LoadModule rexx_module modules/mod_rexx.dll
应将以下行添加到 http.conf 文件的末尾。
AddType application/x-httpd-rexx-script .rex .rexx
AddType application/x-httpd-rexx-rsp .rsp
添加这些以支持 REXX 服务器页面
RexxRspCompiler “c:/Program Files/Apache Group/Apache2/bin/rspcomp.rex”
完成上述更改后,您需要关闭并重新启动 Apache Web 服务器。
以上行还允许您拥有基于 Rexx 的服务器页面,就像 Java 服务器页面一样。您可以将 Rexx 代码直接添加到 html 页面中。
下面显示了一个示例:
<p>The current date and time is <?rexx /* Inserting the rexx statement */ say date() time() ?> </p>
运行基于 Rexx 的服务器页面时,将执行以下操作:
首先创建一个临时文件。
然后,Rexx 服务器编译器将文件编译成 Rexx 程序并将其放置在临时文件中。
下一步是实际运行 Rexx 程序。
最后,删除临时文件。
广告