这个问题在这里已有答案:
在我的机器上,我已经使用ASP.NET启用了IIS,见下图:
当我去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文件夹中的文件夹:
但是当我尝试打开链接(http://localhost:8765/Service1.svc)时出现错误:
HTTP错误404.3 - 未找到
由于扩展配置,无法提供您请求的页面。如果页面是脚本,请添加处理程序。如果要下载文件,请添加MIME映射。
我不知道我能做些什么来解决这个错误,任何人都可以帮助我吗?
谢谢