Waiting Time for WebService Call Return

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

  1. #1

    Default Waiting Time for WebService Call Return

    hi all,
    I have a Client Calling a WebService.
    In the WebService there is a While Loop which runs for 2 min. After
    that iam returning some value to the client. This does not work
    If the time the While Loop runs is reduced to 1 min or so. It works.

    My Question is: Is there a time till which the client waits for the
    Webservice to return or something. Shuld i do any setting in the IIS
    Server for this.

    Please clarify.

    Thanks
    sendhil
    sendhil Guest

  2. Similar Questions and Discussions

    1. Return value from ExternalInterface.call method
      Hi people, I can not achieve to get any return value from javascript other than null. In th HTML container I have a functions like this: ...
    2. How to bind WS call return to <mx:Label>
      I can't figure out how to bind data returned from a Web Service call as an array data type to <mx:Label> fields. My web service call returns an...
    3. Call to webservice doesn't wait to return
      Hi All, I have created a ASP.NET web service with a web method. This method retrives data from SQL Server and returns it as an XML string. Now...
    4. Call Waiting ID Software?
      Hi all, I recently picked up an old Command HotCall box at a hamfest for $15. For those of you who don't know, it's a little box that plugs into...
    5. Return XML From Webservice
      return an XmlNode "Dave" <davet65109@hotmail.com> wrote in message news:01f101c33a82$29b58fb0$a401280a@phx.gbl...
  3. #2

    Default Re: Waiting Time for WebService Call Return

    I got the solution for the problem.
    For a webrequest the default timeout period is 100 seconds. If we have
    to make it wait for infinite time, we have to specify
    Timeout.Infinite

    Thanks
    senhdil


    [email]report_1979@yahoo.com[/email] (sendhil) wrote in message news:<97ce4388.0312061708.23b26116@posting.google. com>...
    > hi all,
    > I have a Client Calling a WebService.
    > In the WebService there is a While Loop which runs for 2 min. After
    > that iam returning some value to the client. This does not work
    > If the time the While Loop runs is reduced to 1 min or so. It works.
    >
    > My Question is: Is there a time till which the client waits for the
    > Webservice to return or something. Shuld i do any setting in the IIS
    > Server for this.
    >
    > Please clarify.
    >
    > Thanks
    > sendhil
    sendhil 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