Getting timeout error - increase the send timeout value on binding2019 Community Moderator ElectionThe request channel timed out while waiting for a replyGet int value from enum in C#WCF Service , how to increase the timeout?Timeout Question about Invoking a Remote WCF ServiceHelp with deciphering WCF timeout errorsThe request Timed Out ErrorIncreasing timeout for WCF web service in c#WCF Service , Request or increase the SendTimeout value on the BindingWCF - Channel time out when running app from different machineWCF Timeout ErrorC# WCF Channel Timeout on subsequent calls

Under what conditions can the right to remain silent be revoked in the USA?

Create chunks from an array

How should I solve this integral with changing parameters?

What can I do if someone tampers with my SSH public key?

Why does Central Limit Theorem break down in my simulation?

Writing text next to a table

Can one live in the U.S. and not use a credit card?

Is there a math expression equivalent to the conditional ternary operator?

Smooth vector fields on a surface modulo diffeomorphisms

Trocar background-image com delay via jQuery

Do Cubics always have one real root?

What should I do when a paper is published similar to my PhD thesis without citation?

Why restrict private health insurance?

Has a sovereign Communist government ever run, and conceded loss, on a fair election?

Giving a career talk in my old university, how prominently should I tell students my salary?

What does the Digital Threat scope actually do?

School performs periodic password audits. Is my password compromised?

Converting from "matrix" data into "coordinate" data

Was it really inappropriate to write a pull request for the company I interviewed with?

(Codewars) Linked Lists-Sorted Insert

If sound is a longitudinal wave, why can we hear it if our ears aren't aligned with the propagation direction?

When an outsider describes family relationships, which point of view are they using?

Is divide-by-zero a security vulnerability?

Either of .... (Plural/Singular)



Getting timeout error - increase the send timeout value on binding



2019 Community Moderator ElectionThe request channel timed out while waiting for a replyGet int value from enum in C#WCF Service , how to increase the timeout?Timeout Question about Invoking a Remote WCF ServiceHelp with deciphering WCF timeout errorsThe request Timed Out ErrorIncreasing timeout for WCF web service in c#WCF Service , Request or increase the SendTimeout value on the BindingWCF - Channel time out when running app from different machineWCF Timeout ErrorC# WCF Channel Timeout on subsequent calls










0















WCF service returns timeout error as below.



The request channel timed out while waiting for a reply after XX:XX:XX increase the send timeout value on binding. The time allotted to this operation may have been a portion of a longer timeout



enter image description here



But I'm getting this error within 1min while browsing my website. And I have mentioned timeout value set to 00:10:00 (10min) in binding configuration (web.config).



Same service is working in my local system but when I hosted in server then I'm getting this issue.
As I observed, SQL query takes around 1 min: 20sec time to execute in server.



Do I need to update any where those send timeout value?



Can you please suggest me on this.

Thanks.










share|improve this question

















  • 1





    That's on the client side (not the service side). It's the send timeout on the <binding/> element of the binding associated with your client endpoint. The whole roundtrip needs to complete within the send timeout time.

    – Flydog57
    Mar 6 at 23:25











  • @Flydog57 is right, Flydog go ahead and write the comment as Answer!

    – Jesus Salas
    Mar 7 at 0:12











  • You asked at a fortuitous time. I spent the day trying to track down a WCF timeout issue (I'm pretty sure my issue is in a proxy). But, in the process, I've read up and tested each of the various timeouts. I'll write it up when i get near a computer

    – Flydog57
    Mar 7 at 2:38











  • I've checked client side binding timed properties. All are having 10min. closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00"

    – Jagadeesh
    2 days ago















0















WCF service returns timeout error as below.



The request channel timed out while waiting for a reply after XX:XX:XX increase the send timeout value on binding. The time allotted to this operation may have been a portion of a longer timeout



enter image description here



But I'm getting this error within 1min while browsing my website. And I have mentioned timeout value set to 00:10:00 (10min) in binding configuration (web.config).



Same service is working in my local system but when I hosted in server then I'm getting this issue.
As I observed, SQL query takes around 1 min: 20sec time to execute in server.



Do I need to update any where those send timeout value?



Can you please suggest me on this.

Thanks.










share|improve this question

















  • 1





    That's on the client side (not the service side). It's the send timeout on the <binding/> element of the binding associated with your client endpoint. The whole roundtrip needs to complete within the send timeout time.

    – Flydog57
    Mar 6 at 23:25











  • @Flydog57 is right, Flydog go ahead and write the comment as Answer!

    – Jesus Salas
    Mar 7 at 0:12











  • You asked at a fortuitous time. I spent the day trying to track down a WCF timeout issue (I'm pretty sure my issue is in a proxy). But, in the process, I've read up and tested each of the various timeouts. I'll write it up when i get near a computer

    – Flydog57
    Mar 7 at 2:38











  • I've checked client side binding timed properties. All are having 10min. closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00"

    – Jagadeesh
    2 days ago













0












0








0








WCF service returns timeout error as below.



The request channel timed out while waiting for a reply after XX:XX:XX increase the send timeout value on binding. The time allotted to this operation may have been a portion of a longer timeout



enter image description here



But I'm getting this error within 1min while browsing my website. And I have mentioned timeout value set to 00:10:00 (10min) in binding configuration (web.config).



Same service is working in my local system but when I hosted in server then I'm getting this issue.
As I observed, SQL query takes around 1 min: 20sec time to execute in server.



Do I need to update any where those send timeout value?



Can you please suggest me on this.

Thanks.










share|improve this question














WCF service returns timeout error as below.



The request channel timed out while waiting for a reply after XX:XX:XX increase the send timeout value on binding. The time allotted to this operation may have been a portion of a longer timeout



enter image description here



But I'm getting this error within 1min while browsing my website. And I have mentioned timeout value set to 00:10:00 (10min) in binding configuration (web.config).



Same service is working in my local system but when I hosted in server then I'm getting this issue.
As I observed, SQL query takes around 1 min: 20sec time to execute in server.



Do I need to update any where those send timeout value?



Can you please suggest me on this.

Thanks.







c# sql-server wcf iis-7 connection-timeout






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 6 at 23:13









JagadeeshJagadeesh

54851325




54851325







  • 1





    That's on the client side (not the service side). It's the send timeout on the <binding/> element of the binding associated with your client endpoint. The whole roundtrip needs to complete within the send timeout time.

    – Flydog57
    Mar 6 at 23:25











  • @Flydog57 is right, Flydog go ahead and write the comment as Answer!

    – Jesus Salas
    Mar 7 at 0:12











  • You asked at a fortuitous time. I spent the day trying to track down a WCF timeout issue (I'm pretty sure my issue is in a proxy). But, in the process, I've read up and tested each of the various timeouts. I'll write it up when i get near a computer

    – Flydog57
    Mar 7 at 2:38











  • I've checked client side binding timed properties. All are having 10min. closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00"

    – Jagadeesh
    2 days ago












  • 1





    That's on the client side (not the service side). It's the send timeout on the <binding/> element of the binding associated with your client endpoint. The whole roundtrip needs to complete within the send timeout time.

    – Flydog57
    Mar 6 at 23:25











  • @Flydog57 is right, Flydog go ahead and write the comment as Answer!

    – Jesus Salas
    Mar 7 at 0:12











  • You asked at a fortuitous time. I spent the day trying to track down a WCF timeout issue (I'm pretty sure my issue is in a proxy). But, in the process, I've read up and tested each of the various timeouts. I'll write it up when i get near a computer

    – Flydog57
    Mar 7 at 2:38











  • I've checked client side binding timed properties. All are having 10min. closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00"

    – Jagadeesh
    2 days ago







1




1





That's on the client side (not the service side). It's the send timeout on the <binding/> element of the binding associated with your client endpoint. The whole roundtrip needs to complete within the send timeout time.

– Flydog57
Mar 6 at 23:25





That's on the client side (not the service side). It's the send timeout on the <binding/> element of the binding associated with your client endpoint. The whole roundtrip needs to complete within the send timeout time.

– Flydog57
Mar 6 at 23:25













@Flydog57 is right, Flydog go ahead and write the comment as Answer!

– Jesus Salas
Mar 7 at 0:12





@Flydog57 is right, Flydog go ahead and write the comment as Answer!

– Jesus Salas
Mar 7 at 0:12













You asked at a fortuitous time. I spent the day trying to track down a WCF timeout issue (I'm pretty sure my issue is in a proxy). But, in the process, I've read up and tested each of the various timeouts. I'll write it up when i get near a computer

– Flydog57
Mar 7 at 2:38





You asked at a fortuitous time. I spent the day trying to track down a WCF timeout issue (I'm pretty sure my issue is in a proxy). But, in the process, I've read up and tested each of the various timeouts. I'll write it up when i get near a computer

– Flydog57
Mar 7 at 2:38













I've checked client side binding timed properties. All are having 10min. closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00"

– Jagadeesh
2 days ago





I've checked client side binding timed properties. All are having 10min. closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00"

– Jagadeesh
2 days ago












2 Answers
2






active

oldest

votes


















0














That error occurs because the send timeout on the client side (not the service side) is timing out. The send timeout is configured on the <binding/> element of the binding associate with your client endpoint.



The entire roundtrip (from client to server, service-side processing and return trip back to the client) must be completed before the send timeout expires.






share|improve this answer























  • Client side i have sendtimeout with 10min. And other times also i have mentioned like -> closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00"

    – Jagadeesh
    2 days ago












  • @Jagadeesh: The other thing you might consider is the "executionTimeout" attribute on <httpRuntime> under <system.web> in your config file, but this blogs.msdn.microsoft.com/wenlong/2008/03/10/… says it's not relevant any more. If I were you, I'd write a log entry at the beginning and end of every service implementation, and at every call site on the client side. That message you are getting is the exact message you would get when your 10 min send timeout expires.

    – Flydog57
    2 days ago


















0














This is usually caused not by a WCF connection timeout, but by a slow response caused by other issues, such as Binding configuration issues on the server and client side, a database connection failure. Try to check the database connection string and whether the WCF running account has permission to connect to the database.

Considering the following config.



<binding name="http" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" sendTimeout="00:10:00" receiveTimeout="00:10:00">
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" />
</binding>
</webHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior>
<dataContractSerializer maxItemsInObjectGraph="2147483647"/>
<serviceMetadata httpsGetEnabled="true" httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>


Feel free to let me know if the problem still exists.






share|improve this answer

























  • I have web config file in Root folder, we are using same web config in all areas. I am able to launch the application and get data from database. If service is returns less no of records(like 1,2 records) then its working properly. But if i have 100 records then do action then SQL execution time takes 1min.20 sec. then i am getting this error.

    – Jagadeesh
    2 days ago











  • I have cross verified in IIS Connection time out also. Its default is 120Sec. I have updated to 300sec. Now also i am getting same issue.

    – Jagadeesh
    2 days ago











  • Please try the above configuration.

    – Abraham Qian
    2 days ago











  • I have same config settings. Actually, recently we are moved to AWS-EC2 instance. EC2 is having IIS 10 but my local/old server is having IIS 8. So, Do we need to changes any settings in IIS level? Because same source code+config binding settings is working in my local and my old servers.

    – Jagadeesh
    2 days ago












  • check the related discussion, wish it is useful to you.stackoverflow.com/questions/11215513/…

    – Abraham Qian
    2 days ago










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55033671%2fgetting-timeout-error-increase-the-send-timeout-value-on-binding%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














That error occurs because the send timeout on the client side (not the service side) is timing out. The send timeout is configured on the <binding/> element of the binding associate with your client endpoint.



The entire roundtrip (from client to server, service-side processing and return trip back to the client) must be completed before the send timeout expires.






share|improve this answer























  • Client side i have sendtimeout with 10min. And other times also i have mentioned like -> closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00"

    – Jagadeesh
    2 days ago












  • @Jagadeesh: The other thing you might consider is the "executionTimeout" attribute on <httpRuntime> under <system.web> in your config file, but this blogs.msdn.microsoft.com/wenlong/2008/03/10/… says it's not relevant any more. If I were you, I'd write a log entry at the beginning and end of every service implementation, and at every call site on the client side. That message you are getting is the exact message you would get when your 10 min send timeout expires.

    – Flydog57
    2 days ago















0














That error occurs because the send timeout on the client side (not the service side) is timing out. The send timeout is configured on the <binding/> element of the binding associate with your client endpoint.



The entire roundtrip (from client to server, service-side processing and return trip back to the client) must be completed before the send timeout expires.






share|improve this answer























  • Client side i have sendtimeout with 10min. And other times also i have mentioned like -> closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00"

    – Jagadeesh
    2 days ago












  • @Jagadeesh: The other thing you might consider is the "executionTimeout" attribute on <httpRuntime> under <system.web> in your config file, but this blogs.msdn.microsoft.com/wenlong/2008/03/10/… says it's not relevant any more. If I were you, I'd write a log entry at the beginning and end of every service implementation, and at every call site on the client side. That message you are getting is the exact message you would get when your 10 min send timeout expires.

    – Flydog57
    2 days ago













0












0








0







That error occurs because the send timeout on the client side (not the service side) is timing out. The send timeout is configured on the <binding/> element of the binding associate with your client endpoint.



The entire roundtrip (from client to server, service-side processing and return trip back to the client) must be completed before the send timeout expires.






share|improve this answer













That error occurs because the send timeout on the client side (not the service side) is timing out. The send timeout is configured on the <binding/> element of the binding associate with your client endpoint.



The entire roundtrip (from client to server, service-side processing and return trip back to the client) must be completed before the send timeout expires.







share|improve this answer












share|improve this answer



share|improve this answer










answered 2 days ago









Flydog57Flydog57

2,2412611




2,2412611












  • Client side i have sendtimeout with 10min. And other times also i have mentioned like -> closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00"

    – Jagadeesh
    2 days ago












  • @Jagadeesh: The other thing you might consider is the "executionTimeout" attribute on <httpRuntime> under <system.web> in your config file, but this blogs.msdn.microsoft.com/wenlong/2008/03/10/… says it's not relevant any more. If I were you, I'd write a log entry at the beginning and end of every service implementation, and at every call site on the client side. That message you are getting is the exact message you would get when your 10 min send timeout expires.

    – Flydog57
    2 days ago

















  • Client side i have sendtimeout with 10min. And other times also i have mentioned like -> closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00"

    – Jagadeesh
    2 days ago












  • @Jagadeesh: The other thing you might consider is the "executionTimeout" attribute on <httpRuntime> under <system.web> in your config file, but this blogs.msdn.microsoft.com/wenlong/2008/03/10/… says it's not relevant any more. If I were you, I'd write a log entry at the beginning and end of every service implementation, and at every call site on the client side. That message you are getting is the exact message you would get when your 10 min send timeout expires.

    – Flydog57
    2 days ago
















Client side i have sendtimeout with 10min. And other times also i have mentioned like -> closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00"

– Jagadeesh
2 days ago






Client side i have sendtimeout with 10min. And other times also i have mentioned like -> closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00"

– Jagadeesh
2 days ago














@Jagadeesh: The other thing you might consider is the "executionTimeout" attribute on <httpRuntime> under <system.web> in your config file, but this blogs.msdn.microsoft.com/wenlong/2008/03/10/… says it's not relevant any more. If I were you, I'd write a log entry at the beginning and end of every service implementation, and at every call site on the client side. That message you are getting is the exact message you would get when your 10 min send timeout expires.

– Flydog57
2 days ago





@Jagadeesh: The other thing you might consider is the "executionTimeout" attribute on <httpRuntime> under <system.web> in your config file, but this blogs.msdn.microsoft.com/wenlong/2008/03/10/… says it's not relevant any more. If I were you, I'd write a log entry at the beginning and end of every service implementation, and at every call site on the client side. That message you are getting is the exact message you would get when your 10 min send timeout expires.

– Flydog57
2 days ago













0














This is usually caused not by a WCF connection timeout, but by a slow response caused by other issues, such as Binding configuration issues on the server and client side, a database connection failure. Try to check the database connection string and whether the WCF running account has permission to connect to the database.

Considering the following config.



<binding name="http" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" sendTimeout="00:10:00" receiveTimeout="00:10:00">
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" />
</binding>
</webHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior>
<dataContractSerializer maxItemsInObjectGraph="2147483647"/>
<serviceMetadata httpsGetEnabled="true" httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>


Feel free to let me know if the problem still exists.






share|improve this answer

























  • I have web config file in Root folder, we are using same web config in all areas. I am able to launch the application and get data from database. If service is returns less no of records(like 1,2 records) then its working properly. But if i have 100 records then do action then SQL execution time takes 1min.20 sec. then i am getting this error.

    – Jagadeesh
    2 days ago











  • I have cross verified in IIS Connection time out also. Its default is 120Sec. I have updated to 300sec. Now also i am getting same issue.

    – Jagadeesh
    2 days ago











  • Please try the above configuration.

    – Abraham Qian
    2 days ago











  • I have same config settings. Actually, recently we are moved to AWS-EC2 instance. EC2 is having IIS 10 but my local/old server is having IIS 8. So, Do we need to changes any settings in IIS level? Because same source code+config binding settings is working in my local and my old servers.

    – Jagadeesh
    2 days ago












  • check the related discussion, wish it is useful to you.stackoverflow.com/questions/11215513/…

    – Abraham Qian
    2 days ago















0














This is usually caused not by a WCF connection timeout, but by a slow response caused by other issues, such as Binding configuration issues on the server and client side, a database connection failure. Try to check the database connection string and whether the WCF running account has permission to connect to the database.

Considering the following config.



<binding name="http" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" sendTimeout="00:10:00" receiveTimeout="00:10:00">
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" />
</binding>
</webHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior>
<dataContractSerializer maxItemsInObjectGraph="2147483647"/>
<serviceMetadata httpsGetEnabled="true" httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>


Feel free to let me know if the problem still exists.






share|improve this answer

























  • I have web config file in Root folder, we are using same web config in all areas. I am able to launch the application and get data from database. If service is returns less no of records(like 1,2 records) then its working properly. But if i have 100 records then do action then SQL execution time takes 1min.20 sec. then i am getting this error.

    – Jagadeesh
    2 days ago











  • I have cross verified in IIS Connection time out also. Its default is 120Sec. I have updated to 300sec. Now also i am getting same issue.

    – Jagadeesh
    2 days ago











  • Please try the above configuration.

    – Abraham Qian
    2 days ago











  • I have same config settings. Actually, recently we are moved to AWS-EC2 instance. EC2 is having IIS 10 but my local/old server is having IIS 8. So, Do we need to changes any settings in IIS level? Because same source code+config binding settings is working in my local and my old servers.

    – Jagadeesh
    2 days ago












  • check the related discussion, wish it is useful to you.stackoverflow.com/questions/11215513/…

    – Abraham Qian
    2 days ago













0












0








0







This is usually caused not by a WCF connection timeout, but by a slow response caused by other issues, such as Binding configuration issues on the server and client side, a database connection failure. Try to check the database connection string and whether the WCF running account has permission to connect to the database.

Considering the following config.



<binding name="http" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" sendTimeout="00:10:00" receiveTimeout="00:10:00">
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" />
</binding>
</webHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior>
<dataContractSerializer maxItemsInObjectGraph="2147483647"/>
<serviceMetadata httpsGetEnabled="true" httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>


Feel free to let me know if the problem still exists.






share|improve this answer















This is usually caused not by a WCF connection timeout, but by a slow response caused by other issues, such as Binding configuration issues on the server and client side, a database connection failure. Try to check the database connection string and whether the WCF running account has permission to connect to the database.

Considering the following config.



<binding name="http" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" sendTimeout="00:10:00" receiveTimeout="00:10:00">
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" />
</binding>
</webHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior>
<dataContractSerializer maxItemsInObjectGraph="2147483647"/>
<serviceMetadata httpsGetEnabled="true" httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>


Feel free to let me know if the problem still exists.







share|improve this answer














share|improve this answer



share|improve this answer








edited 2 days ago

























answered 2 days ago









Abraham QianAbraham Qian

881117




881117












  • I have web config file in Root folder, we are using same web config in all areas. I am able to launch the application and get data from database. If service is returns less no of records(like 1,2 records) then its working properly. But if i have 100 records then do action then SQL execution time takes 1min.20 sec. then i am getting this error.

    – Jagadeesh
    2 days ago











  • I have cross verified in IIS Connection time out also. Its default is 120Sec. I have updated to 300sec. Now also i am getting same issue.

    – Jagadeesh
    2 days ago











  • Please try the above configuration.

    – Abraham Qian
    2 days ago











  • I have same config settings. Actually, recently we are moved to AWS-EC2 instance. EC2 is having IIS 10 but my local/old server is having IIS 8. So, Do we need to changes any settings in IIS level? Because same source code+config binding settings is working in my local and my old servers.

    – Jagadeesh
    2 days ago












  • check the related discussion, wish it is useful to you.stackoverflow.com/questions/11215513/…

    – Abraham Qian
    2 days ago

















  • I have web config file in Root folder, we are using same web config in all areas. I am able to launch the application and get data from database. If service is returns less no of records(like 1,2 records) then its working properly. But if i have 100 records then do action then SQL execution time takes 1min.20 sec. then i am getting this error.

    – Jagadeesh
    2 days ago











  • I have cross verified in IIS Connection time out also. Its default is 120Sec. I have updated to 300sec. Now also i am getting same issue.

    – Jagadeesh
    2 days ago











  • Please try the above configuration.

    – Abraham Qian
    2 days ago











  • I have same config settings. Actually, recently we are moved to AWS-EC2 instance. EC2 is having IIS 10 but my local/old server is having IIS 8. So, Do we need to changes any settings in IIS level? Because same source code+config binding settings is working in my local and my old servers.

    – Jagadeesh
    2 days ago












  • check the related discussion, wish it is useful to you.stackoverflow.com/questions/11215513/…

    – Abraham Qian
    2 days ago
















I have web config file in Root folder, we are using same web config in all areas. I am able to launch the application and get data from database. If service is returns less no of records(like 1,2 records) then its working properly. But if i have 100 records then do action then SQL execution time takes 1min.20 sec. then i am getting this error.

– Jagadeesh
2 days ago





I have web config file in Root folder, we are using same web config in all areas. I am able to launch the application and get data from database. If service is returns less no of records(like 1,2 records) then its working properly. But if i have 100 records then do action then SQL execution time takes 1min.20 sec. then i am getting this error.

– Jagadeesh
2 days ago













I have cross verified in IIS Connection time out also. Its default is 120Sec. I have updated to 300sec. Now also i am getting same issue.

– Jagadeesh
2 days ago





I have cross verified in IIS Connection time out also. Its default is 120Sec. I have updated to 300sec. Now also i am getting same issue.

– Jagadeesh
2 days ago













Please try the above configuration.

– Abraham Qian
2 days ago





Please try the above configuration.

– Abraham Qian
2 days ago













I have same config settings. Actually, recently we are moved to AWS-EC2 instance. EC2 is having IIS 10 but my local/old server is having IIS 8. So, Do we need to changes any settings in IIS level? Because same source code+config binding settings is working in my local and my old servers.

– Jagadeesh
2 days ago






I have same config settings. Actually, recently we are moved to AWS-EC2 instance. EC2 is having IIS 10 but my local/old server is having IIS 8. So, Do we need to changes any settings in IIS level? Because same source code+config binding settings is working in my local and my old servers.

– Jagadeesh
2 days ago














check the related discussion, wish it is useful to you.stackoverflow.com/questions/11215513/…

– Abraham Qian
2 days ago





check the related discussion, wish it is useful to you.stackoverflow.com/questions/11215513/…

– Abraham Qian
2 days ago

















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55033671%2fgetting-timeout-error-increase-the-send-timeout-value-on-binding%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived