When I run my application that calls several web services, it sends me an error mentioning the waiting time exhausted.
I have tried to adapt my app.config file in several ways but it still gives me the same error.
Any idea how I can fix this?
Here is the code of my configuration file:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b012542c561934e089" >
<section name="ExportDetails.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b012542c561934e089" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<applicationSettings>
<ExportDetails.Properties.Settings>
<setting name="ExportDetails_WebServices_list"
serializeAs="String">
<value>https://localhost/webservicetest/list.asmx</value>
</setting>
</ExportDetails.Properties.Settings>
</applicationSettings>
<system.web>
<httpRuntime executionTimeout="240" maxRequestLength="20480" />
</system.web>
</configuration>