When I spawn a lightweight process in ASP.NET Does it time out??

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

  1. #1

    Default When I spawn a lightweight process in ASP.NET Does it time out??

    Hello

    When I spawn a lightweight process on a new Thread and return immediately to
    the Client
    what happens if the lightweight process takes an hour to finish?
    Under what context is the process running
    Is it running under the current Session.
    How do I insure that It will run until it is completed

    Please point me to an artical
    or give me some general Ideas

    Thanks you



    MS News Guest

  2. Similar Questions and Discussions

    1. How to use lightweight session in ColdFusion?
      How to use lightweight session in ColdFusion?
    2. Spawn threads from webservice
      I have a webservice that has to make a heavy calculation. We want to use all the processors the machine has. We have built a multithreaded lib...
    3. Way to automatically recycle aspnet_wp work process when close to 100% CPU for certain period of time?
      I have a server setup that is dedicate to providing a "proxy" by exposing a web service that calls methods in a 3rd party ActiveX control and then...
    4. Best way to process a string 1 char at a time
      John Heim wrote: for ($i = 0; $i < strlen($str); $i++) { strFunction($str{$i}); } is one way.
    5. How can a process consume kernel CPU time without making system calls?
      I'm trying to track down what is going on with a particular rogue application process on a customer site running AIX 4.3.3. Under defined...
  3. #2

    Default Re: When I spawn a lightweight process in ASP.NET Does it time out??

    Take a look at delegation and/or making a asynchronous calls...


    "MS News" <sql_agentman@hotmail.com> wrote in message
    news:#3fGrY6VDHA.532@TK2MSFTNGP09.phx.gbl...
    > Hello
    >
    > When I spawn a lightweight process on a new Thread and return immediately
    to
    > the Client
    > what happens if the lightweight process takes an hour to finish?
    > Under what context is the process running
    > Is it running under the current Session.
    > How do I insure that It will run until it is completed
    >
    > Please point me to an artical
    > or give me some general Ideas
    >
    > Thanks you
    >
    >
    >

    alien2_51 Guest

  4. #3

    Default Re: When I spawn a lightweight process in ASP.NET Does it time out??

    I will look into delegation and/or making asynchronous calls...
    But how does that apply to asp.net
    What are your thoughts in addition for me to looking into articles that I
    may understand or get the answer
    In few sentances can someone tell me what they think

    Thank you in advance


    "alien2_51" <dan.billow@n.o.s.p.a.m.monacocoach.com> wrote in message
    news:uF3ogr7VDHA.1480@tk2msftngp13.phx.gbl...
    > Take a look at delegation and/or making a asynchronous calls...
    >
    >
    > "MS News" <sql_agentman@hotmail.com> wrote in message
    > news:#3fGrY6VDHA.532@TK2MSFTNGP09.phx.gbl...
    > > Hello
    > >
    > > When I spawn a lightweight process on a new Thread and return
    immediately
    > to
    > > the Client
    > > what happens if the lightweight process takes an hour to finish?
    > > Under what context is the process running
    > > Is it running under the current Session.
    > > How do I insure that It will run until it is completed
    > >
    > > Please point me to an artical
    > > or give me some general Ideas
    > >
    > > Thanks you
    > >
    > >
    > >
    >
    >

    MS News 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