首页 > 解决方案 > How to deploay an webservice in azure from binaries

问题描述

Is there an option to deploy a azure web app (webservice) from binaries instead of using the publisher profile in visual studio?

I have a deploymend ready webservice which needs to be deployed in azure.

The scope of the webservice is, that each customer can host this (with a small instruction) in his own azure tenand.

So the goal would be to just put in a .zip with the soapservice (wsdl, xml, binaries, etc.. ). Is this on some way possible to configure?

标签: .netazureweb-applications

解决方案


您可以转到https://yourappname.scm.azurewebsites.net -> 调试控制台 -> CMD -> 转到 /site/wwwroot -> 将文件作为 zip 文件拖放到文件的右边缘列表 -> zip 文件会自动解压缩。

这可能是“仅部署文件”的最简单方法。您可以从例如这里阅读更多信息:https ://blogs.msdn.microsoft.com/benjaminperkins/2017/12/28/deploy-to-an-azure-app-service-using-kudu-and-a -zip 文件/ .

对于更可重复的部署,我建议自动化该过程并使用 WebDeploy、FTP、ZipDeploy 或本地 Git 存储库进行部署。


推荐阅读