|
PHP - Calling .NET Web Service ใช้ PHP เรียกเว็บเซอร์วิส ของ ASP.NET ด้วย nusoap |
PHP- Calling .NET Web Service ใช้ PHP เรียกเว็บเซอร์วิส ของ ASP.NET ด้วย nusoap บทความ PHP เรียกใช้งาน Web Service ที่ถูกสร้างและพัฒนาด้วย .NET Web Service โดยใช้ Library ของ nusoap สำหรับบทความนี้ จะได้ยกตัวอย่างการเรียกใช้งานด้วย PHP ซึ่งก่อน ๆ นี้จะเป็นการเขียน Web Service ด้วย .NET แต่เรียกใช้งานด้วย .NET วิธีการนั้นไม่ยากอย่างที่คิด เพียงไป Download ตัว Library ของ nusoap ก็สามารถใช้งานได้ในทันที
Download nusoap library
http://sourceforge.net/projects/nusoap/
หรือจะดาวน์โหลด Code ทั้งหมดข้างล่างก็ได้
อธิบายเบื้องต้น จากตัวอย่างการสร้าง Web Service ด้วย .NET Framework ทั้ง 3 ตัวอย่างนี้
Go to : ASP.NET การสร้าง Web Service และการเรียกใช้งาน Web Service ด้วย ASP.NET แบบ Step by Step
Go to : ASP.NET กับ Web Service การเขียนเว็บเซอร์วิสรับ-ส่งข้อมูลจาก Database ผ่าน DataSet และ DataTable
Go to : Check Login ผ่าน Web Service ตัวอย่างเว็บเซอร์วิส ตรวจสอบ Username และ Password (.NET)
ในตัวอย่างทั้ง 3 บทความ จะมีตัวอย่างการเรียกใช้งานในแต่ล่ะรุปแบบ และ บทความนี้จะยกตัวอย่างให้เห็นทั้ง 3 ตัวอย่าง
ตัวอย่างที่ 1 จากบทความ
Go to : ASP.NET การสร้าง Web Service และการเรียกใช้งาน Web Service ด้วย ASP.NET แบบ Step by Step
ตัวอย่างนี้เป็นการให้บริการ Web Service ที่แสดงคำว่า Hello World Khun ( ค่าที่ส่งไป)
มี Method ชื่อว่า HelloWorld และรับค่า Parameter คำว่า strName
Code ที่อยู่ใน Web Service
Imports System.Web.Services
Imports System.Web.Services.Protocols
Imports System.ComponentModel
' To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
' <System.Web.Script.Services.ScriptService()> _
<System.Web.Services.WebService(Namespace:="http://tempuri.org/")> _
<System.Web.Services.WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1)> _
<ToolboxItem(False)> _
Public Class Service1
Inherits System.Web.Services.WebService
<WebMethod()> _
Public Function HelloWorld(ByVal strName As String) As String
Return "Hello World Khun ( " & strName & " )"
End Function
End Class
จะเห็นว่ามี Method ที่ชื่อว่า HelloWorld และรับค่า strName และมีการ Return "Hello World Khun ( " & strName & " )"
การเรียกใช้งานผ่าน PHP ด้วย nusoap
WebService1.php
<html>
<head>
<title>ThaiCreate.Com</title>
</head>
<body>
<?php
include("lib/nusoap.php");
$client = new nusoap_client("http://localhost:5377/Service1.asmx?wsdl",true);
$params = array(
'strName' => "Weerachai Nukitram"
);
$data = $client->call("HelloWorld",$params);
print_r($data);
echo "<hr>";
echo $data["HelloWorldResult"];
?>
</body>
</html>
ใน PHP การเรียกใช้งาน Web Service ของ .NET จะต้องเติม ?wsdl เข้าไปด้วย
$client->call("HelloWorld",$params);
- HelloWorld คือ Method ใน Web Service
- $params คือ Parameter ใน Web Service
ทดสอบเรียกด้วยการรัน URL ของ PHP ที่ชื่อว่า WebService1.php
Screenshot
คำอธิบาย
จากรูปจะเห็นสิ่งที่ Web Service ได้ทำการ return ค่ากลับมาในรูปแบบของ XML (ในตัวอย่างจะใช้ print_r เพื่อแสดงค่าในรูปแบบของ array ทั้งนี้สามารถใช้ function ของ XML ใน php อ่านค่าเหล่านี้เพื่อนำไปใช้)
กรณีที่รับส่งค่าสามารถใช้ JSON ในการรับส่งค่าจาก Web Service ของ ASP.NET ได้ ลองอ่านบทความนี้
Go to : ASP.NET กับ JSON และการรับ-ส่งข้อมูล JSON ผ่าน Web Service (VB.NET , C#)
ตัวอย่างที่ 2 จากบทความ
Go to : ASP.NET กับ Web Service การเขียนเว็บเซอร์วิสรับ-ส่งข้อมูลจาก Database ผ่าน DataSet และ DataTable
ตัวอย่างนี้เป็นการให้บริการ Web Service ที่แสดงรายละเอียดของลูกค้า เมื่อมีการส่ง CustomerID ไปยัง Web Service
มี Method ชื่อว่า DetailCustomer และรับค่า Parameter คำว่า strCustomerID
Code ที่อยู่ใน Web Service
Imports System.Web.Services
Imports System.Web.Services.Protocols
Imports System.ComponentModel
Imports System.Data
Imports System.Data.SqlClient
' To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
' <System.Web.Script.Services.ScriptService()> _
<System.Web.Services.WebService(Namespace:="http://tempuri.org/")> _
<System.Web.Services.WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1)> _
<ToolboxItem(False)> _
Public Class getCustomerDetail
Inherits System.Web.Services.WebService
<WebMethod()> _
Public Function DetailCustomer(ByVal strCusID As String) As DataTable
Dim objConn As New System.Data.SqlClient.SqlConnection
Dim objCmd As New System.Data.SqlClient.SqlCommand
Dim dtAdapter As New System.Data.SqlClient.SqlDataAdapter
Dim ds As New DataSet
Dim dt As DataTable
Dim strConnString As String
Dim strSQL As New StringBuilder
strConnString = "Server=localhost;UID=sa;PASSWORD=;database=mydatabase;Max Pool Size=400;Connect Timeout=600;"
strSQL.Append(" SELECT * FROM customer ")
strSQL.Append(" WHERE [CustomerID] = '" & strCusID & "' ")
objConn.ConnectionString = strConnString
With objCmd
.Connection = objConn
.CommandText = strSQL.ToString()
.CommandType = CommandType.Text
End With
dtAdapter.SelectCommand = objCmd
dtAdapter.Fill(ds)
dt = ds.Tables(0)
dtAdapter = Nothing
objConn.Close()
objConn = Nothing
Return dt
End Function
End Class
จะเห็นว่ามี Method ที่ชื่อว่า DetailCustomer และรับค่า strCusID และมีการ Return เป็น DataTable ซึ่งใน .NET สามารถรับค่าเป็น DataTable ได้ในทันที แต่ใน PHP จะต้องใช้ function ของ XML ในการอ่านค่าอีกที
การเรียกใช้งานผ่าน PHP ด้วย nusoap
WebService2.php
<html>
<head>
<title>ThaiCreate.Com</title>
</head>
<body>
<?php
include("lib/nusoap.php");
$client = new nusoap_client("http://localhost:5377/getCustomerDetail.asmx?wsdl",true);
$params = array(
'strCusID' => "C001"
);
$data = $client->call("DetailCustomer",$params);
print_r($data);
?>
</body>
</html>
ใน PHP การเรียกใช้งาน Web Service ของ .NET จะต้องเติม ?wsdl เข้าไปด้วย
$client->call("DetailCustomer",$params);
- DetailCustomer คือ Method ใน Web Service
- $params คือ Parameter ใน Web Service
ทดสอบเรียกด้วยการรัน URL ของ PHP ที่ชื่อว่า WebService2.php
Screenshot
คำอธิบาย
จากรูปจะเห็นสิ่งที่ Web Service ได้ทำการ return ค่ากลับมาในรูปแบบของ XML (ในตัวอย่างจะใช้ print_r เพื่อแสดงค่าในรูปแบบของ array ทั้งนี้สามารถใช้ function ของ XML ใน php อ่านค่าเหล่านี้เพื่อนำไปใช้)
กรณีที่รับส่งค่าสามารถใช้ JSON ในการรับส่งค่าจาก Web Service ของ ASP.NET ได้ ลองอ่านบทความนี้
Go to : ASP.NET กับ JSON และการรับ-ส่งข้อมูล JSON ผ่าน Web Service (VB.NET , C#)
ตัวอย่างที่ 3 จากบทความ
Go to : Check Login ผ่าน Web Service ตัวอย่างเว็บเซอร์วิส ตรวจสอบ Username และ Password (.NET)
ตัวอย่างนี้เป็นการให้บริการ Web Service ที่แสดงสถานะการ Login เมื่อส่ง Username และ Password เข้าไปตรวจสอบใน Web Service โดยถ้าข้อมูลถูกต้องจะ return ค่า true (1) และ เมื่อไม่ถูกต้องจะ return ค่า false(0)
มี Method ชื่อว่า CheckUserLogin และรับค่า Parameter คำว่า strUser และ strPassword
Code ที่อยู่ใน Web Service
Imports System.Web.Services
Imports System.Web.Services.Protocols
Imports System.ComponentModel
Imports System.Data
Imports System.Data.SqlClient
' To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
' <System.Web.Script.Services.ScriptService()> _
<System.Web.Services.WebService(Namespace:="http://tempuri.org/")> _
<System.Web.Services.WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1)> _
<ToolboxItem(False)> _
Public Class userLogin
Inherits System.Web.Services.WebService
<WebMethod()> _
Public Function CheckUserLogin(ByVal strUser As String, _
ByVal strPassword As String) As Boolean
Dim objConn As New SqlConnection
Dim objCmd As New SqlCommand
Dim dtAdapter As SqlDataAdapter
Dim dt As New DataTable
Dim strConnString As String
Dim strSQL As New StringBuilder
strConnString = "Server=localhost;UID=sa;PASSWORD=;database=mydatabase;Max Pool Size=400;Connect Timeout=600;"
objConn.ConnectionString = strConnString
strSQL.Append(" SELECT * FROM member ")
strSQL.Append(" WHERE [Username] = @sUsername ")
strSQL.Append(" AND [Password] = @sPassword ")
dtAdapter = New SqlDataAdapter(strSQL.ToString(), objConn)
objCmd = dtAdapter.SelectCommand
With objCmd
.Parameters.Add("@sUsername", SqlDbType.VarChar).Value = strUser
.Parameters.Add("@sPassword", SqlDbType.VarChar).Value = strPassword
End With
dtAdapter.Fill(dt)
dtAdapter = Nothing
objConn.Close()
objConn = Nothing
If dt.Rows.Count > 0 Then
Return True
Else
Return False
End If
End Function
End Class
จะเห็นว่ามี Method ที่ชื่อว่า CheckUserLogin และรับค่า strUser และ strPassword และมีการ Return ค่า true(1) กรณีที่ถูกต้อง และจะมีการ return ค่าเป็น false(0) กรณีที่ข้อมูลไม่ถูกต้อง
การเรียกใช้งานผ่าน PHP ด้วย nusoap
WebService3.php
<html>
<head>
<title>ThaiCreate.Com</title>
</head>
<body>
<?php
include("lib/nusoap.php");
$client = new nusoap_client("http://localhost:5377/userLogin.asmx?wsdl",true);
$params = array(
'strUser' => "win",
'strPassword' => "win001",
);
$data = $client->call("CheckUserLogin",$params);
print_r($data);
echo "<hr>";
echo $data["CheckUserLoginResult"];
?>
</body>
</html>
ใน PHP การเรียกใช้งาน Web Service ของ .NET จะต้องเติม ?wsdl เข้าไปด้วย
$client->call("CheckUserLogin",$params);
- CheckUserLogin คือ Method ใน Web Service
- $params คือ Parameter ใน Web Service
ทดสอบเรียกด้วยการรัน URL ของ PHP ที่ชื่อว่า WebService3.php
Screenshot
คำอธิบาย
จากรูปจะเห็นสิ่งที่ Web Service ได้ทำการ return ค่า 1 (true) กลับมา แต่จะออกมาในรูปแบบของ XML (ในตัวอย่างจะใช้ print_r เพื่อแสดงค่าในรูปแบบของ array ทั้งนี้สามารถใช้ function ของ XML ใน php อ่านค่าเหล่านี้เพื่อนำไปใช้)
กรณีที่รับส่งค่าสามารถใช้ JSON ในการรับส่งค่าจาก Web Service ของ ASP.NET ได้ ลองอ่านบทความนี้
Go to : ASP.NET กับ JSON และการรับ-ส่งข้อมูล JSON ผ่าน Web Service (VB.NET , C#)
Download Code !!
บทความอื่น ๆ ที่เกี่ยวข้อง
Go to : ASP.NET and Web Service การสร้างและเรียกใช้งาน Web Service บน .NET Framework
|