Last week I got into trouble when trying to use msdeploy for an ASP.NET Core app. Where I got no problems for the ‘old’ ASP.NET applications, every time I tried to deploy an ASP.NET Core app I got the following error message:
ERROR_USER_UNAUTHORIZED
I logged in on the target server and find a little bit more information in the Event Viewer:
IISWMSVC_AUTHORIZATION_SERVER_NOT_ALLOWED
Only Windows Administrators are allowed to connect using a server connection. Other users should use the 'Connect To Site or Application' task to be able to connect.
I was 100% sure that everything was configured correctly on the server. I used exactly the same steps as for my other applications, the only difference was that this was an ASP.NET Core app.
After some testing, I found an approach that worked for me:
Here are the things I had to change inside my Web Deploy pubxml file:
- Added UseMsDeployExe statement(gave me more control on the parameters passed)
- Added password (as it was not included when applying the UseMsDeploy statement)
- Changed server url development.ordina.be to https://development.ordina.be:8172/msdeploy.axd?site=development.ordina.be
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<PropertyGroup> | |
<WebPublishMethod>MSDeploy</WebPublishMethod> | |
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration> | |
<LastUsedPlatform>Any CPU</LastUsedPlatform> | |
<SiteUrlToLaunchAfterPublish /> | |
<LaunchSiteAfterPublish>True</LaunchSiteAfterPublish> | |
<ExcludeApp_Data>False</ExcludeApp_Data> | |
<PublishFramework>netcoreapp1.1</PublishFramework> | |
<ProjectGuid>3325b71e-1ff7-4ec3-b5a4-92b5bc42db8d</ProjectGuid> | |
<MSDeployServiceURL>https://development.ordina.be:8172/msdeploy.axd?site=development.ordina.be</MSDeployServiceURL> | |
<DeployIisAppPath>development.ordina.be\sampleapp\</DeployIisAppPath> | |
<RemoteSitePhysicalPath /> | |
<AllowUntrustedCertificate>True</AllowUntrustedCertificate> | |
<UseMsDeployExe>true</UseMsDeployExe> | |
<SkipExtraFilesOnServer>True</SkipExtraFilesOnServer> | |
<MSDeployPublishMethod>WMSVC</MSDeployPublishMethod> | |
<EnableMSDeployBackup>True</EnableMSDeployBackup> | |
<UserName>WebDeployUser</UserName> | |
<Password>Password</Password> | |
<_SavePWD>True</_SavePWD> | |
</PropertyGroup> | |
</Project> |