gpt4 book ai didi

wcf - 并排托管 WCF SOAP 和休息端点

转载 作者:行者123 更新时间:2023-12-04 02:17:59 25 4
gpt4 key购买 nike

我写了一个服务,我想通过休息和 SOAP 公开。我读到的关于 WCF 4.0 的所有内容都表明我只需要公开 2 个具有不同行为的端点即可执行此操作。但我无法让它工作。

这是我的服务契约(Contract):

[ServiceContract]
public interface MyService
{
[OperationContract]
[WebGet(UriTemplate="data/{value}")]
string GetData(string value);
}

这是我的 web.config:
<?xml version="1.0"?>
<configuration>

<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>

<services>
<service name="MyService">
<endpoint name="mex" address="mex" binding="mexHttpBinding" contract="MyService"/>
<endpoint address="rest" behaviorConfiguration="restBehavior" binding="webHttpBinding" contract="MyService" />
<endpoint address="soap" behaviorConfiguration="soapBehavior" binding="basicHttpBinding" contract="MyService" />
</service>
</services>

<behaviors>

<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="true"/>
</behavior>
</serviceBehaviors>

<endpointBehaviors>
<behavior name="restBehavior">
<webHttp automaticFormatSelectionEnabled="true" helpEnabled="true" />
</behavior>
<behavior name="soapBehavior" />
</endpointBehaviors>

</behaviors>

<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/>

</system.serviceModel>

<system.webServer>
<modules runAllManagedModulesForAllRequests="true" />
</system.webServer>

</configuration>

我正在使用路由来定义我的服务 url:
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
RouteTable.Routes.Add(new ServiceRoute("dns", new ServiceHostFactory(), typeof(MyService)));
}
}

我在这里做错了什么吗?我真的可以使用一些帮助。

最佳答案

我从未在配置中找到执行此操作的“正确”方法,但能够使用路由引擎来完成此操作。

我的全局 asax 文件现在看起来像这样:

public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
RouteTable.Routes.Add(new ServiceRoute("my/soap", new ServiceHostFactory(), typeof(MyService)));
RouteTable.Routes.Add(new ServiceRoute("my/rest", new WebServiceHostFactory(), typeof(MyService)));
}
}

和我的配置是这样的:(启用其余帮助页面)




<system.serviceModel>

<standardEndpoints>
<webHttpEndpoint>
<standardEndpoint automaticFormatSelectionEnabled="true" helpEnabled="true"/>
</webHttpEndpoint>
</standardEndpoints>

<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/>

</system.serviceModel>

<system.webServer>
<modules runAllManagedModulesForAllRequests="true" />
</system.webServer>

我喜欢这更符合 asp.net MVC 模型并且需要很少的配置。此外,这样做可以让我完全从我的项目中删除 .svc 文件,这也是一个额外的 IMO。

关于wcf - 并排托管 WCF SOAP 和休息端点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3366103/

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