I get this error when I view report : Unknown report server error.
in detail is says : Internal Server Error
when I try this : http://localhost:50376/ReportService1.svc
I get this error : There is no service behavior named 'ReportProcessorServiceBehavior'.
Line 139: </extensions> Line 140: <services> Line 141: <service behaviorConfiguration="ReportProcessorServiceBehavior" Line 142: name="Infragistics.Reports.Server.ReportProcessorService"> Line 143: <endpoint address="soapAddress" behaviorConfiguration="SilverlightFaultBehavior"
Hello Christian,
Thank you for your post. I have been looking into your issue and was wondering would it be possible for you to provide us with a sample application, that reproduces the issue. This way I would be able to further investigate the issue and provide you with further support.
Thank you in advance for the provided information.
Looking forward to hearing from you.
I found an error in my web.config, I was missing this
<behavior name="ReportProcessorServiceBehavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
the name in bahavior was empty
but now I get this error : Cannot establish a connection with the Report Server
when I run it local
When I run it on the server I get this :
The authentication schemes configured on the host ('IntegratedWindowsAuthentication') do not allow those configured on the binding 'CustomBinding' ('Anonymous'). Please ensure that the SecurityMode is set to Transport or TransportCredentialOnly. Additionally, this may be resolved by changing the authentication schemes for this application through the IIS management tool, through the ServiceHost.Authentication.AuthenticationSchemes property, in the application configuration file at the <serviceAuthenticationManager> element, by updating the ClientCredentialType property on the binding, or by adjusting the AuthenticationScheme property on the HttpTransportBindingElement.
$(document).ready(function () {var rangeParameters = [{ Key: "Dato_Fra", Value: new Date(2013, 9, 23) },{ Key: "Uge", Value: "39" }];
$("#viewer").igReportViewer({renderSettings: {definitionUri: '/Arrangement/Teknisk_Liste.igr',serviceEndpointUri: '/ReportService1.svc/ajaxAddress'},parameters: rangeParameters,width: 720,height: 520,pageFit: 'fitToWidth'});
});