Herong's Tutorial Notes on Web Service and SOAP
Dr. Herong Yang, Version 4.00

SOAP::Lite for Perl on Windows

This section describes a tutorial on checking SOAP::Lite installation with ActivePerl for Windows systems.

Since I have ActivePerl v5.6.1 installed on my system, I want to see if I have SOAP::Lite on my system.

>dir \perl\site\lib\SOAP
...
05/30/2002  02:04 PM           168,253 Lite.pm
05/24/2002  06:46 PM            12,182 Test.pm
...

>type \perl\site\lib\SOAP\lite.pm | more
# ===================================================================
#
# Copyright (C) 2000-2001 Paul Kulchenko (paulclinger@yahoo.com)
# SOAP::Lite is free software; you can redistribute it
# and/or modify it under the same terms as Perl itself.
#
# $Id: Lite.pm,v 1.47 2002/04/15 16:17:38 paulk Exp $
#
# ===================================================================

package SOAP::Lite;
...

Great. Looks like I do have SOAP::Lite installed as part of ActivePerl. But it seems to an old release.

Last update: 2007.

Sections in This Chapter

SOAP Perl Implementation - SOAP::Lite

SOAP::Lite for Perl on Windows

Installing ActivePerl v5.8.7 on Windows

SOAP::Lite 0.55 in ActivePerl 5.8.7

Dr. Herong Yang, updated in 2009
SOAP::Lite for Perl on Windows