mod_perl & Apache::AuthenNTLM

has anyone used these?

i am useing Apache 2 and mod_perl 1.99_12. (the latest for both)

<Location /test>
PerlAuthenHandler Apache::AuthenNTLM
AuthType ntlm
require valid-user
PerlAddVar ntdomain "CONWAY QGATS006 CNFQS022"
PerlSetVar defaultdomain CONWAY
PerlSetVar ntlmdegub 2
</Location>

When ever i goto www.myUNIXmachine.com/test i get the following error in my httpd errorlog:

[error] [client 10.40.11.138] Can't locate object method "port_get" via package "APR::SockAddr" at /usr/local/lib/perl5/site_perl/5.8.0/sun4-solaris/Apache/AuthenNTLM.pm line 519.

Ok Guys,

Apache::AuthenNTLM I couldn't get to work. I keept getting errors, and well I couldn't find any support for it either. Altho I got an email back from the authors it didn't help. so I abandonded that module.

I did find the following apache module tho @ http://modntlm.sourceforge.net/ and it worked great with minimal configuration and well and extreamly easy install.

It was tested/written on Linux. I built it on a sparc running solaris8 w/ no problems. I couldn't have asked for an easier setup.

The modules authenticates any useres accessing your webpage and the username is captured in $ENV{REMOTE_USER}.

Just thought I would pass this along.