Description
The Analytics designer does not contain any content.
Affected Versions
8.3
Solution
- First, access the admin
web.config
file. - 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>
- HTTP:
- 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>