creating a temporary file in clustered web farm

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

  1. #1

    Default creating a temporary file in clustered web farm

    Does creating a temporary xml file from dataset on the
    server on a per-user basis and read from it will create
    any problem in clustered web farm?

    Thanks in advance
    sudha Guest

  2. Similar Questions and Discussions

    1. Trouble creating temporary memory table
      I tried to create a temporary memory table using the following: CREATE TEMPORARY TABLE mytable_tmp LIKE mytable ENGINE=MEMORY; However, I...
    2. Central file repository for clustered servers
      We are upgrading from CF 5 to MX 6.1. We have the requirement of building in server redundancy. We have elected to go with Windows 2003 because ot...
    3. Clustered web farm
      Hi, Is it possible to redirect user to same webserver in clustered web farm until his session ends?
    4. redirect user to same server in clustered web farm
      Hi, Is it possible to redirect user to same webserver until his session ends? Thanks in advance
    5. direct the user to same server in clustered web farm
      How can I direct user to same server until his session ends in the clustered web farm? Thanks in advance
  3. #2

    Default Re: creating a temporary file in clustered web farm

    yes...it will only save the file on one web server and the next request may
    come in on another web server. if you are using out of process session
    state, save the file as an XmlDocument in session, if sql server session
    state, save the dataset in session.

    "sudha" <sudha_s@lycos.com> wrote in message
    news:7e2301c344de$1b44fb80$a401280a@phx.gbl...
    > Does creating a temporary xml file from dataset on the
    > server on a per-user basis and read from it will create
    > any problem in clustered web farm?
    >
    > Thanks in advance

    PJ 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