Blog dedicated to Oracle Applications (E-Business Suite) Technology; covers Apps Architecture, Administration and third party bolt-ons to Apps

Tuesday, June 9, 2009

Aliases or directories which can be accessed from 11i URL

Anand asked me the direct link to jinitiator for an instance. I launched a forms session and the window which launches the JVM had this text:

In order to access this application, you must install the Oracle JInitiator Plugin version 1.3.1.29. To install this plugin, click here to download the oajinit.exe executable. Once the download is complete, double-click the oajinit.exe file to install the plugin. You will be prompted to restart your browser when the installation is complete.

The click here was a hyperlink pointing to http://www.justanexample.com/jinitiator/oajinit.exe

To find out which directory on the server was pointing to /jinitiator I did this:

cd $IAS_CONFIG_HOME/Apache/Apache/conf
grep jinitiator *.conf

apps.conf:Alias /jinitiator/ "/gpscd140/erpapp/comn/html/"
apps.conf:Location /jinitiator/
apps.conf:Location ~ /(OA_HTML|html|jinitiator)/env.txt*
apps.conf:Location ~ "/(OA_HTML|html|jinitiator)/oam/"
apps.conf:Location ~ "/(OA_HTML|html|jinitiator)/oam/helpdoc/"
apps.conf:Location ~ "/(OA_HTML|html|jinitiator)/oam/images/"
apps.conf:Location ~ "/(OA_HTML|html|jinitiator)/oam/nonUix/launchMode/"
trusted.conf:# To add /html & /jinitiator as directories accessed by trusted nodes and remove /xsql/admin/xml.properties bug # 3851839
trusted.conf: Location ~ "/(OA_HTML|html|jinitiator)/bin/appsweb*"
url_fw.conf:#RewriteRule ^/jinitiator/oajinit\.exe$ - [L]

So then I opened apps.conf and found all the aliases:

Alias /OA_JAVA/ "$COMMON_TOP/java/"
Location /OA_JAVA/
Order allow,deny
Allow from all
/Location

Alias /OA_HTML/ "$COMMON_TOP/html/"
Location /OA_HTML/
Order allow,deny
Allow from all
/Location

Alias /OA_SECURE/ "$COMMON_TOP/secure/"
Location /OA_SECURE/
Order allow,deny
Allow from all
/Location

Alias /media/ "$COMMON_TOP/java/oracle/apps/media/"
Location /media/
ExpiresActive on
ExpiresDefault "now plus 1 day"
Order allow,deny
Allow from all
/Location

Alias /html/ "$COMMON_TOP/html/"
Location /html/
Order allow,deny
Allow from all
/Location

Alias /OA_MEDIA/ "$COMMON_TOP/java/oracle/apps/media/"
Location /OA_MEDIA/
ExpiresActive on
ExpiresDefault "now plus 1 day"
Order allow,deny
Allow from all
/Location

Alias /OA_TEMP/ "$COMMON_TOP/temp/"
Location /OA_TEMP/
Order allow,deny
Allow from all
/Location

Alias /jinitiator/ "$COMMON_TOP/html/"
Location /jinitiator/
Order allow,deny
Allow from all
/Location

Alias /dev60html/ "$ORACLE_HOME/tools/web60/html/"
Location /dev60html/
Order allow,deny
Allow from all
/Location

Alias /forms60java/ "$ORACLE_HOME/forms60/java/"
Location /forms60java/
Order allow,deny
Allow from all
/Location

Alias /dev60temp/ "$ORACLE_HOME/tools/web60/temp/"
Location /dev60temp/
Order allow,deny
Allow from all
/Location

No comments: