Pranay Deep
Pranay Deep

Reputation: 1401

WCF: The sequence has been terminated by the remote endpoint.

I am getting this error, "The sequence has been terminated by the remote endpoint. The inactivity timeout of (00:10:00) has been exceeded. The reliable session was faulted."

Upvotes: 0

Views: 1599

Answers (1)

kaushik
kaushik

Reputation: 16

it can be generated if service takes too much time to execute at least more than 10 minutes. if you think reliable session is necessary for your application, you can increase the inactivity time under reliable session section under binding configuration section.

other wise you should turn off that section by marking Enabled property to false under ReliableSession properties under binding configuration section. but you should check why your service takes so much time.

Hope it will help you.

Upvotes: 0

Related Questions