我有一个WCF服务应用程序。我想通过Web浏览器上的http请求访问此服务。
当我在IISExpress上运行WCF服务时,它可以工作,但是当我在IIS上发布该服务时,返回404错误。我该如何解决这个问题?
IService.cs
namespace Protek.WebService
{
[ServiceContract]
public interface IService
{
[WebGet(UriTemplate = "HelloWorld")]
[OperationContract]
string HelloWorld();
}
}
Service.svc
<%@ ServiceHost Language="C#" Debug="true" Service="Protek.WebService.Service" CodeBehind="Service.svc.cs" %>
Service.svc.cs
namespace Protek.WebService
{
public class Service : IService
{
public string HelloWorld()
{
return "Hello World";
}
}
}
Web.config
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="DefaultBehavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true"/>
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="WebBehavior">
<webHttp />
</behavior>
</endpointBehaviors>
</behaviors>
<services>
<service behaviorConfiguration="DefaultBehavior" name="Protek.WebService.Service">
<endpoint address="ws" binding="wsHttpBinding" contract="Protek.WebService.IService"/>
<endpoint address="" binding="webHttpBinding" contract="Protek.WebService.IService" behaviorConfiguration="WebBehavior"/>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
<host>
<baseAddresses>
<add baseAddress="http://localhost:5858/Service" />
</baseAddresses>
</host>
</service>
</services>
</system.serviceModel>
答案 0 :(得分:1)
首先,stackoverflow是基于英语的技术问答论坛,请在描述和屏幕截图中使用英语。
如果要发布WCF休息服务,请参考以下答复。
How can I use a WCF Service?
此外,当我们在IIS中托管WCF服务时,基地址由IIS提供,因此无需在配置文件中添加基地址。
https://social.msdn.microsoft.com/Forums/vstudio/en-US/d42fc165-052d-476a-9580-1240b3d0293d/specify-endpoint-in-wcf-webconfig?forum=wcf
随时让我知道是否有什么可以帮助您的。
答案 1 :(得分:0)
我通过将此行添加到服务Web.config文件中来解决此问题。我的http错误是404.3
<system.webServer>
<handlers>
<add
name="svc-Integrated"
path="*.svc"
verb="*"
type="System.ServiceModel.Activation.HttpHandler, System.ServiceModel.Activation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</handlers>
</system.webServer>