您如何使用Oracle Forms 10g实现WEbUtil

时间:2023-01-27 12:40:34

we are in the process of doing a Forms 10g upgrade from 6i and we cannot get the WebUtil utility to work, can anybody with first hand experience explain how you go about doing it

我们正在从6i进行Forms 10g升级,我们无法使WebUtil实用程序工作,任何有第一手经验的人都可以解释你是如何进行的

1 个解决方案

#1


  1. For any Form that has commands that are now supported by WEBUTIL, you need to add the WEBUTIL.pll to that form as a reference objects. Commands like TEXT_IO, READ_IMAGE_FILE, etc will continue to work as they are, but they are now occurring on the Application Server instead of the Client computer. If you want it to be on the AS, don't do a thing.

    对于任何具有WEBUTIL现在支持的命令的Form,您需要将WEBUTIL.pll添加到该表单作为参考对象。像TEXT_IO,READ_IMAGE_FILE等命令将继续按原样运行,但它们现在发生在Application Server而不是Client计算机上。如果你想让它在AS上,不要做任何事情。

  2. Replace the calls that you now want to use the WEBUTIL option on with the WEBUTIL name. This is simply adding CLIENT_ as prefix to the original call. IE TEXT_IO is CLIENT_TEXT_IO.

    将您现在要使用WEBUTIL选项的调用替换为WEBUTIL名称。这只是将CLIENT_添加为原始调用的前缀。 IE TEXT_IO是CLIENT_TEXT_IO。

  3. Make sure WEBUTIL is working on your server. Oracle provides a test app to verify this and will support it's use. Not to mention it is very well documented on Oracle's site.

    确保WEBUTIL正在您的服务器上运行。 Oracle提供了一个测试应用程序来验证这一点并支持它的使用。更不用说它在Oracle网站上有很好的文档记录。

  4. Compile the Forms/Reports with the new commands on the server that WEBUTIL is installed.

    使用安装了WEBUTIL的服务器上的新命令编译Forms / Reports。

#1


  1. For any Form that has commands that are now supported by WEBUTIL, you need to add the WEBUTIL.pll to that form as a reference objects. Commands like TEXT_IO, READ_IMAGE_FILE, etc will continue to work as they are, but they are now occurring on the Application Server instead of the Client computer. If you want it to be on the AS, don't do a thing.

    对于任何具有WEBUTIL现在支持的命令的Form,您需要将WEBUTIL.pll添加到该表单作为参考对象。像TEXT_IO,READ_IMAGE_FILE等命令将继续按原样运行,但它们现在发生在Application Server而不是Client计算机上。如果你想让它在AS上,不要做任何事情。

  2. Replace the calls that you now want to use the WEBUTIL option on with the WEBUTIL name. This is simply adding CLIENT_ as prefix to the original call. IE TEXT_IO is CLIENT_TEXT_IO.

    将您现在要使用WEBUTIL选项的调用替换为WEBUTIL名称。这只是将CLIENT_添加为原始调用的前缀。 IE TEXT_IO是CLIENT_TEXT_IO。

  3. Make sure WEBUTIL is working on your server. Oracle provides a test app to verify this and will support it's use. Not to mention it is very well documented on Oracle's site.

    确保WEBUTIL正在您的服务器上运行。 Oracle提供了一个测试应用程序来验证这一点并支持它的使用。更不用说它在Oracle网站上有很好的文档记录。

  4. Compile the Forms/Reports with the new commands on the server that WEBUTIL is installed.

    使用安装了WEBUTIL的服务器上的新命令编译Forms / Reports。