Interviewer And Interviewee Guide

WCF SDK Interview Question:

How to set the timeout property for the WCF Service client call?

Submitted by: Administrator
The timeout property can be set for the WCF Service client call using binding tag.
<client>

<endpoint
...
binding = "wsHttpBinding"
bindingConfiguration = "LongTimeout"
...
/>
</client>
<bindings>
<wsHttpBinding>
<binding name = "LongTimeout" sendTimeout = "00:04:00"/>

</wsHttpBinding>
</bindings>
If no timeout has been specified, the default is considered as 1 minute.
Submitted by: Administrator

Read Online WCF SDK Job Interview Questions And Answers
Copyright 2007-2024 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.