Click here to Skip to main content
15,888,968 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
For ASP.NET project MSBuild gives some files in E:\Build such as:

- TestProjectA.deploy.cmd
- TestProjectA.SetParameters.xml
- TestProjectA.SourceManifest.xml
- TestProjectA.zip

To deploy from Windows 7 to Windows Server 2008 R2 (IIS 7)

Executing command gives following error message:

Command:

C:\Program Files\IIS\Microsoft Web Deploy V3>msdeploy.exe -verb:sync -source:contentPath='E:\Build' -dest:contentPath='ra/files-to-pub',ComputerName="https://{IP}:8172/msdeploy.axd?site=ra",UserName='DEV\Administrator',Password='MyPassword',AuthType='Basic' -enableRule:DoNotDeleteRule -whatif -allowUntrusted


Error Message:

Info: Using ID 'd1bbee7a-e940-4be1-b41d-1847b3e7022d' for connections to the remote server.
Error Code: ERROR_COULD_NOT_CONNECT_TO_REMOTESVC
More Information: Could not connect to the remote computer ("103.15.43.10") using the specified process ("Web Management Service") because the server did not respond. Make sure that the process ("Web Management Service") is started on the remote computer.
Learn more at: http://go.microsoft.com/fwlink/?LinkId=221672#ERROR_COULD_NOT_CONNECT_TO_REMOTESVC.
Error: The remote server returned an error: (550).
Error count: 1


Given link suggest to do:

- Ping the remote machine. *STATUS-OK
- The msdepsvc or wmsvc service is started on the remote server. *STATUS-OK
- Firewall is not blocking incoming connections of your ports on the destination. If it used the default installation, then it would be 80 for msdepsvc and 8172 for wmsvc. *STATUS-OK

Both of service are running at target server:

- Web Management Services
- Web Deployment Agent Service

What can do now to solve it?
Posted
Updated 4-Mar-14 23:39pm
v2
Comments
Khalid Farhan 6-Mar-14 10:31am    
Solved by following command…

Configure IIS http://www.iis.net/learn/publish/using-web-deploy/configure-the-web-deployment-handler

C:\Program Files\IIS\Microsoft Web Deploy V3> msdeploy.exe -verb:sync -source:package='E:\Test-MsDeploy\Package\TestProjectA.zip' -dest:auto,wmsvc='https://{IP}:8172/msdeploy.axd?site=Default%20Web%20Site',user‌​Name='******',password='******',includeAcls='False' -disableLink:AppPoolExtension -disableLink:ContentExtension -disableLink:CertificateExtension -setParamFile="E:\Test-MsDeploy\Package\TestProjectA.SetParameters.xml" -allowUntrusted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900