- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用此页面中推荐的代码 http://blogs.msdn.com/b/nathana/archive/2011/03/31/deciphering-a-soap-fault-with-a-400-status-code.aspx如下:
static FaultException ParseProtocolExecption(ProtocolException ex)
{
try
{
System.IO.Stream stream = (ex.InnerException as WebException).Response.GetResponseStream();
System.Xml.XmlReader xmr = System.Xml.XmlReader.Create(stream);
Message message = Message.CreateMessage(xmr, (int)stream.Length, MessageVersion.Soap12);
MessageFault mf = MessageFault.CreateFault(message, (int)stream.Length);
FaultException fe = new FaultException(mf);
message.Close();
return fe;
}
catch (Exception)
{
return new FaultException(ex.Message);
}
}
我正在使用 VS 2012 和 .NET 4.5,使用 WCF。当应用收到 400 Bad Request 并将 ProtocolException 传递给 ParseProtocolException 时,它会在此行抛出异常:
Message message = Message.CreateMessage(xmr, (int)stream.Length, MessageVersion.Soap12);
出现 System.ServiceModel.CommunicationException:“缓冲 XML 内容所需的大小超出了缓冲配额。”
stream.Length = 2,704 字节,不是很大。我尝试了本网站建议的解决方案 http://blogs.msdn.com/b/drnick/archive/2007/08/07/increasing-the-maximum-fault-size.aspx .但是,即使 MaxFaultSize = 1 Mb,它也会出现相同的错误。
代替这一行:
System.Xml.XmlReader xmr = System.Xml.XmlReader.Create(stream);
我已经试过了:
xmr = XmlDictionaryReader.CreateTextReader(stream, XmlDictionaryReaderQuotas.Max);
将所有配额设置为其最大值 (Int32.MaxValue);但是,我在调用 CreateMessage 时仍然遇到同样的错误。
来自 System.Net.WebException 的示例响应流如下:
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope" xmlns:SOAP-ENC="http://www.w3.org/2003/05/soap-encoding" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsa5="http://www.w3.org/2005/08/addressing" xmlns:c14n="http://www.w3.org/2001/10/xml-exc-c14n#" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:xmime5="http://www.w3.org/2005/05/xmlmime" xmlns:xop="http://www.w3.org/2004/08/xop/include" xmlns:tptz="http://www.onvif.org/ver20/ptz/wsdl" xmlns:tds2="http://www.onvif.org/ver10/schema" xmlns:tds3="http://docs.oasis-open.org/wsn/b-2" xmlns:tds4="http://docs.oasis-open.org/wsrf/bf-2" xmlns:tds5="http://docs.oasis-open.org/wsn/t-1" xmlns:timg="http://www.onvif.org/ver20/imaging/wsdl" xmlns:trt="http://www.onvif.org/ver10/media/wsdl" xmlns:tan="http://www.onvif.org/ver20/analytics/wsdl" xmlns:tds6="http://www.canon.com/ns/networkcamera/onvif/va/schema" xmlns:tmd="http://www.onvif.org/ver10/deviceIO/wsdl" xmlns:tev="http://www.onvif.org/ver10/events/wsdl" xmlns:tds9="http://docs.oasis-open.org/wsrf/r-2" xmlns:tds="http://www.onvif.org/ver10/device/wsdl" xmlns:ter="http://www.onvif.org/ver10/error">
<SOAP-ENV:Header></SOAP-ENV:Header>
<SOAP-ENV:Body>
<SOAP-ENV:Fault>
<SOAP-ENV:Code>
<SOAP-ENV:Value>SOAP-ENV:Sender</SOAP-ENV:Value>
<SOAP-ENV:Subcode>
<SOAP-ENV:Value>ter:NotAuthorized</SOAP-ENV:Value>
</SOAP-ENV:Subcode>
</SOAP-ENV:Code>
<SOAP-ENV:Reason>
<SOAP-ENV:Text xml:lang="en">Sender Not Authorized</SOAP-ENV:Text>
</SOAP-ENV:Reason>
<SOAP-ENV:Node>http://www.w3.org/2003/05/soap-envelope/node/ultimateReceiver</SOAP-ENV:Node>
<SOAP-ENV:Role>http://www.w3.org/2003/05/soap-envelope/role/ultimateReceiver</SOAP-ENV:Role>
<SOAP-ENV:Detail>The action requested requires authorization and the sender is not authorized</SOAP-ENV:Detail>
</SOAP-ENV:Fault>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
使用我在 F# Interactive 中编写的异步网络爬虫,我发现一些命名空间 url 不可解析。我更正了错误的部分,然后再次运行爬虫以计算命名空间页面的长度。总数为 715,965 字节,远小于 XmlDictionaryReaderQuotas 中所有配额的 Int32.MaxValue。也许 XmlDictionaryReader 有错误,或者它返回的错误不是真正的问题?
我最终通过删除 SOAP-ENV:Body 中未实际使用的命名空间定义(即仅保留 Subcode 元素中使用的 xmlns:ter)来创建消息。但是,当然,这并没有真正解决问题,因为服务正在生成 SOAP 错误;而且我无法更改服务实现(它是第 3 方设备 - Onvif 相机)。
此外,我无法再增加配额;那么,还有什么方法可以处理这个异常呢?
最佳答案
解决方案是捕获 CommunicationException,然后在不需要命名空间解析的流中对 XML 进行替代解析:
public static FaultException ParseProtocolException(System.ServiceModel.ProtocolException ex) {
var stream = (ex.InnerException as System.Net.WebException).Response.GetResponseStream();
try {
var xmr = XmlReader.Create(stream);
var message = Message.CreateMessage(xmr, (int)stream.Length, MessageVersion.Soap12);
var mf = MessageFault.CreateFault(message, (int)stream.Length);
message.Close();
return new FaultException(mf);
} catch (CommunicationException) { // If CreateMessage has a problem parsing the XML,
// then this error will be thrown. Most likely, there is an unresolvable namespace reference.
// Do an alternate parse
stream.Seek(0, System.IO.SeekOrigin.Begin);
var soapFault = GetSoapFault(stream);
return new FaultException(soapFault.Reason);
}
}
catch 将流重置为开头,然后使用以下内容通过 XmlReader 获取 SOAP 错误的具体信息:
private struct SoapFault {
public string Subcode;
public string Reason;
public string Detail;
}
private static string GetTextChild(XmlReader xmr, string childName) {
return xmr.ReadToDescendant(childName) ?
xmr.ReadString() : System.String.Empty;
}
private static SoapFault GetSoapFault(System.IO.Stream s) {
var xr = XmlReader.Create(s);
var fault = new SoapFault();
if (xr.ReadToFollowing("SOAP-ENV:Subcode")) {
fault.Subcode = GetTextChild(xr, "SOAP-ENV:Value");
if (xr.ReadToFollowing("SOAP-ENV:Reason")) {
fault.Reason = GetTextChild(xr, "SOAP-ENV:Text");
if (xr.ReadToFollowing("SOAP-ENV:Detail"))
fault.Detail = GetTextChild(xr, "SOAP-ENV:Text");
}
}
return fault;
}
关于c# - 解析 WCF ProtocolException 时出现 System.ServiceModel.CommunicationException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22998377/
我正在 IIS 中运行我的 Web 项目。 这是一个4.0框架的APP。 我有一个 Service.svc,当我运行我的应用程序时收到此错误。 "Could not load type 'System
有一段时间,我在尝试使用 Azure 模拟器启动任何类型的应用程序时遇到以下错误: Microsoft Azure Tools: Method not found: 'Void Microsoft.W
我有一个由针对 .NET Standard 2.0 和 .NET Core 2.1.304 的项目组成的解决方案。在构建此解决方案时,它利用了旧的易受攻击版本的 System.ServiceModel
现象: 最近遇到了WCF 服务无法调用的错误,异常如下。 System.ServiceModel.ProtocolException, System.ServiceModel, Version=4
我在可移植类库中有一个接口(interface),启用了构建时的代码分析。当我用 WCF 服务的 ServceContract 和 OperationContract 标记它时,它开始从代码分析中抛出
我正在 sharepoint 上部署 webpart 并遇到一些错误。 webpart 使用来自 Web 服务的数据并使用 Microsoft Chart (Framework 3.5) 显示图表。当
我正在学习 WCF 并找到了 this article在一个简单的 WCF 示例中。 在下面的代码中(来自上面的文章),为什么System.ServiceModel.Dispatcher.Channe
我们有一个启动WCF服务器的应用程序,该应用程序从中读取数据。 它会启动,并且可以在所有Windows XP计算机上正常阅读。 但是,在Vista机器上,我们得到: System.ServiceMod
如果此问题在 stackOverflow 上出现两次,我们深表歉意 我试图在 Windows Server 2003 机器上运行 wcf 服务。我收到了 System.ServiceModel.Add
您好,当应用程序托管在服务器中时,我遇到了以下错误。该应用程序在本地盒子上运行良好。“已超过传入消息的最大消息大小配额 (100000000)。要增加配额,请在适当的绑定(bind)元素上使用 Max
我在 Win7(64 位)上使用 VS2010 express,我正在尝试使用 System.ServiceModel 但我收到一个错误,指出没有 ServiceModel System 命名空间:
我想在我的 Unity 应用程序中使用 WCF 服务(通过命名管道)。因此,我包括以下两个命名空间: using System.ServiceModel; using System.ServiceMo
我有以下代码: public partial class MyServiceClient : System.ServiceModel.ClientBase 派生,请使用此选项 m_MyClient.S
如何在我的应用程序中调试 system.servicemodel 类? 最佳答案 听起来您对调试 .NET 框架代码本身感兴趣吗?如果是这样,微软已经向公众发布了大部分 .NET 框架的源代码。 但是
我发现的所有与智能感知相关的问题似乎都与自定义配置设置有关。我正在尝试在已从 web.config 移出到 service.config 的 .net 标准部分上获得智能感知。 有办法吗? 最佳答案
我在客户端应用程序上遇到了这个异常,不知道如何解决这个问题。 当返回的数据(价格列表)超过 15MB,但适用于小于 15MB 的消息时,我遇到了这个异常。 错误消息: 接收对“http://local
我创建了一个 Core 3.1 应用程序,该应用程序使用基于 .net 标准 2.0 的 Web 服务。 在本地开发环境中,一切正常。在我将其部署到 UAT (IIS) 上之前,我收到以下异常: Ex
我添加了一个名为 http://192.168.5.180:8080/intg/CrmWebService.asmx 的服务引用。名称为 CrmWebProxy。 下面是代码行。 Microsoft.
当我将网站发布到我的 plesk 服务器时,我收到以下错误: Unrecognized configuration section system.serviceModel. 最佳答案 您的主机支持哪个
有什么方法可以访问“System.ServiceModel”客户端配置,即基于类 (dll) 项目中的 app.config? 最佳答案 ConfigurationManager.GetSection
我是一名优秀的程序员,十分优秀!