Actually I am looking at doing this by using a mod for apache called mod_auth_smb. I believe it is written in perl. It requires that you have the samba client libraries installed on the *nix system. Then you can install the module using:
perl -MCPAN -e'shell' install Apache::AuthenSmb
This will install the stuff you need for authentication. Then I put in my httpd.conf file this line where I wanted the authentication point to be:
<Location > AuthName "Warning this is a restricted area" AuthType Basic PerlSetVar myPDC PDC.domain PerlSetVar myDOMAIN domain PerlAuthenHandler Apache::AuthenSmb require valid-user </Location>
you need to change PDC.domain to your PDC server and your domain along with changing the domian on the next line. Because it passes these variables through to the authentication script. Also in your open Location tag you need to specify the location (acording to the webserver like /). Location can also be replaced by file directive to allow authentication to a file.

Hope this helps. </code>

--BigJoe

Learn patience, you must.
Young PerlMonk, craves Not these things.
Use the source Luke.

In reply to Re: Checking Windows Authentication by BigJoe
in thread Checking Windows Authentication by lapointd

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.