gpt4 book ai didi

c# - 没有参数的 WebGet 或 UriTemplate 失败

转载 作者:可可西里 更新时间:2023-11-01 07:47:13 31 4
gpt4 key购买 nike

我有一个带有以下 API 的 RESTful WCF 网络服务:

[WebGet(ResponseFormat = WebMessageFormat.Json)]
MyResponseContract GetFileInfo();

尝试访问端点(使用 SOAPUI)时,我看到以下错误消息:

The server encountered an error processing the request. Please see the service help page for constructing valid requests to the service.

我将 SOAPUI 设置为使用 GET 方法调用来命中它。当我将它切换到没有正文的 POST 时,它失败并显示以下消息:

Method not allowed.

这很有道理:不能用 POST 命中 GET。所以我更新了我的代码如下:

[WebInvoke(ResponseFormat = WebMessageFormat.Json)]
MyResponseContract GetFileInfo();

现在我使用 POST 方法从 SOAPUI 调用它并且它有效。好奇的。所以我现在更改我的代码如下:

[WebInvoke(ResponseFormat = WebMessageFormat.Json, Method = "GET")]
MyResponseContract GetFileInfo();

我在一些帖子中看到这本质上等同于 WebGet 属性。这也行不通。

所以我的问题是:即使我不接受参数或不使用自定义 UriTemplate,为什么它不能作为 WebGet 工作?

我尝试使用的 Url(它在 IIS 中本地托管)是:

http://localhost/Utilities/API/GetFileInfo

更新鉴于下面的评论和给出的答案,我仍然面临这个问题。一些额外的细节。

我的网络层 web.config

<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<customErrors mode="Off" />
</system.web>
<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
<standardEndpoints>
<webHttpEndpoint>
<standardEndpoint name="" helpEnabled="true" automaticFormatSelectionEnabled="true" maxReceivedMessageSize="10000000" />
</webHttpEndpoint>
</standardEndpoints>
<behaviors>
<endpointBehaviors>
<behavior name="exampleBehavior">
<callbackDebug includeExceptionDetailInFaults="true" />
<enableWebScript />
<webHttp helpEnabled="true" />
</behavior>
</endpointBehaviors>
</behaviors>
<bindings>
<webHttpBinding>
<binding name="WebHttpBinding" maxReceivedMessageSize="10000000" />
</webHttpBinding>
</bindings>
<client>
<endpoint address="http://LOCALHOST/Utilities.AppService/API"
binding="webHttpBinding" bindingConfiguration="WebHttpBinding"
contract="Utilities.Common.API.IMyApi"
behaviorConfiguration="exampleBehavior" />
</client>
</system.serviceModel>
</configuration>

我的应用层 web.config:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<customErrors mode="Off" />
</system.web>
<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
<standardEndpoints>
<webHttpEndpoint>
<standardEndpoint name="" helpEnabled="true" automaticFormatSelectionEnabled="true" maxReceivedMessageSize="10000000" />
</webHttpEndpoint>
</standardEndpoints>
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true" />
<handlers>
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE" type="System.Web.Handlers.TransferRequestHandler" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode,runtimeVersionv4.0" />
</handlers>
</system.webServer>
</configuration>

我的服务界面

[ServiceContract(Namespace = "API")]
public interface IMyApi
{
[WebGet]
MyResponseContract GetFileInfo();
}

我的网络层实现

[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Required)]
[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, ConcurrencyMode = ConcurrencyMode.Multiple)]
public class MyApiWebService : ClientBase<IMyApi>, IMyApi
{
public MyResponseContract GetFileInfo()
{
return Channel.GetFileInfo();
}
}

我的应用层实现

[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Required)]
[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, ConcurrencyMode = ConcurrencyMode.Multiple)]
public class MyApiAppService : IMyApi
{
public MyResponseContract GetFileInfo()
{
return new MyResponseContract();
}
}

我的网络层 Global.asax:

    protected void Application_Start(object sender, EventArgs e)
{
RouteTable.Routes.Add(new ServiceRoute("API", new WebServiceHostFactory(), typeof(MyApiWebService)));
}

我的应用层 Global.asax:

    protected void Application_Start(object sender, EventArgs e)
{
RouteTable.Routes.Add(new ServiceRoute("API", new WebServiceHostFactory(), typeof(MyApiAppService)));
}

我不确定我还能提供多少细节。如您所见,鉴于提供的解决方案,我已经实现了所有建议但无济于事。无论我是试图通过在浏览器中放置 Web 层服务 URL 或使用 SOAPUI 来访问此 WebGet 方法,还是尝试使用服务客户端通过 C# 单元测试来访问它,我都无法使用 WebGet。再次感谢您的帮助。

有趣的是应用层 URL 有效。但是web层没有。所以:

localhost/Utilities.AppService/API/GetFileInfo

有效,而

localhost/Utilities.WebService/API/GetFileInfo

没有。

最佳答案

所以在我最近更新之前这可能并不明显,但我有两个 RESTful 服务,它们相互通信但位于不同的域中。 Web 层服务是第一个接触点,应用层服务是实际的工作执行者。在这种情况下,我能够进一步调试并发现实际的异常是从 Web 到 App 层的调用中的 405(方法不允许)。我找到了 this link经过大量挖掘,解决了我的问题。

使用 ClientBase<> 时作为服务之间的通信方法,您本质上需要重新建立调用之间的操作上下文。否则一切都变成了 POST,因此,只有 POST 有效。

我希望这对其他人有帮助,非常感谢大家帮助调试。

为了演示它的样子,这是我更新后的工作网络服务实现的样子:

[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Required)]
[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, ConcurrencyMode = ConcurrencyMode.Multiple)]
public class MyApiWebService : ClientBase<IMyApi>, IMyApi
{
public MyResponseContract GetFileInfo()
{
MyResponseContract output = null;

using(var context = new OperationContext(Channel as IContextChannel))
{
output = Channel.GetFileInfo();
}

return output;
}
}

关于c# - 没有参数的 WebGet 或 UriTemplate 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30331246/

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