Foo Ji-Haw wrote:
> Hi guys,
> 
> I'm not exactly new to modperl, but I'm thinking of having
> Apache/mp2 host soap services rather than start up the daemon
> via the command line.
> 
> The latest ActivePerl comes only with Apache::SOAP. I think
> this is not the right one for MP2. A search on CPAN shows a
> Apache2::SOAP, which I want to use.
> 
> I use ActivePerl (on Windows), and it seems that I can't do a
> 'ppm install apache2-soap'; it's not on their library list.
> Other than downloading the tar.gz file and unpacking it into
> the perl/site/lib/ folder on my own, is there a cleaner way to do it?
> 
> Your comments are appreciated.

Its not a good idea to try to unpack packages directly into the lib
directory. You should unpack in a temporary directory and follow the
installation instructions, which usually consists of the following
possibly with a few variations/additions:

        perl Makefile.PL
        $(make)
        $(make) test
        $(make) install

With suitable substitutions for $(make).

Of course, if you have configured the CPAN module, it could be as simple
as:

        cpan install Apache2::SOAP

HTH

-- 
Brian Raven
 


-----------------------------------------------------------------------
The information contained in this e-mail is confidential and solely 
for the intended addressee(s). Unauthorised reproduction, disclosure, 
modification, and/or distribution of this email may be unlawful. If you 
have received this email in error, please notify the sender immediately 
and delete it from your system. The views expressed in this message 
do not necessarily reflect those of LIFFE Holdings Plc or any of its subsidiary 
companies.
-----------------------------------------------------------------------


_______________________________________________
ActivePerl mailing list
[email protected]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to