IIS 7 not recognizing svc file

后端 未结 4 979
天命终不由人
天命终不由人 2020-12-24 15:03

I\'m trying to publish a webservice using WCF on IIS7.

I\'ve created a Site for this project, and I created an Application too as MSDN suggested. I can open html fil

相关标签:
4条回答
  • 2020-12-24 15:31

    On windows 8, run DISM.exe in order to enable WCF:

    DISM /Online /Enable-Feature /FeatureName:WCF-HTTP-Activation
    DISM /Online /Enable-Feature /FeatureName:WCF-HTTP-Activation45
    

    Or if you are setting up everything using Server manager Dashboard's Add Roles and Features Wizard do not forget to check "HTTP Activation" under WCF Services

    enter image description here

    0 讨论(0)
  • 2020-12-24 15:32

    It happens if IIS is installed after .NET Framework and Visual Studio, so it is necessary to register ASP.Net. If to install IIS at first, there will be no such problems.

    But the solution is simple: open Visual Studio Command Promt and type this command

    aspnet_regiis.exe -i
    

    Here is a link with more detailed information about this command and its parameters.

    0 讨论(0)
  • 2020-12-24 15:40

    For Windows 8 to enable WCF had to run these commands in an administrator started Visual Studio command prompt:

    DISM /Online /Enable-Feature /FeatureName:WAS-WindowsActivationService
    DISM /Online /Enable-Feature /FeatureName:WAS-ProcessModel
    DISM /Online /Enable-Feature /FeatureName:WAS-NetFxEnvironment
    DISM /Online /Enable-Feature /FeatureName:WAS-ConfigurationAPI
    DISM /Online /Enable-Feature /FeatureName:WCF-HTTP-Activation
    DISM /Online /Enable-Feature /FeatureName:WCF-HTTP-Activation45
    
    0 讨论(0)
  • 2020-12-24 15:41

    Do the following steps to enable SVC File handling under IIS on Windows 10

    1. Press Window Key + R (It will pop up Run command, Type optionalfeatures and press enter.
    2. It will bring program features wizard. Ensure that following options are selected as shown in the snapshot.

    Follow Steps Mentioned in the following Snapshots

    0 讨论(0)
提交回复
热议问题