明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

ASP.NET創(chuàng)建XML Web服務(wù)全接觸(5)

[摘要]從WebService類(lèi)衍生  使用ASP.NET創(chuàng)建的實(shí)現(xiàn)一個(gè)XML Web服務(wù)的類(lèi)可以選擇性地衍生于WebService類(lèi)來(lái)獲得訪問(wèn)公共的ASP.NET對(duì)象,例如Application、Session、User和Context的權(quán)限。Application和Session屬性提供保存和接收We...

    

  從WebService類(lèi)衍生

  使用ASP.NET創(chuàng)建的實(shí)現(xiàn)一個(gè)XML Web服務(wù)的類(lèi)可以選擇性地衍生于WebService類(lèi)來(lái)獲得訪問(wèn)公共的ASP.NET對(duì)象,例如Application、Session、User和Context的權(quán)限。Application和Session屬性提供保存和接收Web應(yīng)用程序的生命周期或一個(gè)特定的會(huì)話的狀態(tài)的權(quán)限。想獲得關(guān)于狀態(tài)的更多的信息,請(qǐng)看在使用ASP.NET創(chuàng)建的XML Web服務(wù)中管理狀態(tài)一節(jié)。User屬性包含了XML Web服務(wù)調(diào)用者的身份。XML Web服務(wù)可以使用調(diào)用者身份來(lái)判定請(qǐng)求是否被授權(quán)。有關(guān)驗(yàn)證的更多信息,請(qǐng)看加強(qiáng)XML Web服務(wù)安全一節(jié)。Context屬性提供了取得XML Web服務(wù)客戶端請(qǐng)求的所有特定HTTP信息的權(quán)限。

   下面的代碼示例使用Context屬性來(lái)獲得服務(wù)器上的請(qǐng)求時(shí)間。

[C#]
<%@ WebService Language="C#" Class="Util" %>
using System;
using System.Web.Services;

public class Util: WebService {
 [ WebMethod(Description="Returns the time as stored on the Server",EnableSession=false)]
 public string Time()
 {
  return Context.Timestamp.TimeOfDay.ToString();
 }
}
[Visual Basic]
<%@ WebService Language="VB" Class="Util" %>
Imports System
Imports System.Web.Services

Public Class Util
Inherits WebService

<WebMethod(Description := "Returns the time as stored on the Server", _
EnableSession := False)> _
Public Function Time() As String
Return Context.Timestamp.TimeOfDay.ToString()
End Function
End Class

  定義XML Web服務(wù)方法

  用來(lái)實(shí)現(xiàn)XML Web服務(wù)的類(lèi)的方法不能自動(dòng)通過(guò)Web與之通訊,但是有了使用ASP.NET創(chuàng)建的XML Web服務(wù),就能夠很容易的天家這種能力。為了添加這種功能,需要應(yīng)用一個(gè)WebMethod屬性到公共方法中。能夠通過(guò)Web與之通訊的XML Web服務(wù)的方法被稱(chēng)為XML Web服務(wù)方法。
XML Web服務(wù)方法是XML Web服務(wù)使用的消息傳遞基礎(chǔ)結(jié)構(gòu)的關(guān)鍵組成部分。說(shuō)得更精確些,一個(gè)客戶端和一個(gè)XML Web服務(wù)使用消息,尤其是SOAP消息進(jìn)行通訊。客戶端發(fā)送一個(gè)SOAP請(qǐng)求到XML Web服務(wù)中,而一個(gè)XML Web服務(wù)方法返回一個(gè)SOAP響應(yīng)。XML Web服務(wù)定義了它使用操作接受的消息類(lèi)型,正如Web服務(wù)描述語(yǔ)言中定義的那樣。這些操作與一個(gè)XML Web服務(wù)中的每個(gè)XML Web服務(wù)方法關(guān)聯(lián)。 即使這些XML Web服務(wù)方法中的每一個(gè)都是在ASP.NET使用一個(gè)類(lèi)的方法定義的,但要實(shí)現(xiàn)通過(guò)網(wǎng)絡(luò)傳送的數(shù)據(jù),必須把數(shù)據(jù)序列化為XML。同樣地,重要的是要記得XML Web服務(wù)并不能取代DCOM,我們應(yīng)該說(shuō)XML Web服務(wù)是跨越使用行業(yè)標(biāo)準(zhǔn)的平臺(tái)通信的一種消息傳遞基礎(chǔ)結(jié)構(gòu)。

  聲明一個(gè)XML Web服務(wù)方法

  聲明一個(gè)XML Web服務(wù),添加@_WebService指令。更多信息,請(qǐng)看聲明一個(gè)XML Web服務(wù)一節(jié)。

  添加公共方法到實(shí)現(xiàn)XML Web服務(wù)的類(lèi)中。

  應(yīng)用WebMethod屬性到你想要映射到操作的公共方法。

  下面的代碼示例有兩個(gè)公共方法,其一是一個(gè)XML Web服務(wù)方法。Multiply方法是一個(gè)XML Web服務(wù)方法,因?yàn)樗幸粋(gè)應(yīng)用到它上的WebMethod屬性。

[C#]
<%@ WebService Language="C#" Class="Util" %>
using System;
using System.Web.Services;
public class Util: WebService
{
 public int Add(int a, int b)
 {
  return a + b;
 }

 [ WebMethod]
 public long Multiply(int a, int b)
 {
  return a * b;
 }
}
[Visual Basic]
<%@ WebService Language="VB" Class="Util" %>
Imports System
Imports System.Web.Services
Public Class Util
Inherits WebService

Public Function Add(a As Integer, b As Integer) As Integer
Return a + b
End Function

< WebMethod()> _
Public Function Multiply(a As Integer, b As Integer) As Long
Return a * b
End Function
End Class