OT: SOAP::lite

Fairlight fairlite at fairlite.com
Fri Apr 1 08:54:36 PST 2005


This public service announcement was brought to you by Enrique Arredondo:
> Hello,
> 
> For the Perl-SOAP::lite gurus out there, I have a customer that's sending 

This isn't a SOAP::Lite issue, this is a basic perl issue, based on your
error message.

> Failed to access class (InternetPartsOrder): 
> Can't locate InternetPartsOrder.pm in @INC (@INC contains:) at (eval 91) 
> line 3.

Your program is coded to access something incorrectly.  Either you're
failing to modify @INC with 'use lib "/some/path";' so that you can
require/import or 'use' an InternetPartsOrder.pm module that exists,
or you're using a method on something as if there were an actual class
InternetPartsOrder--but which really doesn't exist as a valid class object.

The data you supplied is useless in diagnosing the problem.  The code is
the only thing that will shed light on what's wrong.

mark->


More information about the Filepro-list mailing list