Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

close.htm not found when exiting 11g form

BGregoryDec 6 2016 — edited Jan 12 2017

I have a development install on my Windows 8 box for 11g Development.  We are upgrading from 10g.

When I am running my application, on the Windows network, all forms in the application use this command to exit and leave the browser.

   web.show_document ('/forms/html/close.htm','_self');

I placed the close.htm file in the ORACLE_INSTANCE\config\FormsComponent\forms\html directory.

I have mucked with the forms.conf and the httpd.conf files to try and get an alias set-up so this will work.

Here's what I placed in the forms.conf in the ORACLE_INSTANCE\config\FormsComponent\forms\server directory

RewriteEngine on

RewriteRule ^/forms/html/(..*) /workaroundhtml/$1 [PT]

AliasMatch ^/workaroundhtml/(..*) "ORACLE_INSTANCE\asinst_1\config\FormsComponent\forms\html/$1"

this is what I placed in my httpd.conf in the ORACLE_HOME\ohs\conf directory

include "moduleconf/forms.conf"

Alias /forms/html/ "C:\Oracle\Middleware\asinst_1\config\FormsComponent/forms/html/"

<Directory "C:\Oracle\Middleware\asinst_1\config\FormsComponent/forms/html/">

  AllowOverride All

  Require all granted

</Directory>

What am I doing wrong?  This works in our 10g installation, and works on our Unix installation of 11g?

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 9 2017
Added on Dec 6 2016
17 comments
972 views