博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Webservice简单案例
阅读量:6225 次
发布时间:2019-06-21

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

东西不用,时间长了就会被忘掉。重新拾起来

做一个简单的Demo,便于以后的查询

服务器端--新建Calculator.asmx

using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Services;namespace WebServiceDemo{    ///     /// Calculator 的摘要说明    ///     [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 Calculator : System.Web.Services.WebService    {        [WebMethod]        public int Add(int a,int b)        {            return a + b;        }        [WebMethod]        public int Sub(int a, int b)        {            return a - b;        }        [WebMethod]        public int Mul(int a, int b)        {            return a * b;        }        [WebMethod]        public int Div(int a, int b)        {            try            {                return a / b;            }            catch             {                return 0;            }        }    }}

 

客户端调用

增加Web引用 http://localhost:21901/Calculator.asmx

localhost.Calculator client = new localhost.Calculator();     //localhost为增加的web时起的名称            client.Add(1, 2);

 

转载地址:http://wluna.baihongyu.com/

你可能感兴趣的文章
从Handler.post(Runnable r)再一次梳理Android的消息机制(以及handler的内存泄露)
查看>>
windows查看端口占用
查看>>
Yii用ajax实现无刷新检索更新CListView数据
查看>>
JDBC的事务
查看>>
Io流的概述
查看>>
App 卸载记录
查看>>
JavaScript变量和作用域
查看>>
JS 对象机制深剖——new 运算符
查看>>
开源SIP服务器加密软件NethidPro升级
查看>>
百度页面分享插件源代码
查看>>
《别做正常的傻瓜》的一些读书心得
查看>>
作业:实现简单的shell sed替换功能和修改haproxy配置文件
查看>>
spring配置多数据源问题
查看>>
Altium 拼板方法以及 注意的 地方
查看>>
简明Linux命令行笔记:tail
查看>>
SQL PLUS远程连接
查看>>
2000条你应知的WPF小姿势 基础篇<15-21>
查看>>
PMP考试的过与只是
查看>>
java 监控 收集资料3(收集中)
查看>>
将String保存成文件
查看>>