HTTP::Server::Simple 0.38 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News HTTP::Server::Simple 0.38 (Default branch)
# 1  
Old 01-13-2009
HTTP::Server::Simple 0.38 (Default branch)

HTTP::Server::Simple is a very simple standaloneHTTP daemon in Perl with no non-core moduledependencies. It's ideal for building a standaloneHTTP-based UI to your existing tools.License: Perl LicenseChanges:
Improved startup banner generation.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

SIMPLE HTTP PROXY SERVER CHECKER (Completed)

Simple Http Proxy Server Checker Script with curl mirror proxies-scripts/proxc at master * Anoncheg1/proxies-scripts * GitHub output in terminal HTTP, HTTP Connect (HTTPS not supported) command line: proxc filename where filename is file like 119.110.69.185:8080 119.235.16.41:8080... (4 Replies)
Discussion started by: 654321
4 Replies

2. Shell Programming and Scripting

Simple HTTP server in GAWK

Hi, Not sure if this post belongs to this forum but I have been trying every so often to setup a simple http server in awk. After a couple of try and errors I finally came across this: REMCONF - TCP/IP Internetworking With `gawk' This tutorial is not to cut and paste without change, so here... (0 Replies)
Discussion started by: ripat
0 Replies
Login or Register to Ask a Question
Authen::Simple(3pm)					User Contributed Perl Documentation				       Authen::Simple(3pm)

NAME
Authen::Simple - Simple Authentication SYNOPSIS
use Authen::Simple; use Authen::Simple::Kerberos; use Authen::Simple::SMB; my $simple = Authen::Simple->new( Authen::Simple::Kerberos->new( realm => 'REALM.COMPANY.COM' ), Authen::Simple::SMB->new( domain => 'DOMAIN', pdc => 'PDC' ) ); if ( $simple->authenticate( $username, $password ) ) { # successfull authentication } DESCRIPTION
Simple and consistent framework for authentication. METHODS
o new This method takes an array of "Authen::Simple" adapters. Required. o authenticate( $username, $password ) Returns true on success and false on failure. SEE ALSO
Authen::Simple::ActiveDirectory. Authen::Simple::CDBI. Authen::Simple::DBI. Authen::Simple::FTP. Authen::Simple::HTTP. Authen::Simple::Kerberos. Authen::Simple::LDAP. Authen::Simple::NIS. Authen::Simple::PAM. Authen::Simple::Passwd. Authen::Simple::POP3. Authen::Simple::RADIUS. Authen::Simple::SMB. Authen::Simple::SMTP. Authen::Simple::SSH. AUTHOR
Christian Hansen "chansen@cpan.org" COPYRIGHT
This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-04-19 Authen::Simple(3pm)