locked
deploy WCF service application to IIS10 RRS feed

  • Question

  • Hi there,

    I have followed this https://msdn.microsoft.com/en-us/library/bb386386.aspx developed a simple webservice application, tested with same way in the article.

    But it is not permanently deployed to IIS10. What I want:

    1: deploy the WCF service to IIS permanently.

    2: the client application which will be in other PC or even outside of my LAN can access the service with IP address, instead of localhost.

    3: other application can be javasctipt in a web page or Windows application.

    Can someone point me how to do the deployment to IIS10?

    thanks

    Chris

     


    • Edited by chris 2020 Sunday, December 27, 2015 5:40 PM
    Sunday, December 27, 2015 5:34 PM

Answers

  • Hi there,

    I have followed this https://msdn.microsoft.com/en-us/library/bb386386.aspx developed a simple webservice application, tested with same way in the article.

    But it is not permanently deployed to IIS10. What I want:

    1: deploy the WCF service to IIS permanently.

    2: the client application which will be in other PC or even outside of my LAN can access the service with IP address, instead of localhost.

    3: other application can be javasctipt in a web page or Windows application.

    Can someone point me how to do the deployment to IIS10?

    thanks

    Chris

     


    Really, all you have to do is use VS to push the ASP.NET Web solution to local IIS.

    1) VS Web Project - right-click

    2) Go to Properties

    3) Go to Web tab

    4) under Server, select Local IIS

    5) click Create Virtual Directory button

    Your Web application is deployed to local IIS. 


    • Edited by Grady_Dong Monday, December 28, 2015 7:58 AM Please don't psot some links which not related to this topic. Thanks
    • Proposed as answer by Grady_Dong Tuesday, January 5, 2016 5:19 AM
    • Marked as answer by Grady_Dong Wednesday, January 6, 2016 9:54 AM
    Monday, December 28, 2015 2:31 AM