我已经把我的app.config文件塞满了我正在尝试写的测试网络服务。
我现在得到的错误是:
找不到引用合同的默认端点元素 ServiceModel客户端中的“LocationService.ILocationServices” 配置部分。这可能是因为没有配置文件 找到您的应用程序,或者因为没有端点元素匹配 这个合同可以在客户元素中找到。
我有一个域名www.mydomain.com来获取文件,我只需将它们ftp到ftp.mydomain.com - root。
我的配置文件包含:
<system.serviceModel>
<services>
<service name="CraigsService.LocationServices">
<endpoint address="" binding="basicHttpBinding" contract="CraigsService.ILocationServices">
<identity>
<dns value="www.mydomain.com" />
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://www.mydomain.com/CraigsService/LocationServices/" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information,
set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="True"/>
<!-- To receive exception details in faults for debugging purposes,
set the value below to true. Set to false before deployment
to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="True" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
我的所有类都在CraigsService命名空间中。
声明我的界面:
public interface ILocationServices
但我不能让这个工作。我的域名应该在App.Config吗?我试过Localhost(你怎么在本地调试?)。
对于我的生活,我无法发现问题。希望有人可以提供协助。
编辑:问题是我正在将网站和我的网络服务部署到同一个文件夹,我想!删除所有文件并重新部署后,似乎没问题。但是,现在我需要创建一个子文件夹/ services /,并将该服务部署到该文件夹中。 App.Config中需要更改什么?
如果我只是将文件夹更改为我部署的/ services /,我会得到:
找不到ServiceHost指令中的Service属性值,或者在配置元素system.serviceModel / serviceHostingEnvironment / serviceActivations中提供的类型'CraigsService.LocationServices'。
答案 0 :(得分:0)
似乎您已经更改了指向.Net类型的名称空间限定名称的引用,以包含命名空间“CraigsService”,而不是合同接口的实际命名空间和实现服务契约的类型。更改config xml和@ServiceHost指令中的名称或将类型移动到新名称空间。例如,你可以改变
<% @ServiceHost Service=”CraigsService.LocationServices” ...
到
<% @ServiceHost Service=”TheActualNameSpace.LocationServices” ...
答案 1 :(得分:0)
问题是我在托管公司控制面板上设置错误。我正在拆分的文件夹想要设置为iis应用程序根目录。