Perl Tutorials - Herong's Tutorial Examples
Dr. Herong Yang, Version 5.10

SOAP::Lite - SOAP Server-Client Communication Module

This chapter provides tutorial examples and notes on the SOAP::Lite module. Topics include SOAP introduction; features of SOAP::Lite module; SOAP server example with SOAP::Transport::TCP; SOAP client example; SOAP::Lite tracing functions.

What Is SOAP?

What Is SOAP::Lite?

SOAP::Transport::TCP - SOAP Server with TCP Protocol

SoapTcpClient.pl - SOAP Client Example with TCP Protocol

SOAP::Lite Tracing Functions

SOAP::Transport::HTTP - SOAP Server with HTTP Protocol

Conclusions:

  • SOAP (Simple Object Accessing Protocol) is a client-server communication protocol to access remote objects.
  • SOAP::Lite is a collection of Perl modules which provides a simple and lightweight interface to the Simple Object Access Protocol (SOAP) both on client and server side.
  • You can use the SOAP::Transport::TCP module to create a SOAP server program over the TCP protocol.
  • You can use the SOAP::Transport::HTTP module to create a SOAP server program over the HTTP protocol.
  • You can use uri() and proxy() methods of the SOAP::Lite module to access a remote service through a SOAP proxy server.
  • The SOAP::Lite tracing function is very useful for debugging.

If you need to know more about SOAP, please read my other book: "Herong's Tutorial Notes on SOAP".

Table of Contents

 About This Book

 Perl on Linux Systems

 ActivePerl on Windows Systems

 Data Types: Values and Variables

 Expressions, Operations and Simple Statements

 User Defined Subroutines

 Perl Built-in Debugger

 Name Spaces and Perl Module Files

 Symbolic (or Soft) References

 Hard References - Addresses of Memory Objects

 Objects (or References) and Classes (or Packages)

 Typeglob and Importing Identifiers from Other Packages

 String Built-in Functions and Performance

 File Handles and Data Input/Output

 Open Files in Binary Mode

 Open Directories and Read File Names

 File System Functions and Operations

 Converting Perl Script to Executable Binary

 Using DBM Database Files

 Using MySQL Database Server

 Socket Communication Over the Internet

 XML::Simple Module - XML Parser and Generator

 XML Communication Model

SOAP::Lite - SOAP Server-Client Communication Module

 Perl Programs as IIS Server CGI Scripts

 CGI (Common Gateway Interface)

 XML-RPC - Remote Procedure Call with XML and HTTP

 RPC::XML - Perl Implementation of XML-RPC

 Integrating Perl with Apache Web Server

 References

 Printable Copy - PDF Version

Dr. Herong Yang, updated in 2009
SOAP::Lite - SOAP Server-Client Communication Module