gpt4 book ai didi

iis - 无法访问部署在本地 IIS Web 服务器上的 RESTFul WCF 服务上的 .svc

转载 作者:行者123 更新时间:2023-12-04 16:00:40 26 4
gpt4 key购买 nike

我需要帮助,我是 WCF 世界的新手,最近刚从 SOAP Web 服务转换过来。

当我从 VS2008 ASP.NET 开发服务器(即 Debug模式)运行时,WCF 服务运行良好。当我尝试通过 IIS 访问该服务时出现问题。

我已经在托管在端口 8082 ( http://localhost:8082 ) 上的本地 IIS Web 服务器上设置了一个网站,并创建了一个指向包含我的 WCF 服务代码的物理目录的 VirtualDirectory (1.0)。该网站设置为执行 ASP.NET 2.0.50727。我可以访问登录页面和各种 .aspx 页面,但是当我尝试访问 Service.svc 时,浏览器永远不会到达那里,只是闲置。

http://localhost:8082/1.0/Service.svc  

我的问题是我缺少什么设置才能让服务在 IIS 内部运行,因为我已经知道它在开发服务器下运行。

如果有帮助,我附上我的 web.config 的一部分。

    <system.serviceModel>
<services>
<service name="Service1" behaviorConfiguration="Service1Behavior">
<!-- Service Endpoints -->
<endpoint address="" binding="wsHttpBinding" contract="IService1">
<!--
Upon deployment, the following identity element should be removed or replaced to reflect the
identity under which the deployed service runs. If removed, WCF will infer an appropriate identity
automatically.
-->
<identity>
<dns value="localhost"/>
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="Service1Behavior">
<!-- 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>

最佳答案

您谈论的是 RESTful 服务,但您正在使用 wsHttpBinding....那不是 REST 绑定(bind) - 那将是“webHttpBinding”。

在大多数情况下,WCF 服务基于 SOAP 的 - 除了 webHttpBinding 之外的任何绑定(bind)都是 SOAP 端点,因此您的 wsHttpBinding 端点绝对不是 RESTful任何方式、形状或形式。您可以使用例如与它通信SoapUI或更好 - Visual Studio 文件夹中的 WcfTestClient。

但是,您不能指望仅通过浏览到该 URL 从中获取 XML 格式的数据。

马克

关于iis - 无法访问部署在本地 IIS Web 服务器上的 RESTFul WCF 服务上的 .svc,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1639480/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com