SlideShare une entreprise Scribd logo
1  sur  15
Б.Сод-Од

Улаанбаатар хот
2013
Агуулга
 Веб үйлчилгээ
 Яагаад веб үйлчилгээ хэрэгтэй вэ?
 Яагаад PHP хэл гэж?
 Жишээ

 Ашигласан материал
 Дүгнэлт
Веб үйлчилгээ
Төрөл
 SOAP
 XML–RPC
 REST
 SOAP
 SOAP болон REST нь PHP хэлэнд хамгийн
түгээмэл ашиглагддаг
Веб үйлчилгээ SOAP
 SOAP гэдэг нь Simple Object Access Protocol гэсэн

үгний товчлол юм. Энэ нь дамжуулах протокол
ашиглан клинт хэрэглэгчээс хүсэлт илгээн сервес
талд боловсруулан хариу илгээнэ.
 Веб үйлчилгээ нь XML хэлийг ашиглан дамжуулах
протоколоор мэдээллээ дамжуулдаг.
 Nusoap нь PHP Хэлний хамгийн боловсронгүй болсон
сангийн багц юм.
 WSDL файл бэлэн байгаатай ажиллахгүй
SOAP АРГА ЗАМ
Хүсэлт
HTTP
Хариу
C=нэмэх(a,b)
ХҮСЭЛТ

ХАРИУ
Яагаад веб үйлчилгээ хэрэгтэй вэ?
| Веб сайт
| Програмчлалын хэл
-----------------------------------------------------------------------------------| facebook.com
| PHP
| yahoo.com
| PHP*
| wikipedia.org
| PHP
| taobao.com
| PHP
| youku.com
| PHP
| wordpress.com
| PHP
| sohu.com
| PHP
| hao123.com
| PHP
| apple.com
| PHP
| yahoo.co.jp
| PHP
| sogou.com
| PHP
| mozilla.com
| PHP/Python
| 56.com
| PHP
| flickr.com
| PHP

Why Web services make business sense?
http://news.cnet.com/Why-Web-services-make-business-sense/2009-1017_3275442.html
Яагаад веб үйлчилгээ хэрэгтэй вэ?
 Системээ өргөжүүлэхэд маш том тулгуур
 Бусад системүүдтэй холбогдох боломжтой
 Харилцааны зардал үүсэхгүй
 Өөрийн бүтээгдхүүнээ бусдад түгээх
Яагаад PHP гэж?
 Хамгийн өргөн ашиглагддаг хэл юм.
 XML дэмждэг
 CURL дэмждэг
 OOP
 SOAP нэмэлттэй.
 Үнэгүй түүлүүд олон байдаг.
Жишээ
<?php
require_once('lib/nusoap.php');
$server = new soap_server();
$server->configureWSDL('greetingSodstarServer', 'urn:greetingSodstarS');
$server->register('checkUser',
array('name' => 'xsd:string' ,'password' => 'xsd:string'),
array('return' => 'xsd:string'), // output parameters
'urn:sodwsdl',
'urn:hellowsdl#hello',
'rpc',
'encoded',
'Мэндчилгээ хийх'
// documentation
);
function checkUser($name,$name1) {}

// method name
// input parameters
// namespace
// soapaction
// style
// use

$HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA) ? $HTTP_RAW_POST_DATA : '';
$server->service($HTTP_RAW_POST_DATA);
?>
Жишээ









<?php
require_once('lib/nusoap.php');
$client = new nusoap_client('http://localhost/webs/soap/server.php?wsdl', true);
$err = $client->getError();
if ($err)
{
echo '<h2>Сервэртэй буруу холболт хийж байна.</h2><pre>' . $err . '</pre>';
}
































$username="Sodstar";
$pass="0000";
if(isset($_POST["username"]))
{
$username=$_POST["username"];
}
if(isset($_POST["password"]))
{
$pass=$_POST["password"];
}
$result = $client->call('checkUser', array('name' => $username,'password' => $pass));
if ($client->fault) {
echo '<h2>Буруу байна</h2><pre>';
print_r($result);
echo '</pre>';
} else {
$err = $client->getError();
if ($err) {
echo '<h2>Алдаа үүслээ</h2><pre>' . $err . '</pre>';
} else {
echo '<h2>Үр дүн</h2><pre>';
//print_r($result);
if($result=="Yes")
header("location: users");
else
header("location: 404");
echo '</pre>';
}
}
?>
Жишээ
 import org.ksoap2.SoapEnvelope;import

org.ksoap2.serialization.SoapObject;import
org.ksoap2.serialization.SoapSerializationEnvelope;impor
org.ksoap2.transport.HttpTransportSE;
 SoapObject request = new SoapObject(NAMESPACE,

METHOD_NAME);
 SoapSerializationEnvelope envelope = new
SoapSerializationEnvelope(SoapEnvelope.VER11);
 HttpTransportSE androidHttpTransport = new
HttpTransportSE(URL);
Ашигласан материал
 http://www.xml.com/pub/a/2001/04/04/webservices/
 http://www.w3c.org/tr/soap
 http://www.w3schools.com/SOAP/soap_intro.asp
 http://www.php.net

 http://www.codewalkers.com/c/a/Miscellaneous/Using-

SOAP-with-PHP/
Дүгнэлт
 Веб үйлчилгээг хэрэглэх нь өөрийн үйлчилгээг

бусдад хэд дахин илүү хувиар хүргэх боломжтой
юм.Одоо үед томоохон системүүдэд заавал байх
ёстой хэрэгцээ шаардлагад веб үйлчилгээнэ
орсон байна.
АНХААРАЛ ТАВЬСАНД БАЯРЛАЛАА

Contenu connexe

En vedette

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

En vedette (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Веб үйлчилгээ

  • 2. Агуулга  Веб үйлчилгээ  Яагаад веб үйлчилгээ хэрэгтэй вэ?  Яагаад PHP хэл гэж?  Жишээ  Ашигласан материал  Дүгнэлт
  • 3. Веб үйлчилгээ Төрөл  SOAP  XML–RPC  REST  SOAP  SOAP болон REST нь PHP хэлэнд хамгийн түгээмэл ашиглагддаг
  • 4. Веб үйлчилгээ SOAP  SOAP гэдэг нь Simple Object Access Protocol гэсэн үгний товчлол юм. Энэ нь дамжуулах протокол ашиглан клинт хэрэглэгчээс хүсэлт илгээн сервес талд боловсруулан хариу илгээнэ.  Веб үйлчилгээ нь XML хэлийг ашиглан дамжуулах протоколоор мэдээллээ дамжуулдаг.  Nusoap нь PHP Хэлний хамгийн боловсронгүй болсон сангийн багц юм.  WSDL файл бэлэн байгаатай ажиллахгүй
  • 7. Яагаад веб үйлчилгээ хэрэгтэй вэ? | Веб сайт | Програмчлалын хэл -----------------------------------------------------------------------------------| facebook.com | PHP | yahoo.com | PHP* | wikipedia.org | PHP | taobao.com | PHP | youku.com | PHP | wordpress.com | PHP | sohu.com | PHP | hao123.com | PHP | apple.com | PHP | yahoo.co.jp | PHP | sogou.com | PHP | mozilla.com | PHP/Python | 56.com | PHP | flickr.com | PHP Why Web services make business sense? http://news.cnet.com/Why-Web-services-make-business-sense/2009-1017_3275442.html
  • 8. Яагаад веб үйлчилгээ хэрэгтэй вэ?  Системээ өргөжүүлэхэд маш том тулгуур  Бусад системүүдтэй холбогдох боломжтой  Харилцааны зардал үүсэхгүй  Өөрийн бүтээгдхүүнээ бусдад түгээх
  • 9. Яагаад PHP гэж?  Хамгийн өргөн ашиглагддаг хэл юм.  XML дэмждэг  CURL дэмждэг  OOP  SOAP нэмэлттэй.  Үнэгүй түүлүүд олон байдаг.
  • 10. Жишээ <?php require_once('lib/nusoap.php'); $server = new soap_server(); $server->configureWSDL('greetingSodstarServer', 'urn:greetingSodstarS'); $server->register('checkUser', array('name' => 'xsd:string' ,'password' => 'xsd:string'), array('return' => 'xsd:string'), // output parameters 'urn:sodwsdl', 'urn:hellowsdl#hello', 'rpc', 'encoded', 'Мэндчилгээ хийх' // documentation ); function checkUser($name,$name1) {} // method name // input parameters // namespace // soapaction // style // use $HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA) ? $HTTP_RAW_POST_DATA : ''; $server->service($HTTP_RAW_POST_DATA); ?>
  • 11. Жишээ         <?php require_once('lib/nusoap.php'); $client = new nusoap_client('http://localhost/webs/soap/server.php?wsdl', true); $err = $client->getError(); if ($err) { echo '<h2>Сервэртэй буруу холболт хийж байна.</h2><pre>' . $err . '</pre>'; }                               $username="Sodstar"; $pass="0000"; if(isset($_POST["username"])) { $username=$_POST["username"]; } if(isset($_POST["password"])) { $pass=$_POST["password"]; } $result = $client->call('checkUser', array('name' => $username,'password' => $pass)); if ($client->fault) { echo '<h2>Буруу байна</h2><pre>'; print_r($result); echo '</pre>'; } else { $err = $client->getError(); if ($err) { echo '<h2>Алдаа үүслээ</h2><pre>' . $err . '</pre>'; } else { echo '<h2>Үр дүн</h2><pre>'; //print_r($result); if($result=="Yes") header("location: users"); else header("location: 404"); echo '</pre>'; } } ?>
  • 12. Жишээ  import org.ksoap2.SoapEnvelope;import org.ksoap2.serialization.SoapObject;import org.ksoap2.serialization.SoapSerializationEnvelope;impor org.ksoap2.transport.HttpTransportSE;  SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);  SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);  HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);
  • 13. Ашигласан материал  http://www.xml.com/pub/a/2001/04/04/webservices/  http://www.w3c.org/tr/soap  http://www.w3schools.com/SOAP/soap_intro.asp  http://www.php.net  http://www.codewalkers.com/c/a/Miscellaneous/Using- SOAP-with-PHP/
  • 14. Дүгнэлт  Веб үйлчилгээг хэрэглэх нь өөрийн үйлчилгээг бусдад хэд дахин илүү хувиар хүргэх боломжтой юм.Одоо үед томоохон системүүдэд заавал байх ёстой хэрэгцээ шаардлагад веб үйлчилгээнэ орсон байна.

Notes de l'éditeur

  1. SOAP ni 1998 ondmicrosofthugjuulsen.combrozereghel deer 1991 ondhergejsen, Simple object oriented protocol, Dave Winer, Don Box, Bob Atkinson
  2. Facebooklogin,app,mobile