OHS and Forms cluster
Hello,I have the following problem with a HA implementation of Oracle Forms, my forms.conf contains the following:
<VirtualHost *:8888>ServerName dnsname.domain.comUseCanonicalName OnCookieTracking OnWLCookieName cookieName2RewriteEngine onRewriteRule ^/forms/html/(..*) /workaroundhtml/$1 [PT]AliasMatch ^/workaroundhtml/(..*) "/home/oracle/app/Middleware/asinst_1/config/FormsComponent/forms/html/$1"<Location /forms>SetHandler weblogic-handlerWebLogicCluster forms01.domain:9001DynamicServerList OFF</Location><Location /OtherLocation>SetHandler weblogic-handlerWebLogicCluster forms01.domain:9001,forms02.domain:9001</Location>
<IfModule ossl_module>SSLEngine off</IfModule></VirtualHost>
------
The use of "DynamicServerList OFF" is listed on the Oracle Forms documentation, however if I try to remove that line and add a second server to the "/forms" location my forms application start failing on login screen with FRM-93552. With only one server listed on the WeblogicCluster tag and DynamicServerList OFF the application runs fine except it creates all requests to the server listed in the configuration.
0