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


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News HTTP::Server::Simple 0.37 (Default branch)
# 1  
Old 01-02-2009
HTTP::Server::Simple 0.37 (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.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::HTTP(3pm)				User Contributed Perl Documentation				 Authen::Simple::HTTP(3pm)

NAME
Authen::Simple::HTTP - Simple HTTP authentication SYNOPSIS
use Authen::Simple::HTTP; my $http = Authen::Simple::HTTP->new( url => 'http://www.host.com/protected' ); if ( $http->authenticate( $username, $password ) ) { # successfull authentication } # or as a mod_perl Authen handler PerlModule Authen::Simple::Apache PerlModule Authen::Simple::HTTP PerlSetVar AuthenSimpleHTTP_url "http://www.host.com/protected" <Location /protected> PerlAuthenHandler Authen::Simple::HTTP AuthType Basic AuthName "Protected Area" Require valid-user </Location> DESCRIPTION
Authenticate against an HTTP server. METHODS
* new This method takes a hash of parameters. The following options are valid: * url Url to authenticate against. Required. url => 'http://www.host.com/protected' * agent Any object that is a subclass of LWP::UserAgent. agent => LWP::UserAgent->new; * log Any object that supports "debug", "info", "error" and "warn". log => Log::Log4perl->get_logger('Authen::Simple::HTTP') * authenticate( $username, $password ) Returns true on success and false on failure. SEE ALSO
Authen::Simple. LWP::UserAgent. LWPx::ParanoidAgent. AUTHOR
Christian Hansen "ch@ngmedia.com" COPYRIGHT
This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.8.8 2008-03-01 Authen::Simple::HTTP(3pm)