SOAP异常删除自定义HTTP标头

时间:2016-07-15 17:00:24

标签: c# web-services soap asmx

我有一个C#ASMX Web服务(遗留项目,无法帮助)。它必须接收的一个请求带有一个动态HTTP头" TransactionID",它必须在响应中的HTTP头中返回。

当返回成功消息对象时,这可以正常工作,但是当返回SOAPFault消息时,所有自定义HTTP标头都被清除,我找不到恢复它们的方法。客户端坚持必须发送失败消息。我尝试过使用SOAPExtension,但是没有HTTP头的可见性。我试过放

HttpContext.Current.Response.AddHeader("TransactionID", TransactionId);

在一系列不同的地方,无济于事。

以下代码:

[WebMethod(MessageName = "name")]
[SoapHeader("Header")]
[SoapMessageLoggingExtension]
[SoapDocumentMethod("http://www.contoso.com/DocumentLiteral", RequestElementName = "requestName", ResponseElementName = "responseName")]
[return: System.Xml.Serialization.XmlElementAttribute("ReturnType")]
public ResponseType WebMethodName(object RequestObject)
{
    bool success = true;
    int errorType = 0;
    string errorMsg = String.Empty;
    string TransactionId = String.Empty;
    SoapException soapEx = null;

    try
    {
        TransactionId = HttpContext.Current.Request.Headers["TransactionID"].ToString();

        //Determine success or throw appropriate exception
    }
    catch   //example exception
    {
        success = false;
        ErrorType = 1;
        errorMsg = "ErrorText";
        soapEx = new SoapException(_errorType.ToString() + " : " + errorMsg, SoapException.ServerFaultCode);
    }
    finally
    {
        HttpContext.Current.Response.AddHeader("TransactionID", TransactionId);
        if (success)
        {
            resp = new SuccessResponse();
        }
    }

    if (soapEx != null) throw soapEx;
    return resp;
}

我不知所措......这是预期的行为吗?如果是这样,有什么办法吗?或者我只是在密集?

如果我错过了任何重要信息,请告诉我,谢谢。

1 个答案:

答案 0 :(得分:0)

对于将来遇到这个问题的人,我最终破解了它的方式(在同事的帮助下,信用到期)。

我将标头添加到响应主体中,然后在响应发送后在SoapMessageLoggingExtension中搜索该内容,将HTTP标头添加回来,然后将其从主体中删除。凌乱,但有效。

为了记录,我仍然认为这是框架中的一个错误,除非有人可以解释它为什么不存在。