Oracle表单运行表单小程序但没有响应
我们有一个使用 Oracle Forms 构建的软件。我们需要将软件部署在Linux(UBUNTU)服务器上。软件在网络浏览器中成功运行表单,问题是软件没有响应。我们可以按(单击)按钮,但软件似乎不起作用,尽管没有出现异常。
Windows服务器运行没有任何问题。我们怀疑这个问题的发生是因为LINUX/UNIX系统区分大小写?!
有什么建议吗?
We have a software build using Oracle Forms. We need to deploy the software on Linux(UBUNTU) server. The software runs the form in the web browser successfully , the problem is that the software is not responding. We can press (click) buttons but the software not seem to work although no exception appears.
The Windows server ran it without any problems. We suspect that the problem happens because of LINUX/UNIX systems are case sensitives ?!
Any suggestions ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“我们可以按(点击)按钮,但软件似乎不起作用,尽管没有出现异常。
我们怀疑问题的发生是因为 LINUX/UNIX 系统区分大小写?!”
有可能,具体取决于按钮应该执行的操作。
*nix 文件名区分大小写,因此如果代码执行 CALL_FORM('a123' )那么 windows 将执行 A123,而 *nix 则不会,
但是,如果它执行诸如抛出警报消息、显示(或取消显示)项目或将行插入数据库之类的操作,则区分大小写。不应该涉及到它。
当您重新编译 Linux 的表单源代码时是否遇到任何问题?
"We can press (click) buttons but the software not seem to work although no exception appears.
We suspect that the problem happens because of LINUX/UNIX systems are case sensitives ?!"
Possible, depending on what the buttons are supposed to do.
*nix filenames are case-sensitive, so if the code it doing a CALL_FORM('a123') then windows will execute A123 whereas *nix will not.
However if it doing something like throwing an alert message, displaying (or undisplaying) an item or inserting a row into the database, then the case-sensitivity shouldn't come into it.
Did you get any issues when you recompiled the forms source code for Linux ?