C#写webservice服务引用

 

我在自己试着写了一个sqlhelper以后,在这个项目的基础上写了一个webservice的服务引用。由于是第一次写,也只是观摩着别人的写。

首先在新建了一个web服务文件。

 public  SqlWhhWebService1()
        {
            InitializeComponent();
        }
        #region Component Designer generated code

        //Required by the Web Services Designer 
        private IContainer components = null;

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
        }

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        protected override void Dispose(bool disposing)
        {
            if (disposing && components != null)
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #endregion

然后自己调用自己的sqlhelper类中的方法,实现对数据的基本操作,其实和我们在bll中的调用一样,只不过通过[WebMethod]把自己所定义的方法暴露出来供外部调用,[WebMethod(Description="添加操作")]中的Description属性标注了对改方法的作用,同时在weiservice页面中显示出来。

View Code
 1  [WebMethod(Description="添加操作")]
 2         public ResultModel AddData(string sql, SqlParameter[] sp)
 3         {
 4             return WhhSqlHelper.Intersql(sql, sp);
 5         }
 6         /// <summary>
 7         /// 执行更新操作
 8         /// </summary>
 9         /// <param name="sql"></param>
10         /// <param name="sp"></param>
11         /// <returns></returns>
12          [WebMethod(Description = "修改操作")]
13         public ResultModel Updata(string sql,SqlParameter[] sp)
14         {
15             return WhhSqlHelper.UpdateSql(sql, sp);
16         }
17         [WebMethod(Description = "查询操作")]
18         public ResultModel selectSQL(string sql,SqlParameter[]sp)
19         {
20             return WhhSqlHelper.SingSelectSql(sql, sp);
21         }
22         [WebMethod(Description = "删除操作")]
23         public ResultModel Delete(string sql,SqlParameter[] sp)
24         {
25             return WhhSqlHelper.DeleteSql(sql,sp);
26         }
27         [WebMethod(Description = "是否存在操作")]
28         public ResultModel IsExistent(string sql, SqlParameter[] sp)
29         {
30             return WhhSqlHelper.IsExistent(sql, sp);
31         }

这些只是对基本的数据操作的web调用,还可以针对一些公共功能给提炼出来进行web封装,比如说,不同表的增删改查,这些都可以的把封装到一起。

其中的 WhhSqlHelper是我写的一个sqlhelper类,ResultModel是我写的一个数据操作的返回实体Model.

转载于:https://www.cnblogs.com/qzzy/archive/2013/03/06/2946313.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值