I am currently building a web app with Perl Dancer. This app requires users to authenticate using my company's Active Directory. To avoid prompting users for their usernames and passwords, I would like to use Integrated Windows Authentication. However, I am having a hard time locating any documentation that explains how to use this type of authentication with Perl--let alone with the Dancer framework. At this point, I am not sure if I'll be deploying this app on Apache or IIS, so something that can work with both would be preferable. Does anyone have any suggestions to help me get started?
Using Integrated Windows Authentication in a Perl Dancer App
2.1k Views Asked by indiguy At
1
There are 1 best solutions below
Related Questions in PERL
- Perl Command Line Interpreter crashing on exit
- Perl Regex: Merge multiple one-character substrings
- Syntax error in Perl open
- Need help in understanding perl tr command with /d
- Referencing a Schema's table batch/perl
- Retrieving filtered list of files using template toolkit
- “Badly placed ()'s” error when running loc command
- getting google contacts using shuttlecloud
- Perl Module using %EXPORT_TAGS
- get all possible permutations of words in string using perl script
- Can't locate DBI.pm in @INC with Perl
- split string into several substring using indexes
- How to find strings between two specified texts
- Getting a json from a server and assigning it to a variable
- Is there anyway to plot timeline charts in excel sheets using Spreadhseet::WriteExcel module in Perl?
Related Questions in ACTIVE-DIRECTORY
- PowerShell Script to add newuser
- Active directory and linux nslcd binding without extending the AD schema
- Retrieve user information from Active Directory on login
- Feeding Variables in new-aduser -path option in powershell
- Log in through active directory
- Swapping attributes in AD
- How to get LastLogon from ALL Domain Controllers
- Getting LastLogon and LastLogonTimeStamp from ALL Domain Controllers into 1 output CSV
- Spring LDAP Context.REFERRAL to follow
- Avoiding Active Directory Uniqueness Constraint Violation During Rename
- samba retrieving users with arbitrary attributes
- WinApi and work with several domains
- Tomcat LDAP User Auth
- how to add multiple Owner in ADLDS groups
- Zend Framework Active Directory authentication
Related Questions in WINDOWS-AUTHENTICATION
- Where can I find user identity when using webapi with Windows Authentication on IIS8
- Use a desktop application outside of corp network
- Windows Authentication - Restrict SQL Server Backend Access
- Connecting to MSSQL server in PHP using integrated authentication
- Access secured Web Services using integrated windows authentication from Angular app on different server
- IIS and SQL Server ASP.Net C# Entity Framework Windows authentication
- Time lag in changes to Active Directory security groups and User Roles
- Preventing negotiation handshake on subsequent service calls
- web service/api supporting basic, anonymous and windows authentication
- Single sign-on flow using ASP.NET MVC + Active Directory
- Single Sign-On in Windows Applications using AD login
- IIS and Windows authentication not allowing error pages
- Winforms and SQL server windows authentication
- identityserver3 Oauth2 with logged in Windows User
- Web Forms Windows Authentication w/ Remote SQL Database
Related Questions in DANCER
- How to run a Perl Dancer Test
- How to import perl module (xml::twig) in a dancer framework
- Dancer2: fetching nested data from hash stored in YAML session
- Perl (Dancer) & Template Toolkit - looping thru hashref
- Perl Dancer and defining routes with named parameters and nested prefixes
- Can I instantiate an object in Dancer to return a value to display?
- Is there a very simple way to update a page in Perl Dancer using jQuery/AJAX?
- Using CPAN to install Dancer and dependencies
- Perl Dancer2 Authentication Password Management
- DBIx::Class Error on New and Create
- template toolkit displays unique row
- Dancer vs Catalyst [Perl Web Frameworks]
- Searching based on many-to-many relationship
- Handling sorting, tags, search, paging of a list
- Using Integrated Windows Authentication in a Perl Dancer App
Related Questions in STRAWBERRY-PERL
- When referencing two variables perl returns Use of uninitialized value
- Portable Strawberry perl
- Strawberry perl and pp file extension
- Perl package is installed but still see error
- How to install .pm to run the perl script
- Error while installing Alien::XGBoost library
- CPAN install Module::Install fails passing tests (strawberryperl)
- How can I create a portable strawberry with extra bundled modules?
- Perl Strawberry: How to run a perl script by clicking
- Does Strawberry Perl still wipe out /site/lib and /site/bin contents?
- Installing imagemagick perlmagick on Windows Strawberry Perl
- Using Integrated Windows Authentication in a Perl Dancer App
- Why won't Strawberry Perl remove these form feed characters?
- Archive::Zip install fails on Strawberry Perl
- Perl: Looping through directories and getting a directory that doesn't exist?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Checked around and found someone else had had this very question on PerlMonks and it appears to have worked for them. I'm in the process of testing it out right now.
Question on PerlMonks: http://www.perlmonks.org/?node_id=821419
The original poster stated that they used the following guide: http://sivel.net/2007/05/sso-apache-ad-1
All reference using perl module: https://metacpan.org/module/Apache2::AuthenNTLM
Edit: It works!
Make sure your apache config loads the ntlm.conf file
Do not use the entire fqdn for your PDC; just the hostname.
'PerlSetVar ntlmdebug 1' is helpful. Just remember to turn it off afterwards.