creating a temporary file in clustered web farm

  • Thread starter Thread starter sudha
  • Start date Start date
S

sudha

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
 
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.
 
Back
Top