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
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
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
add a comment |
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
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
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
add a comment |
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
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
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
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
c# sql-server wcf iis-7 connection-timeout
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
add a comment |
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
add a comment |
2 Answers
2
active
oldest
votes
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.
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
add a comment |
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.
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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