Hi Everyone,
We had a virtual address (or virtual directory) on Forms 11g that's not currently working after we ported to Forms 12c.
We had an URL http://%OURSERVER%:9001/forms/html/close.htm that was working fine before and even after we've tried to include a virtual directory on Forms' 12c Enterprise Manager we were not able to make it work.
Please take under consideration that we have many legacy applications already coded that uses this path (forms/html/) and it's not a simple task to change it to another path, for example.
We've already changed the settings inside httpd.conf and forms.conf using some Oracle's documentation and some "Googleing".
We'd done as shown bellow:
Changes done to forms.conf:
========================================================================
RewriteEngine on
RewriteRule ^/forms/html/(..*) /workaroundhtml/$1 [PT]
AliasMatch ^/workaroundhtml/(..*) "/opt/oracle/Middleware/Oracle_Home/forms/html/$1"
========================================================================
Changes done to httpd.conf:
========================================================================
Alias /forms/html/ "/opt/oracle/Middleware/Oracle_Home/forms/html/"
<Directory "/opt/oracle/Middleware/Oracle_Home/forms/html/">
AllowOverride All
Require all granted
</Directory>
========================================================================
We've also already registered a Service Request but we've got no solution for our problem.
We're guessing that we're not doing the right steps during the creation of this virtual path.
Is there any documentation or "how to" on how to create virtual paths on Forms 12 ?
Any suggestions on how to solve this?
Thanks in advance!