我想使用Visual Studio 2010创建WCF服务应用程序。创建项目后,我有2个配置文件: 1. Web.Debug.config 2. Web.Release.config
这是文件中的代码。
<?xml version="1.0"?>
<!-- For more information on using web.config transformation visit http://go.microsoft.com/fwlink/?LinkId=125889 -->
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
</configuration>
当我尝试添加任何元素或属性时,它会发出以下警告。
Could not find schema information for the attribute 'address'.
Could not find schema information for the attribute 'address'.
Could not find schema information for the attribute 'binding'.
Could not find schema information for the attribute 'binding'.
Could not find schema information for the attribute 'contract'.
Could not find schema information for the attribute 'contract'.
Could not find schema information for the attribute 'name'.
Could not find schema information for the element 'endpoint'.
Could not find schema information for the element 'endpoint'.
Could not find schema information for the element 'service'.
Could not find schema information for the element 'services'.
我做错了什么? 有什么要添加或编辑的。我正在尝试创建一个非常简单的WCF服务应用程序。
答案 0 :(得分:0)
如果这是wcf主机使用的配置文件,那么您将缺少整个system.serviceModel
。您可能最好通过创建新的WCF服务或至少使用Tools|Wcf Configuration Editor
来重新生成文件。我认为你移动了一些东西,你的文件被错放了。