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'});
});
Thank you for your patience.
Regarding the issue you have been experiencing locally - can you confirm that the reporting service is available locally when attempting to access it directly through localhost:xxxxx/ReportService1.svc ? If that is the case it may be worth reviewing whether the serviceEndpointUri defined in your scenario points to the desired location. In addition to that I would suggest ensuring that all Reporting related references are copied locally in the project.
The server configuration issues may be related to the service condifurations found in web config :
http://stackoverflow.com/questions/15264969/make-wcf-service-integratedwindowsauthentication
http://stackoverflow.com/questions/8220555/wcf-basic-authentication
I would suggest however addressing the local machine configuration first before moving on examining server behaviors.
Please do not hesitate to contact me with any updates or questions regarding this scenario.
I got it to Work local by adding a / to the of serviceEndpointUri
serviceEndpointUri: '/ReportService1.svc/ajaxAddress/'
still no luck on the server
When I run the report on the server i get this :
System.ServiceModel.ServiceActivationException
Thank you for your reply.
I would suggest reviewing the IIS configuration of your deployment server in this scenario:
http://stackoverflow.com/questions/2025700/system-servicemodel-serviceactivationexception-in-wcf-service
Additional information regarding deploying NetAdvantage Reporting apps under IIS may be found in the deployment section of our documentation at:
http://help.infragistics.com/NetAdvantage/reporting/2013.1/CLR4.0?page=Deployment_Scenarios_in_NetAdvantage_Reporting.html
Hope this helps. Please do not hesitate to contact me with any updates regarding this matter.
Please do not hesitate to contact me if you are still experiencing any issues with this scenario.
I can now run the report both local and on the server by changing the web config
<system.serviceModel><bindings><webHttpBinding><binding name="WebHttpEndpointBinding"><security mode="TransportCredentialOnly"><transport clientCredentialType="Windows"/></security></binding></webHttpBinding><customBinding><binding name="binaryHttpBinding"><binaryMessageEncoding /><httpTransport authenticationScheme="IntegratedWindowsAuthentication" /></binding></customBinding></bindings>
But I got another problem se here:
http://es.infragistics.com/community/forums/p/84426/421344.aspx#421344
I upgraded to 14.1 sr 2008, it Works now
Any news about missing print button in IE 11
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
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
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" />