WeLink the Single Sign-on Configuration

<< Click to Display Table of Contents >>

Current:  System Management  > WeLink Configuration 

WeLink the Single Sign-on Configuration

Previous pageReturn to chapter overviewNext page

The steps to configure a single sign-on are as follows:

 

1.Configure Servlet. Open Yonghong/tomcat/webapps/bi/WEB-INF/web.xml (Configure the sso interceptor. Sso logic is put before intercepting the requests.)

The following content shall be added:

<!-- sso filter start -->

<filter>                        

<filter-name>welinkssofilter</filter-name>                        

<filter-class>g5.sv.standardsso.WelinkSSOFilter</filter-class>                        

</filter>                        

<filter-mapping>                        

<filter-name>welinkssofilter</filter-name>                        

<url-pattern>/*</url-pattern>                        

</filter-mapping>                        

<!-- sso filter end --> 

 

2.Restart the product after configuration.