本篇文章給大家分享的是有關(guān)VB.NET中怎么創(chuàng)建WebService,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司一直秉承“誠信做人,踏實(shí)做事”的原則,不欺瞞客戶,是我們最起碼的底線! 以服務(wù)為基礎(chǔ),以質(zhì)量求生存,以技術(shù)求發(fā)展,成交一個(gè)客戶多一個(gè)朋友!專注中小微企業(yè)官網(wǎng)定制,成都做網(wǎng)站、網(wǎng)站制作、成都外貿(mào)網(wǎng)站建設(shè),塑造企業(yè)網(wǎng)絡(luò)形象打造互聯(lián)網(wǎng)企業(yè)效應(yīng)。
VB.NET創(chuàng)建WebService.
具體步驟如下:
1. 新建一個(gè)項(xiàng)目,選擇ASP.NET Web服務(wù),命名為:“WebService For 業(yè)務(wù)層”。
2. 添加兩個(gè)Sql DataAdapter,一個(gè)為Customer_da,它指向NorthWind數(shù)據(jù)庫的Customers表,另一個(gè)為Order_da,指向Northwind數(shù)據(jù)庫的Orders表。
3. 然后生成一個(gè)Typed DataSet(選擇“數(shù)據(jù)”菜單的“生成數(shù)據(jù)集”),命名為:Super_ds.
4. 數(shù)據(jù)庫連接已經(jīng)完成,下一步我們將考慮它與表示層之間的通信,這里我們定義兩個(gè)方法。一個(gè)為:Get_DataSet,它返回一個(gè)Super_ds類型的數(shù)據(jù)集,另一個(gè)為:Update_DataSet,它負(fù)責(zé)更新數(shù)據(jù)庫數(shù)據(jù), 方法代碼如下:
Public Function Get_Dataset() As super_ds customer_da.Fill(Super_ds1.Customers) order_da.Fill(Super_ds1.Orders) Return Super_ds1 End Function Public Sub Update_Dataset() Super_ds1.AcceptChanges() End Sub
你可以運(yùn)行測(cè)試一下你的VB.NET建立WebService,它將提供兩個(gè)方法。返回的DataSet是以XML表示的。
業(yè)務(wù)層的完整代碼如下:
Imports System.Web.Services Public Class Service1 Inherits System.Web.Services.WebService 'Web Services Designer Generated Code……。 Public Function Get_Dataset() As super_ds customer_da.Fill(Super_ds1.Customers) order_da.Fill(Super_ds1.Orders) Return Super_ds1 End Function Public Sub Update_Dataset() Super_ds1.AcceptChanges() End Sub ' WEB SERVICE EXAMPLE ' The HelloWorld() example service returns the string Hello World. ' To build, uncomment the following lines then save and build the project. ' To test this web service, ensure that the .asmx file is the start page ' and press F5. ' ' Public Function HelloWorld() As String ' HelloWorld = "Hello World" ' End Function End Class
以上就是VB.NET中怎么創(chuàng)建WebService,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。