Genpact Cora Knowledge Center

Support

Analytics Designer Load is Empty

Description

The Analytics designer does not contain any content.

Affected Versions

8.3

Solution

  1. First, access the admin web.config file.
  2. Add the <transport>...</transport> section. The security mode value is different for HTTP and HTTPS.
    • HTTP: <security mode="TransportCredentialOnly">
    • HTTPS: <security mode="Transport">
      skip="true"><binding>
      	
      <!--<wsHttpBinding>
      	
      <binding name="jobManagementServiceWsHttpBinding">
      	
      <readerQuotas maxStringContentLength='2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" />
      	
      </binding>
      	
      </wsHttpBinding>-->
      	
      <webHttpBinding>
      	
      <binding name ="webHttpBinding">
      	
      <security mode="TransportCredentialOnly">
      	
      <transport clientCredentialType="Windows"></transport>
      	
      </security>
      	
      </binding?
      	
      </webHttpBinding>
      	
      </bindings>
  3. Add the following, additional <location>...</location> section under the <configuration> section.
    <configuration>
    ......
    <location path = "Web/UI/Analytics/DataStreamDesignService.svc">
    	
    <sequence.engine>
    	
    <authentication enabled="false" impersonate="false" />
    	
    </sequence.engine>
    	
    </location>
    ......
    </configuration>