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?