博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在IIS6上部署WebService
阅读量:6821 次
发布时间:2019-06-26

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

在IIS6上部署WebService

2016-12-07

目录:

1

2
3

1 创建web service项目


  

用Visual Studio模板“ASP.NET Web 服务应用程序”新建项目。

其它不变,只增加WebMethod Add方法,如下图1所示 

图1 创建Web Service项目

把WebService1.dll放在目录D:\Study\WebSerice\bin下,把Service1.asmx和Web.config放在目录D:\Study\WebSerice下,代码如下:

Service1.asmx.cs代码:

using System.Web.Services;namespace WebService1{    ///     /// Service1 的摘要说明    ///     [WebService(Namespace = "http://tempuri.org/")]    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]    [System.ComponentModel.ToolboxItem(false)]    public class Service1 : System.Web.Services.WebService    {        [WebMethod]        public float Add(float a,float b)        {            return a + b;        }    }}

Service1.asmx代码:

<%@ WebService Language="C#" CodeBehind="Service1.asmx.cs" Class="WebService1.Service1" %>

Web.config代码:

2 部署WebService


 

部署跟 中的一致

3 浏览页面


 

进入Add页面,输入参数后可以调用add方法

 

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

你可能感兴趣的文章
C++中malloc/free和new/delete 的使用
查看>>
ASP.NET MVC读取XML并使用ViewData显示
查看>>
4.lists(双向链表)
查看>>
导入项目的时候报错Error:Could not find com.android.support.constraint:constraint-layout:1.0.0-alpha7...
查看>>
微服务(Microservices )简介
查看>>
.NET中的流
查看>>
在ASP.NET MVC 4中使用Kendo UI Grid
查看>>
SpringCloud_概述与入门
查看>>
vim精简版教程
查看>>
js判断DOM是否包含另一个DOM
查看>>
干货 | 用python3+dlib教你的程序察言观色
查看>>
Kafka的Consumer负载均衡算法
查看>>
换个姿势学数学:二次函数与拆弹部队
查看>>
React-事件机制杂记
查看>>
[LeetCode] Unique Word Abbreviation 独特的单词缩写
查看>>
[20171105]exp imp buffer参数解析.txt
查看>>
JEESZ分布式框架--单点登录集成方案
查看>>
连载31:软件体系设计新方向:数学抽象、设计模式、系统架构与方案设计(简化版)(袁晓河著)...
查看>>
22-高级路由:OSPF 路由认证:明文、密文
查看>>
APP推广如何实现邀请追踪?
查看>>