Hello Kevin,
> Rather than try to explain what I'm doing (for now) I'll just mention
> that I installed the latest SOAP::Lite from CPAN
> (MKUTTER/SOAP- Lite-0.710. 08.tar.gz) . When I try to use SOAP::Data I
> get the standard "can't find SOAP/Lite/Data. pm" that I would expect to
> see had I not installed SOAP::Lite at all.
>
> Is there something I need to pass to CPAN to include SOAP::Data?
SOAP::Data is included in the SOAP::Lite module's package. So all you need to do
to use SOAP::Lite.
example:
use SOAP::Lite;
my $data = SOAP::Data->new( name => 'Foo', value => \SOAP::Data->new( name =>
'SubFoo', value => 'special' ) );
print ref $data, "\n";
Take Care,
Lee