WLS 10.3 上的 Oracle PL/SQL Web 工具包
有人有使用 Oracle PL/SQL Web 工具包开发的应用程序并将其部署在 WLS 10.3 上的经验吗?
我们有一个在 Oracle PL/SQL Web 工具包中创建的旧应用程序,目前托管在 OAS 上。客户希望我们将应用程序迁移到Weblogic服务器(10.3)。我想知道是否有人听说过任何插件或有这方面的经验?
任何朝这个方向的指示都会非常有帮助。
谢谢。 维韦克
Anyone has any experience using application developed using Oracle PL / SQL Web toolkit and deploying it on WLS 10.3 ?
We have an old application created in Oracle PL / SQL Web toolkit which is currently hosted on OAS. The client wants us to migrate the application to Weblogic server (10.3). I wanted to know if anyone has heard of any plug-in or has any experience in doing this ?
Any pointers in this direction will be really helpful.
Thanks.
Vivek
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我对此做了一些挖掘:
有两种方法可以在不重写代码的情况下完成此迁移:
Oracle 文档称有两种方法可以实现这一点: 为了运行,Oracle Application Express 必须能够访问“嵌入式 PL/SQL 网关”或“Oracle HTTP Server 和 mod_plsql”。
通过 Oracle 11g 文档网站确认 Oracle HTTP 服务器仍然兼容:
“Oracle HTTP Server:从 Oracle Database 11g 开始,Oracle HTTP Server 可在 Oracle 数据库附带的单独介质上使用。在以前的版本中,该产品作为配套 CD 组件提供。
注意:要安装 Oracle HTTP Server,请使用 Oracle Fusion Middleware Web Tier Utilities 11g (11.1.1.2.0) 介质或下载。”
http://download.oracle.com/docs /cd/B28359_01/install.111/b32002/whatsnew.htm#sthref10
设置OHS 和 mod_plsql 这是官方指南(从 OTN 下载并配置 Oracle HTTP Server)
http://download.oracle.com /docs/cd/E10513_01/doc/install.310/e10496/overview.htm#CHDCEJIE
[编辑:] 让我添加这个,PL/SQL Web Toolkit & mod_plsql 与 Weblogic 无关。该 mod 设计为在 Apache 实例上运行。 Oracle OHS 只不过是修改过的 Apache 1.3。您可以大胆尝试在普通 Apache 2.2 实例上安装 modplsql (或其开源版本 mod_owa),但风险全部由您承担...
Did some digging around this is what i found:
There are two ways of getting this migration done without re-writing the code:
Oracle Documentation says there are 2 ways of doing it: In order to run, Oracle Application Express must have access to either the “embedded PL/SQL gateway” or “Oracle HTTP Server and mod_plsql”.
With Oracle 11g documentation website confirms that Oracle HTTP server is still compatible:
“Oracle HTTP Server: Starting with Oracle Database 11g, Oracle HTTP Server is available on a separate media shipped with Oracle Database. In the previous releases, this product was available as a Companion CD component.
Note: To install Oracle HTTP Server, use the Oracle Fusion Middleware Web Tier Utilities 11g (11.1.1.2.0) media or download.”
http://download.oracle.com/docs/cd/B28359_01/install.111/b32002/whatsnew.htm#sthref10
To set up OHS and mod_plsql this is the official guide (Downloading from OTN and Configuring Oracle HTTP Server)
http://download.oracle.com/docs/cd/E10513_01/doc/install.310/e10496/overview.htm#CHDCEJIE
[EDIT:] Let me add this, PL/SQL Web Toolkit & mod_plsql has NOTHING to do with Weblogic. The mod is designed to run on an Apache Instance. Oracle OHS is nothing but modified Apache 1.3. You can dare and try to install modplsql (Or its opensource version mod_owa) on vanilla Apache 2.2 instance but the risk is all yours...