Visual Studio 2010 - web deploy times out - what to do?

2

My MVC2 web project is deployed using the VS 2010 "web deploy" feature. It used to run fine but now it is timing out more often than not with this error message:

Web deployment task failed.((10/11/2010 1:01:59 a.m.) An error occurred
when the request was processed on the remote computer.)

(10/11/2010 1:01:59 a.m.) An error occurred when the request was processed on the remote 
computer.     The remote host closed the connection. The error code is 0x800704CD.      

Searching for the error code 0x800704CD does not return anything helpful.

Is there a way to increase the timeout period, or should I be looking for an alternative method and forgetting about web deploy?

c#
visual-studio-2010
asp.net-mvc-2
web-deployment-project
asked on Stack Overflow Nov 9, 2010 by JK.

2 Answers

0

Forget the error message. That error message is the local one. You are not interested in this - the reason it fails is that the remote host closed the connection. What you want is to see the server side logs for the server side error message. Could be a timeout, but the server side should have more information. Start with the IIS logs and event logs.

answered on Stack Overflow Nov 9, 2010 by TomTom • edited Nov 6, 2018 by pja
0

I haven't answered the timeout problem (could not see any problems on the server log). But I did find a workaround:

  1. Physically copy the webdeploy.zip file to the web server.
  2. In IIS select the website, right click and choose "Deploy - Import Application ..."
  3. Select the zip file copied in #1
answered on Stack Overflow Nov 9, 2010 by JK.

User contributions licensed under CC BY-SA 3.0