What is the difference between posting to file systems and web deploy on asp.net?

1

They could explain to me the difference between posting on file systems and web deploy on asp.net

    
asked by lucho 06.09.2018 в 16:22
source

1 answer

7

Summing up:

  • Web Deploy - If you have an IIS on a server running and configured to receive requests for Web Deployments, it will send all the files requested by the IIS. The IIS will immediately start running the new page.

  • Web Deploy Package - If you have an IIS on your server running and configured to receive Web Deploy Packages, it will package your entire web page and upload it to the server. The IIS will immediately start running the new page.

  • FTP will upload all files to the FTP server (it can be any OS that can handle FTP), but keep in mind that this is NOT secure and that the entire upload process can be captured and compromised.

  • File System will send all the files required to launch the web service, by any method supported by the current project, to the directory that you provide on your machine.

  • Translation of this response

        
    answered by 06.09.2018 / 16:39
    source