`
lovnet
  • 浏览: 6865889 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
文章分类
社区版块
存档分类
最新评论

A Introduction to Create a WebService using .NET

阅读更多

A Introduction to Create a WebService using .NET

严竞雄
JingxiongYan@hotmail.com

首先 在VS2008中新建一个ASP.NET Web服务应用程序 将工程取名为WebService

将Service1.asmx中的代码修改如下

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
using System.Xml.Linq;

namespace WebService
{
/// <summary>
/// Service1 summary
/// </summary>
[WebService(Namespace = "http://blog.csdn.net/delphiscn")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[ToolboxItem(false)]
// [System.Web.Script.Services.ScriptService]
public class Service1 : System.Web.Services.WebService
{

[WebMethod(Description="Return a Value")]
public int sub(int x,int y)
{
return x-y;
}

private void InitializeComponent()
{

}
}
}

在这里 我们定义了一个sub函数 用来取x、y的值 并将其相减结果返回

好了 现在后台的函数调用写好了 先来测试一下 在菜单栏中选择调试、启动调试 或者直接按F5 当出现消息页面后 选择单击sub

SOAP 1.1
以下是 SOAP 1.2 请求和响应示例。所显示的占位符需替换为实际值。

POST /Service1.asmx HTTP/1.1
Host: localhost
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: http://blog.csdn.net/delphiscn/sub

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<sub xmlns="http://blog.csdn.net/delphiscn">
<x>int</x>
<y>int</y>
</sub>
</soap:Body>
</soap:Envelope>


HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<subResponse xmlns="http://blog.csdn.net/delphiscn">
<subResult>int</subResult>
</subResponse>
</soap:Body>
</soap:Envelope>

SOAP 1.2
以下是 SOAP 1.2 请求和响应示例。所显示的占位符需替换为实际值。

POST /Service1.asmx HTTP/1.1
Host: localhost
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<sub xmlns="http://blog.csdn.net/delphiscn">
<x>int</x>
<y>int</y>
</sub>
</soap12:Body>
</soap12:Envelope>

HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<subResponse xmlns="http://blog.csdn.net/delphiscn">
<subResult>int</subResult>
</subResponse>
</soap12:Body>
</soap12:Envelope>

HTTP POST
以下是 HTTP POST 请求和响应示例。所显示的占位符需替换为实际值。

POST /Service1.asmx/sub HTTP/1.1
Host: localhost
Content-Type: application/x-www-form-urlencoded
Content-Length: length

x=string&y=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<int xmlns="http://blog.csdn.net/delphiscn">int</int>

这里我们可以填写具体的x、y的数值 并提交查看返回结果 看是否有误 如x可取10 y取6 单击调用 他返回了一个XML页面

<?xml version="1.0" encoding="utf-8" ?>
<int xmlns="http://blog.csdn.net/delphiscn">4</int>

到此 一个完整的WebService应用已经写好并测试完毕 接下来我们可以自己开发一个前台来接受用户输入 并自己调用后来的服务

在项目中新建一个Web窗体 画上三个TextBox和一个Button 具体代码如下

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebService.WebForm1" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Delphiscn Text Page</title>
<style type="text/css">
#Text1
{
width: 145px;
}
#Text2
{
width: 160px;
}
#form1
{
height: 348px;
}
</style>
<script language="javascript" type="text/javascript">
// <!CDATA[

function Button1_onclick() {

}

// ]]>
</script>
</head>
<body>
<form id="form1" runat="server">
<div style="height: 0px">

</div>
<p>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
</p>
<p>
<asp:Button ID="Button1" runat="server" onclick="Button1_Click1"
Text="Button" />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<asp:Button ID="Button2" runat="server" onclick="Button2_Click" Text="Button" />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</p>
<p>
&nbsp;<asp:Image ID="Image1" runat="server" Height="101px" Width="107px" />
</p>
<asp:TextBox ID="TextBox3" runat="server"></asp:TextBox>
</form>
</body>
</html>

在WebForm1.aspx.cs中加入如下代码

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;

namespace WebService
{
public partial class WebForm1 : System.Web.UI.Page
{

protected void Page_Load(object sender, EventArgs e)
{

}

protected void Button1_Click1(object sender, EventArgs e)
{
WebService.Service1 my = new WebService.Service1();
int x = int.Parse(TextBox1.Text);
int y = int.Parse(TextBox2.Text);
int z = my.sub(x, y);
TextBox3.Text = z.ToString();
}

}
}

至此 一个完整的WebService应用开发完毕

分享到:
评论

相关推荐

    .net调用webservice接口例子

    本示例将详细讲解如何使用.NET来调用一个WebService接口,并提供相关的代码实例。 首先,让我们理解Web Service的基本概念。Web Service是一种基于XML(可扩展标记语言)的标准化方法,用于在不同应用程序之间共享...

    ASP.NET WebService using SoapUI-3.0.1-src

    在这个"ASP.NET WebService using SoapUI-3.0.1-src"的压缩包中,我们很可能是得到了SoapUI 3.0.1版本的源代码,用于配合ASP.NET WebService的测试工作。 首先,让我们详细了解一下ASP.NET WebService的核心概念和...

    .net下WebService调试工具

    .NET Webservice Studio is a tool to invoke webmethods interactively. The user can provide a WSDL endpoint. On clicking button Get the tool fetches the WSDL, generates .NET proxy from the WSDL and ...

    asp.net与webservice技术剖析

    asp.net与webservice技术剖析asp.net与webservice技术剖析asp.net与webservice技术剖析asp.net与webservice技术剖析asp.net与webservice技术剖析asp.net与webservice技术剖析

    android 调用.net webservice

    ### Android调用.NET WebService详解 #### 一、概述 在Android开发中,与服务器进行交互是必不可少的一个环节。常见的交互方式包括HTTP请求、RESTful API等,而WebService作为一种传统但依然广泛使用的通信协议,...

    ASP.NET WebService简单实例

    在本实例中,我们将探讨如何使用ASP.NET构建一个简单的WebService,该服务接收XML数据并返回响应的XML格式数据。 首先,我们需要理解WebService的基本概念。WebService是一种基于标准的、平台无关的、可互操作的...

    java 调.net webservice

    最近开发要做一人用java 调.net webservice的,以上是我用axis1.4写的一个小例子,希望可以借鉴

    .net webservice 和PB之间的调用

    .NET WebService和PowerBuilder(PB)之间的调用是软件开发中的一个常见场景,尤其是在企业级应用集成中。这里我们将深入探讨这两个技术如何协同工作以及如何实现它们之间的通信。 首先,让我们理解什么是.NET ...

    C#_.NET_动态调用webservice的三种方式

    C# _.NET_动态调用webservice的三种方式 在本文中,我们将讨论如何动态调用WebService的三种方式。在某些情况下,我们可能需要在程序运行期间动态调用一个未知的服务。这可以通过使用.NET Framework的System.Web....

    .Net Webservice Studio (Build on .net 4.5)

    Test .NET web service application. Build on .net 4.5. Official version (.net 2.0) my cannot run on win 2012+: http://webservicestudio.codeplex.com/releases/view/13915

    .net webservice,webservice,web服务,.net web服务

    .NET WebService,也称为ASMX(ASP.NET Web Service),是微软.NET Framework提供的一种技术,用于构建基于Web的应用程序,使得不同系统之间的数据交换变得简单。Web服务基于开放标准,如SOAP(Simple Object Access...

    .Net Webservice Studio (Build on .net 4.5) source code

    .NET Webservice Studio是一款基于.NET Framework 4.5构建的Web服务开发和测试工具。源代码的提供对于开发者来说是一份宝贵的资源,可以帮助他们深入理解Web服务的工作原理,以及如何利用.NET Framework进行此类应用...

    HttpURLConnection调用.net WebService

    在这个场景下,我们将探讨如何利用`HttpURLConnection`来调用.NET平台上的WebService服务。 **一、HttpURLConnection简介** `HttpURLConnection`是Java `java.net`包中的一个类,它提供了HTTP协议的连接、读写功能...

    VB.net webservice包括服务端及客户端程序

    VB.NET Web Service是一种基于.NET Framework的开发技术,用于创建能够通过Internet进行通信的服务。这个标题表明我们关注的是一个包含服务端和客户端程序的VB.NET Web Service项目,它使用了Visual Studio 2010作为...

    Spring.Net开发WebService

    在这个特定的话题中,我们将深入探讨如何利用Spring.NET来开发Web服务,尤其是WebService。WebService是一种基于XML的、平台和语言无关的通信协议,它允许不同的应用程序之间进行交互。 首先,我们需要理解Spring...

    java访问.net webservice获取与设置cookie

    在IT行业中,跨平台通信是常见的需求,Java和.NET之间的交互也不例外。本篇文章将深入探讨如何使用Java访问.NET Web服务,并在过程中获取和设置Cookie,以便实现更高效、安全的会话管理。首先,让我们理解Web服务的...

    Java调用ASP.NET的WebService接口实例

    Java调用.NET的WebService接口实例,jar包删减到三个,干净清爽,里面包含注多注释和图解,搞了半天的家伙拿出来与大家分享,无任何BUG,修改里面的参数即可直接运行,对于这种好东西,花了半天时间10分不算高,重在...

    WebService在.NET中的实战应用一

    WebService在.NET中的实战应用是开发跨平台、跨语言应用程序的重要技术。它基于开放标准,如SOAP(简单对象访问协议)和WSDL(Web服务描述语言),使得不同系统间的数据交换变得简单而有效。本篇文章将深入探讨.NET...

    vb.net webservice 源程序

    在IT领域,Web服务是一种允许不同应用程序之间进行通信的技术,而VB.NET(Visual Basic .NET)是Microsoft开发的一种面向对象的编程语言,用于构建高效、可靠的.NET Framework应用程序。本源程序集成了VB.NET与Web...

Global site tag (gtag.js) - Google Analytics