vote up 0 vote down star

Hi, if I update an ASP.Net application or even just a virtual directory containing XML files, ASP.Net will not serve any pages for that application until the update is done. Why?

Can it be prevented with some .Net code? Does VSS behave better?

My clients can't use the website while I update simple XML files. Very inefficient.

Carl

flag
are you doing an SVN Export or Checkout to the target folder? – Neil N Oct 8 at 21:00
Are the xml files in the bin folder? – jrummell Oct 8 at 21:13
I use TortoiseSVN. I'm simply doing a Tortoise update. The XML files are not in the bin folder. – Malartre Oct 9 at 17:46
Maybe tortoise locks the folder? – Malartre Oct 9 at 17:47

2 Answers

vote up 2 vote down

VSS is never better, as it simply does not work. You are always in danger of losing all your codehistory. Not sure if your clients will appreciate this..

Here some references:

http://www.codinghorror.com/blog/archives/000660.html http://www.highprogrammer.com/alan/windev/sourcesafe.html http://weblogs.asp.net/jdennany/archive/2005/04/05/397274.aspx

link|flag
vote up 1 vote down

This should not happen. jrummell has probably hit the nail on the head...

There is no explicit interaction between the SVN client and IIS, unless you are using some crazy custom SVN client that stops the web service before it updates. Therefore it shouldn't affect the behavior of IIS. Probably what is happening is that you are updating files which are triggering an app restart.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.