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'});
});
I was to fast, I still cant print
a dialog come up and say printing but nothing happens.
In Windows 8.1 IE11 the print button is gone
I have installed the newest Adobe Reader
I found the problem I was missing a handler definition under system.webServer in the config file
<add name="ReportResourceHandler" path="*.igrResource" verb="*" type="Infragistics.Reports.Server.ResourcesHandler, InfragisticsWPF4.Reports.Server.v13.1, Version=13.1.20131.1007, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" />
I still have problem with IE 11
The problem above is in a WebForm
I have another problem viewing the same report in MVC 4 project
When viewing the report I get this error
System.NullReferenceException: Object reference not set to an instance of an object. at Infragistics.Reports.Engine.ServiceModelMefDiscoverer.Initialize(IServiceModelManager serviceModel) at Infragistics.Reports.Engine.ServiceModelBuilder.Setup(IServiceModelConfiguration configuration) at Infragistics.Reports.Server.ReportProcessorService.ServiceModelFacade.CreateServiceModel(Uri serverUri, ReportSource reportSource, IDictionary`2 settings) at Infragistics.Reports.Server.ReportProcessorService.ServiceModelFacade..ctor(Uri serverUri, ReportSource reportSource, IDictionary`2 settings) at Infragistics.Reports.Server.ReportProcessorService.CreateSessionForReport(ReportSource reportSource, IDictionary`2 settings)
I only get this error when the project is deployed to the webserver
I get no error when run local
Found the problem, was missing 3 dll
InfragisticsWPF4.Reports.Controls.Common.v13.1.dllInfragisticsWPF4.Reports.Controls.Charts.XamDataChart.v13.1.dllInfragisticsWPF4.Reports.Controls.DataVisualization.v13.1.dll
Any news about missing print button in IE 11
I upgraded to 14.1 sr 2008, it Works now