WebService timeout after setting debug="false"

Ask a Question related to ASP.NET Web Services, Design and Development.

  1. #1

    Default WebService timeout after setting debug="false"

    Hi,
    We set debug="false" at web.config of a WebService for performance sake. We
    found that after set, the web service request will sometimes got a timeout
    exception. Would anyone tell me how long the web service request be timeout
    and how to configure the timeout limit of the webservice calls?
    Thanks advance.


    wcchan Guest

  2. Similar Questions and Discussions

    1. #39904 [NEW]: string -> boolean conversion of "\0" could give FALSE
      From: zizka at seznam dot cz Operating system: PHP version: 5.2.0 PHP Bug Type: Feature/Change Request Bug description: ...
    2. firefox: <param name="menu" value="false" /> !!!
      why isn't this working in firefox to prevent menu (i.e. print) ?? Is there something I can do?
    3. Setting "URL Behaviour" to "Dynamic" has no effect
      Greetings When I set the "URL Behaviour" of a web reference an entry is created in the "Web.config", but the value in the "Web Reference URL"...
    4. Error: "Unable to debug on server,Access is denied"
      I installed dotnet and when i try to run a web application i get the error messagebox saying "Unable to debug on server,Access is denied.Would you...
    5. how to setting Debug in "Client" Developers ?
      hi, I´m in a ASP.NET development team and only the programmer that is using the machine with the IIS gets the debug. Could anyone teach me how...
  3. #2

    Default Re: WebService timeout after setting debug="false"

    The timeout is specified in the <httpRuntime executionTimeout = "xxx"> tag
    in machine.config file. You can override this on a per-application bases in
    the application web.config file.

    Another setting that you may need to tweak is responseDeadLockInterval
    attribute of the <processModel> tag.

    Regards,
    Sami


    "wcchan" <wc_chan@softhome.net> wrote in message
    news:eN6TYCK9EHA.3828@TK2MSFTNGP09.phx.gbl...
    > Hi,
    > We set debug="false" at web.config of a WebService for performance sake.
    > We
    > found that after set, the web service request will sometimes got a timeout
    > exception. Would anyone tell me how long the web service request be
    > timeout
    > and how to configure the timeout limit of the webservice calls?
    > Thanks advance.
    >
    >

    Sami Vaaraniemi Guest

  4. #3

    Default Re: WebService timeout after setting debug="false"

    Hello wcchan,

    Try increasing your time out values in the client proxy [0]

    [0] - [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwebservicesprotocolswebclientprotocolcl asstimeouttopic.asp[/url]
    HTH
    Regards,
    Dilip Krishnan
    MCAD, MCSD.net
    dkrishnan at geniant dot com
    [url]http://www.geniant.com[/url]
    > Hi,
    > We set debug="false" at web.config of a WebService for performance
    > sake. We
    > found that after set, the web service request will sometimes got a
    > timeout
    > exception. Would anyone tell me how long the web service request be
    > timeout
    > and how to configure the timeout limit of the webservice calls?
    > Thanks advance.

    Dilip Krishnan Guest

  5. #4

    Default Re: WebService timeout after setting debug="false"

    Hello

    The default server side timeout is 90 seconds (in <httpRuntime> element in
    machine.config) You can override the value in web.config.

    The default client side is 100 seconds and you can change it as Dilip
    already mentioned.

    Best regards,
    Sherif
    "wcchan" <wc_chan@softhome.net> wrote in message
    news:eN6TYCK9EHA.3828@TK2MSFTNGP09.phx.gbl...
    > Hi,
    > We set debug="false" at web.config of a WebService for performance sake.
    We
    > found that after set, the web service request will sometimes got a timeout
    > exception. Would anyone tell me how long the web service request be
    timeout
    > and how to configure the timeout limit of the webservice calls?
    > Thanks advance.
    >
    >

    Sherif ElMetainy Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139