c# - .NET web service with many requests -


i have .net web-service in server. web-service gets lots of requests per day. there android project allot of people using , exchange data ws. 20 requests per minute.

recently im getting allot of timeouts server , cant find out reason. did write web.config wrong? or else?

here system.web on config:

    <system.web>     <compilation debug="true" targetframework="4.0">         <assemblies>             <add assembly="system.data.linq, version=4.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089"/></assemblies></compilation> <httpruntime executiontimeout="9000" maxrequestlength="500000"/>     <webservices>         <protocols>             <add name="httpsoap12"/>             <add name="httpsoap"/>             <add name="httpget"/>             <add name="httppost"/>         </protocols>     </webservices> </system.web> 

what can improve? can set max requests or max bandwidth?

you need set debug="false" debug="true" forces web server run single-threaded


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -