This is a migrated thread and some comments may be shown as answers.

Report viewer show timeout after 30 sec..

0 Answers 84 Views
Report Designer (standalone)
This is a migrated thread and some comments may be shown as answers.
Gaurav
Top achievements
Rank 1
Gaurav asked on 17 Oct 2013, 04:04 AM
Hii..
My problem is much same like in This link.
Every time my report shows me time out exception .
 I also Implements IReportServiceClientFactory in my reportviwer's class and provide custum bindin like this :_\

    Function Create(ByVal remoteAddress As Uri) As ReportServiceClient Implements IReportServiceClientFactory.Create

        Dim binding = New BasicHttpBinding()
        binding.MaxBufferSize = Integer.MaxValue
        binding.MaxReceivedMessageSize = Integer.MaxValue
        binding.ReceiveTimeout = New TimeSpan(0, 30, 0)
        binding.SendTimeout = New TimeSpan(0, 30, 0)
        binding.OpenTimeout = New TimeSpan(0, 30, 0)
        binding.TransferMode = TransferMode.StreamedResponse
        Dim endpointAddress As New EndpointAddress(remoteAddress)
        Return New ReportServiceClient(binding, endpointAddress)

    End Function

But nothing seems to be working.... Now i am help less......

One more thing... i am using telerik standalone tool to develop reports so ther is no possibility of needdatasource   i guess ??

No answers yet. Maybe you can help?

Tags
Report Designer (standalone)
Asked by
Gaurav
Top achievements
Rank 1
Share this question
or