Hyperion / Oracle EPM 11.1.2.2 Client Install from Workspace Error

Advertisements

I was getting a 404 or 500 error when trying to install the Hyperion clients from within the Workspace. I use Oracle Application Server (OHS) to redirect traffic to HTTPS on port 19433. I do not have security setup within Weblogic, just via the HTTP server.

I found a support article that said to edit the httpd.conf file within the OHS config folder (D:\oracle\Middleware\user_projects\epmsystem1\httpConfig\ohs\config\OHS\ohs_component), but mine worked for plain http over port 19000. So I had to add the following within the virtual host section of the ssl.conf:

<VirtualHost hostname:80>
RewriteEngine On
RewriteRule ^/interop/bpmstatic/(.*) /epmstatic/bpmui/$1 [PT]
RewriteRule ^/raframework/bpmstatic/(.*) /epmstatic/bpmui/$1 [PT]
RewriteRule ^/workspace/static/(.*) /epmstatic/wspace/$1 [PT]
RewriteRule ^/workspace/bpmstatic/(.*) /epmstatic/bpmui/$1 [PT]
RewriteRule ^/HyperionPlanning/help/(.*) /epmstatic/planning/docs/$1 [PT]
RewriteRule ^/calcmgr/bpmstatic/(.*) /epmstatic/bpmui/$1 [PT]
RewriteRule ^/awb/bpmstatic/(.*) /epmstatic/bpmui/$1 [PT]
RewriteRule ^/WebAnalysis/static/(.*) /epmstatic/webanalysis/$1 [PT]
</VirtualHost>

My file actually looked like this afterwards, which I added before the last </VirtualHost> for the SSL configuration:

RewriteEngine On
RewriteRule ^/interop/bpmstatic/(.*) /epmstatic/bpmui/$1 [PT] 
RewriteRule ^/raframework/bpmstatic/(.*) /epmstatic/bpmui/$1 [PT] 
RewriteRule ^/workspace/static/(.*) /epmstatic/wspace/$1 [PT] 
RewriteRule ^/workspace/bpmstatic/(.*) /epmstatic/bpmui/$1 [PT] 
RewriteRule ^/HyperionPlanning/help/(.*) /epmstatic/planning/docs/$1 [PT] 
RewriteRule ^/calcmgr/bpmstatic/(.*) /epmstatic/bpmui/$1 [PT] 
RewriteRule ^/awb/bpmstatic/(.*) /epmstatic/bpmui/$1 [PT] 
RewriteRule ^/WebAnalysis/static/(.*) /epmstatic/webanalysis/$1 [PT]
Include ${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/epm_online_help.conf
RewriteRule ^/InsightInstaller/(.*) /raframework/zeroadmin/component/Insight/$1 [PT]
</VirtualHost>

I hope this helps somebody else.

[ad#ad-post]

Advertisements

9 Comments

Leave a Reply to robert Cancel reply

Your email address will not be published. Required fields are marked *

(adsbygoogle = window.adsbygoogle || []).push({});