如何跟踪ScriptService WebService的请求?(How to trace Scri

2019-06-23 17:06发布

我有打算将所有SOAP请求和响应的的SoapExtension。 它工作得很好,从使用MS SOAP工具包(工作流程的OnBase)的应用程序调用。 不过,这并不由$。阿贾克斯()的HTML页面上呼叫工作。 下面是一个例子:

$.ajax({
    type: "POST",
    url: url,
    data: data,
    contentType: "application/json; charset=utf-8",
    dataType: "json"
});

它调用一个ASP.NET 3.5的WebService标记的WebService和ScriptService属性:

[WebService(Namespace = XmlSerializationService.DefaultNamespace)]
[ScriptService]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class DepartmentAssigneeService : WebService
{
    private readonly DepartmentAssigneeController _controller = new DepartmentAssigneeController();

    /// <summary>
    /// Fetches the role items.
    /// </summary>
    /// <returns></returns>
    [WebMethod]
    [SoapLog]
    public ListItem[] FetchDepartmentItems()
    {
        return CreateListItems(_controller.FetchDepartments());
    }
}

这里是对的SoapExtension和SoapExtensionAttribute的基本知识:

public class LoggingSoapExtension : SoapExtension, IDisposable { /*...*/ }

[AttributeUsage(AttributeTargets.Method)]
public sealed class SoapLogAttribute : SoapExtensionAttribute { /*...*/ }

我缺少的东西,使LoggingSoapExtension到$阿贾克斯()请求执行?

更新

@克里斯Brandsma

这可能是因为你在要求JSON的结果,而不是通过XML Web服务(数据类型:“JSON”)。 所以ScriptService属性被激活的状态,但你是不是发送SOAP消息。

这回答了为什么的SoapExtension不工作。 与ScriptService跟踪有什么建议? 我想到的唯一的事情是一个ScriptService基类,它提供了一个记录的请求方法。 但后来我不得不打电话给在每一个的WebMethod在每一个ScriptService WebService的那个方法(我有好几个)。 我想,如果可以使用干净和简单的东西作为的SoapExtension属性。

Answer 1:

我找到了解决办法。 通过使用IHttpModule的,我可以记录从任何东西(SOAP,JSON,表格等)的请求。 在下面的实现中,我选择了记录所有的.asmx和.ashx的请求。 从这个问题取代LoggingSoapExtension。

public class ServiceLogModule : IHttpModule
{
    private HttpApplication _application;
    private bool _isWebService;
    private int _requestId;
    private string _actionUrl;

    #region IHttpModule Members

    public void Dispose()
    {
    }

    public void Init(HttpApplication context)
    {
        _application = context;
        _application.BeginRequest += ContextBeginRequest;
        _application.PreRequestHandlerExecute += ContextPreRequestHandlerExecute;
        _application.PreSendRequestContent += ContextPreSendRequestContent;
    }

    #endregion

    private void ContextPreRequestHandlerExecute(object sender, EventArgs e)
    {
        _application.Response.Filter = new CapturedStream(_application.Response.Filter,
                                                          _application.Response.ContentEncoding);
    }

    private void ContextBeginRequest(object sender, EventArgs e)
    {
        string ext = VirtualPathUtility.GetExtension(_application.Request.FilePath).ToLower();
        _isWebService = ext == ".asmx" || ext == ".ashx";

        if (_isWebService)
        {
            ITraceLog traceLog = TraceLogFactory.Create();
            _actionUrl = _application.Request.Url.PathAndQuery;

            StreamReader reader = new StreamReader(_application.Request.InputStream);
            string message = reader.ReadToEnd();
            _application.Request.InputStream.Position = 0;

            _requestId = traceLog.LogRequest(_actionUrl, message);
        }
    }

    private void ContextPreSendRequestContent(object sender, EventArgs e)
    {
        if (_isWebService)
        {
            CapturedStream stream = _application.Response.Filter as CapturedStream;
            if (stream != null)
            {
                ITraceLog traceLog = TraceLogFactory.Create();
                traceLog.LogResponse(_actionUrl, stream.StreamContent, _requestId);
            }
        }
    }
}

我从大量借款捕获从ASP.NET生成的HTML 。



Answer 2:

这可能是因为你在要求JSON的结果,而不是通过XML Web服务(数据类型:“JSON”)。 所以ScriptService属性被激活的状态,但你是不是发送SOAP消息。

你可以具体的数据类型更改为XML,看看是否可行。

http://docs.jquery.com/Ajax/jQuery.ajax#options

此外,对于记录另一种选择是log4net的。 这可能是很多关于你更通用。



Answer 3:

菲德勒(IE浏览器为主,但现在为Firefox)或萤火虫(适用于Firefox)是看着您的客户端请求和响应的宝贵工具。



文章来源: How to trace ScriptService WebService requests?