博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ASP.NET 记录调用webservice有参数的接口
阅读量:6639 次
发布时间:2019-06-25

本文共 1230 字,大约阅读时间需要 4 分钟。

hot3.png

asmx: 

 

/// <summary>

    /// Test 的摘要说明
    /// </summary>
    [WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    [System.ComponentModel.ToolboxItem(false)]
    // 若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消注释以下行。 
    // [System.Web.Script.Services.ScriptService]
    public class Test : System.Web.Services.WebService
    {

        [WebMethod]

        public string HelloWorld()
        {
            return "Hello World";
        }

        /// <summary>

        /// 测试接口
        /// </summary>
        /// <param name="a"></param>
        /// <param name="b"></param>
        /// <returns></returns>
        [WebMethod]
        public int Add(int a,int b)
        {
            return (a + b);
        }
    }

   

 

Global.aspx

 protected void Application_BeginRequest(object sender, EventArgs e)

        {
            if (Request != null)
            {
                try
                {
                    //获取webservice请求参数信息(只记录webservice有参数的接口)
                    if (".asmx".Equals(Request.CurrentExecutionFilePathExtension, StringComparison.OrdinalIgnoreCase) && Request.ContentLength > 0)
                    {
                        using (MemoryStream ms = new MemoryStream())
                        {
                            Request.InputStream.CopyTo(ms);
                            ms.Position = 0;
                            using (StreamReader reader = new StreamReader(ms))
                            {
                                WriteLog(reader.ReadToEnd());
                            }
                        }

                    }

                }
                catch (Exception ex)
                {
                    WriteLog(ex.Message + ex.StackTrace);
                }
                finally
                {
                    Request.InputStream.Position = 0;
                }
            }
        }

转载于:https://my.oschina.net/guanxinsui/blog/1580165

你可能感兴趣的文章
seafile修改
查看>>
UM功能实现和配置技巧(下)--OVA、自动答录
查看>>
2-1 单选按钮(radioButton)
查看>>
VS调试Tip集结
查看>>
命令行模式下junit4.3测试粒度细化到测试方法
查看>>
centos 6 优化字符集
查看>>
分享Silverlight/Windows8/WPF/WP7/HTML5周学习导读(5月27日-6月3日)
查看>>
Silverlight动画制作之动画概述
查看>>
SSRS 2012 建立图表 -- 轴属性
查看>>
Silverlight 4和Flash 10.1/AIR2简单对比和选择
查看>>
zabbix实时监控oracle数据变化
查看>>
数组访问
查看>>
6、域控制器计算机名更改
查看>>
pkgconfig问题,在安装rrdtool的时候,编译又这个问题
查看>>
Kinect for windows的脸部识别
查看>>
[转]仿微软VS.Net多选项卡的窗体布局控件
查看>>
iphone http post get
查看>>
Linux下的网络管理工具—OpenNMS
查看>>
敏捷的陷阱
查看>>
gradle中使用嵌入式(embedded) tomcat, debug 启动
查看>>