When a tried update my incident i´ve got follow error:
The request channel timed out while waiting for a reply after 00:02:00. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout.
where can in change this timeout, in ISS or any web.config???
Code:
public bool AlterarStatus(int StateCode, int StatusCode)
{
SetStateRequest setStateRequest = new SetStateRequest
{
EntityMoniker = new EntityReference("incident", this.ID.Value),
State = 5;
Status = 0;
};
SetStateResponse stateSet = (SetStateResponse)RepositoryService.Ocorrencia.Execute(setStateRequest);
}
Incident has 960000 registers.
regards,
Mario