Web服务+ IIS =错误404.3 [重复]

问题描述 投票:0回答:1

这个问题在这里已有答案:

在我的机器上,我已经使用ASP.NET启用了IIS,见下图:

enter image description here

当我去http://localhost时,默认网站正常打开。

之后,我在.NET 4.5中的Visual Studio 2017中创建了一个默认的WCF项目。

此WCF具有接口ISercvice1.cs

[ServiceContract]
public interface IService1
{

    [OperationContract]
    string GetData(int value);

    [OperationContract]
    CompositeType GetDataUsingDataContract(CompositeType composite);
}

[DataContract]
public class CompositeType
{
    bool boolValue = true;
    string stringValue = "Hello ";

    [DataMember]
    public bool BoolValue
    {
        get { return boolValue; }
        set { boolValue = value; }
    }

    [DataMember]
    public string StringValue
    {
        get { return stringValue; }
        set { stringValue = value; }
    }
}

和默认的SVC Service1.svc,见下文:

public class Service1 : IService1
{
    public string GetData(int value)
    {
        return string.Format("You entered: {0}", value);
    }

    public CompositeType GetDataUsingDataContract(CompositeType composite)
    {
        if (composite == null)
        {
            throw new ArgumentNullException("composite");
        }
        if (composite.BoolValue)
        {
            composite.StringValue += "Suffix";
        }
        return composite;
    }
}

在IIS我创建了一个新站点并引用了inetpub文件夹中的文件夹:

enter image description here

但是当我尝试打开链接(http://localhost:8765/Service1.svc)时出现错误:

HTTP错误404.3 - 未找到

由于扩展配置,无法提供您请求的页面。如果页面是脚本,请添加处理程序。如果要下载文件,请添加MIME映射。

我不知道我能做些什么来解决这个错误,任何人都可以帮助我吗?

谢谢

c# asp.net wcf iis
1个回答
0
投票

我相信你需要运行aspnet_regiis.exe -i命令行。

解决方案2:尝试在.NET Framework下启用以下功能。

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.