This is not the document you are looking for? Use the search form below to find more!

Report home > Others

Web services in PHP using the NuSOAP library

0.00 (0 votes)
Document Description
Web services in PHP using the NuSOAP library
File Details
Submitter
  • Name: eliasz

We are unable to create an online viewer for this document. Please download the document instead.

Web services in PHP using the NuSOAP library screenshot

Add New Comment




Related Documents

Web services in PHP using the NuSOAP library

by: sylwester, 39 pages

Web services in PHP using the NuSOAP library

Web services in PHP using the NuSOAP library

by: aldin, 39 pages

Web services in PHP using the NuSOAP library

Apache Web Services in the Real World, an E-Science Perspective

by: lantos, 20 pages

Apache Web Services in the Real World, an E-Science Perspective

Connecting to Web Services on Android

by: aleksander, 27 pages

Connecting to Web Services on Android

A Survey On Web Services In Telecommunications

by: nusreta, 22 pages

A survey on Web Services in TelecommunicationsDonna Griffin and Dirk PeschCork Institute of Technology, IrelandIEEE Communications Magazine, July 2007??? ...

Drupal web services

by: norito, 34 pages

Drupal Web Services Darren Mothersele Drupal Web Services Uses of web services Classifications of web services Example web service Types of web services in Drupal ...

QUANTIFICATION OF ETHANOL'S ANTIPUNISHMENT EFFECT IN HUMANS USING THE GENERALIZED MATCHING EQUATION

by: shinta, 20 pages

Increases in rates of punished behavior by the administration of anxiolytic drugs (called antipunish- ment effects) are well established in animals but not humans. The present study examined

Summer Training in PHP

by: duccsystems, 4 pages

DUCC Systems invites all to the summer training in PHP program. Batches are starting in June and July.

Aware Bear Computer Repair Rochester, New York New Apple iPod Repair and Services In Rochester NY

by: Aware Bear, 2 pages

Aware Bear Computer Repair in Rochester, New York is offering a brand new Mac / Apple iPod repair and services in Pittsford, New York. This is a brand new service for Mac / Apple iPod owners looking ...

Aware Bear Computers in Rochester New York Announces a New Laptop DC Power Jack Repair and Services in Rochester NY

by: Aware Bear, 2 pages

Aware Bear Computers in Rochester New York announces a brand new laptop dc power jack repair, service and replacement in the Greater Rochester. DELL, Toshiba, IBM, Lenovo, Sony Vaio, HP, Compaq and ...

Content Preview
PHP web services with the NuSOAP libraryFulvio Corno, Dario Boninoe-lite Research GroupDipartimento di Automatica e InformaticaPolitecnico di TorinoTorino - Italyhttp://elite.polito.itv. 2.1, April 2, 2009Web services in PHPThe NuSOAP libraryLicenseOutline1Web services in PHP2The NuSOAP librarySOAP ServerSOAP ClientUsing WSDLError CheckingComplex Types3LicensePHP web services with the NuSOAP library2 / 39Web services in PHPThe NuSOAP libraryLicenseGoalsCreate and use Web Services using the RPC messaging modelBeing able to create a Web Service in PHP (server-side)Being able to call an existing Web Service from PHP code(client-side)Hiding, as much as possible, the creation of SOAP messages,and their decodingAvoid the difficulty of creating/editing WSDL filesPHP web services with the NuSOAP library3 / 39Web services in PHPThe NuSOAP libraryLicensePotential SolutionsPhp comes with a “standard” SOAP libraryhttp://www.php.net/soaptutorial at http://devzone.zend.com/node/view/id/689The PEAR library has a SOAP modulehttp://pear.php.net/package/SOAPprobably the most updated, but not well documentedThe NuSOAP library (we will use this)http://sourceforge.net/projects/nusoap/PHP web services with the NuSOAP library4 / 39Web services in PHPThe NuSOAP libraryLicenseLimitationsAll considered libraries are easy to use when the input(s) andoutput of the web service are simple types (numbers, strings)Complex types are difficult to “teach” to the libraries, and theyare not fully supportedFor practical reasons, we will try to use only xsd:string typesPHP web services with the NuSOAP library5 / 39Web services in PHPThe NuSOAP libraryLicenseOutline1Web services in PHP2The NuSOAP librarySOAP ServerSOAP ClientUsing WSDLError CheckingComplex Types3LicensePHP web services with the NuSOAP library6 / 39Web services in PHPThe NuSOAP libraryLicenseNuSOAP characteristicsWritten in PHP (no new modules to install or configure)Simple object-oriented interfaceMay work with or without WSDL filesMay automatically generate a WSDL file for the servicePHP web services with the NuSOAP library7 / 39Web services in PHPThe NuSOAP libraryLicenseInstallationDownload fromhttp://sourceforge.net/projects/nusoap/Uncompress the file, and copy the lib directory under yourPHP projectIn your PHP files (client or server), import the needed classesrequire_once(’lib/nusoap.php’);PHP web services with the NuSOAP library8 / 39Web services in PHPThe NuSOAP libraryLicenseOutline1Web services in PHP2The NuSOAP librarySOAP ServerSOAP ClientUsing WSDLError CheckingComplex Types3LicensePHP web services with the NuSOAP library9 / 39Web services in PHPThe NuSOAP libraryLicenseSOAP ServerMinimal SOAP serverrequire_once(’lib/nusoap.php’) ;$server = new nusoap_server; // Create server instance$server->register( ’myFunction’ ) ;function myFunction($parameters) {. . .return $result;}// Use the request to (try to) invoke the service$HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA)? $HTTP_RAW_POST_DATA : ’’;$server->service($HTTP_RAW_POST_DATA);PHP web services with the NuSOAP library10 / 39Document Outline
  • Web services in PHP
  • The NuSOAP library
    • SOAP Server
    • SOAP Client
    • Using WSDL
    • Error Checking
    • Complex Types
  • License

Download
Web services in PHP using the NuSOAP library

 

 

Your download will begin in a moment.
If it doesn't, click here to try again.

Share Web services in PHP using the NuSOAP library to:

Insert your wordpress URL:

example:

http://myblog.wordpress.com/
or
http://myblog.com/

Share Web services in PHP using the NuSOAP library as:

From:

To:

Share Web services in PHP using the NuSOAP library.

Enter two words as shown below. If you cannot read the words, click the refresh icon.

loading

Share Web services in PHP using the NuSOAP library as:

Copy html code above and paste to your web page.

loading