I haven't been able to get it to work, not sure why. The SL Report Viewer displays an exception when I change the security mode from default to Windows, I assume I'm doing something wrong with the bindings. IIS is set for Windows Authentication, Anonymous Login disabled. Any ideas?
Portion of web.config:
Thanks,
-Brian
Portion of web.config:
<authentication mode="Windows" /> <identity impersonate="true" /> ... <bindings> |
<basicHttpBinding> |
<binding name="basicHttpBinding_Windows"> |
<security mode="TransportCredentialOnly"> |
<transport clientCredentialType="Windows" /> |
</security> |
</binding> |
</basicHttpBinding> |
<webHttpBinding> |
<binding name="webHttpBinding_Windows"> |
<security mode="TransportCredentialOnly"> |
<transport clientCredentialType="Windows" /> |
</security> |
</binding> |
</webHttpBinding> |
</bindings> |
... |
<service name="Telerik.Reporting.Service.ReportService" behaviorConfiguration="ReportServiceBehavior"> |
<endpoint |
address="" |
binding="basicHttpBinding" |
bindingConfiguration="basicHttpBinding_Windows" |
contract="Telerik.Reporting.Service.IReportService"> |
<identity> |
<dns value="localhost" /> |
</identity> |
</endpoint> |
<endpoint |
address="resources" |
binding="webHttpBinding" |
bindingConfiguration="webHttpBinding_Windows" |
behaviorConfiguration="WebBehavior" |
contract="Telerik.Reporting.Service.IResourceService" /> |
<endpoint |
address="mex" |
binding="basicHttpBinding" |
bindingConfiguration="basicHttpBinding_Windows" |
contract="IMetadataExchange" /> |
</service> |
Thanks,
-Brian