Create Web Service in ASP.NET : Step 2

การเรียกใช้ webservice
ให่เรา add web reference โดยการ คลิกขวาที่ solution explorer >> add web reference
หลังจากนั้นให้ ใส่ url ของ web service ที่ต้องการ




เมื่อทำการ Add แล้วจะได้ดังภาพ




การเรียกใช้งาน Web Service
เพิ่ม url ของ web service ที่ file web.config








สร้าง function เพื่อเรียกใช้




Public serv As WebRef.Service
Private servurl As String = ConfigurationSettings.AppSettings("myservice")


Public Function Getds_serv(ByVal id As String) As DataSet


Dim Ds As New DataSet


serv = New WebRef.Service
serv.Url = servurl
Ds = serv.Getdata(id)

Return Ds

End Function



web service จะรับค่า parameter เพื่อเป็นเงื่อนไขการดึงข้อมูล
และส่งค่ากลับมาเป็น dataset

กลับไป >> step 1

ไม่มีความคิดเห็น: