BIEE11之BIOffice与SSO

当我们的BIEE启用了sso之后,你会发现bioffice无法登录了,此时你需要修改bioffice的配置。

有关SSO可以参见这里:BIEE11g 集成开源CAS实现SSO .

打开bioffice.xml

通常linux路径如下:

$MV_HOME/user_projects/domains/bifoundation/servers/bi_server1/tmp/_WL_user/bioffice_11.1.1/cvsibb/war/WEB-INF/bioffice.xml

 

 

修改

  <property name="SawBaseURL">http://localhost:8704/analytics/saw.dll</property>

 <property name="SawBaseURL">http://localhost:8704/analytics-ws/saw.dll</property>

 

 

修改

  <property name="SawUseSSO" type="int">0</property>

  <property name="SawUseSSO" type="int">1</property>

 

 

最后取消如下注释

    <!--   <property name="SawWebURLforSSO">http://localhost:8704/analytics/saw.dll</property> -->

变成

     <property name="SawWebURLforSSO">http://localhost:8704/analytics/saw.dll</property>

 

 最后在em里重启bioffice应用即可,不知道怎么重启的直接重启ManagedServer也行。

你可能感兴趣的:(BIEE11之BIOffice与SSO)