- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有一个带有以下 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/
以下是我的 Contract 和 OperationContracts,我的问题是当我将 WebGet 属性用于我的服务工作正常的所有方法时,当我将 WebGet 属性删除到任何一个 Operatio
我们试图通过使用 WebGetAttribute 和 UriTemplate 来公开 REST 接口(interface),将可变数量的键值对传递给我们的服务。我们想做的: [WebGet(UriTe
写一些网络抓取的东西还很陌生,所以我很抱歉。我正在尝试减少此应用程序的运行时间。浏览大约 100 只股票的列表需要 30 多秒(为简洁起见,我只列出了 5 只股票)。有什么方法可以提高线程/异步编程的
我尝试将 2 个日期时间参数传递到我的 webget 中,但我不知道如何让它正常工作,我将在下面向您展示我的代码以及我收到的错误,也许现在有人知道这是如何工作的。 [WebGet] public IQ
我有一个使用基本 HTTP 绑定(bind)的自托管 WCF 应用程序,没有 SSL,在 .NET Framework 4.0 上的控制台应用程序中运行。 我在一个方法上有一个 WebGet 属性,该
WCF 为 ServiceContract 的 WebGet 注释中的 ResponseFormat 属性提供了两个选项。 [ServiceContract] public interface ISe
我有一个现有的 WCF Web 服务,其中在一个 .cs 文件中包含三个 WebGet 处理程序。这些处理程序对其他 .cs 文件进行适当的调用来处理该操作。 现在,我通过创建 Azure 项目并添加
您能否像在 ASP.NET MVC 中一样在 WCF 4.0 Rest 中执行以下操作? 在 ASP.NET MVC 中,我可以创建一个通常称为 ViewModel 的强类型对象来处理错误验证。 代替
This问题已经问了我在问什么,但我想对答案进行一些澄清。 答案指出 WebGet 和 WebInvoke 相似,主要区别在于 Method 参数。 但是如果Method参数设置为"GET",其实功能
我正在使用返回图像数据流的 WCF restful/http 方法。我想确保内容类型被标记为“image/png”。该方法定义为: [ServiceContract] [AspNetCompatibi
我有一个带有以下 API 的 RESTful WCF 网络服务: [WebGet(ResponseFormat = WebMessageFormat.Json)] MyResponseContract
我已经创建了一个 OData 端点(使用 Entity Framework 、WCF 数据服务) 并添加了一个自定义测试 WebGet 测试方法,如下所示: [WebGet(UriTempla
这些我都试过了 Optional Parameters in WCF Service URI Template?Posted by Kamal Rawat in Blogs | .NET 4.5 on
我正在开发一个 REST WCF 项目,当我实现以下代码时,它会提示无法解析 WebGet 类?我错过了什么? 我尝试导入 System.ServiceModel.Web 命名空间,但即使我引用了它也
嗨,我找到了 wcf REST 的示例之一,使用 WEBINVOKE 方法,如下所示 [OperationContract] [WebInvoke( BodyStyle=WebMessageBodyS
如何定义 [OperationContract] [WebGet] 方法来返回存储在字符串中的 XML,而不需要对字符串进行 HTML 编码? 应用程序正在使用 WCF 服务返回已存储为字符串的 XM
尝试在 Silverlight 的 WCF 数据服务中使用简单的服务运算符时遇到很多问题。我已通过在浏览器中进行测试来验证以下服务运营商是否正常工作: [WebGet] public IQueryab
有人可以解释这背后的原因或它是如何工作的吗?如果我在下面执行 WebInvoke,它会失败(说方法不允许,但如果我执行 WebGet,它会通过)。我只是想了解为什么? [OperationContra
我有这个特定的方法(下面的片段),我想为它获取 XML 结果。 服务器 [OperationContract] [WebGet(UriTemplate = "getcustomerschema/use
我有一个作为 Windows 服务运行的自托管 WCF 服务,使用 WebAPI 来处理 REST 内容,它运行良好。 我意识到我真的应该使用 IIS 或类似的工具来制作实际的网页,但是有什么方法可以
我是一名优秀的程序员,十分优秀!