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
SOAP::WSDL::Server::Simple(3pm) 			User Contributed Perl Documentation			   SOAP::WSDL::Server::Simple(3pm)

NAME
SOAP::WSDL::Server::Simple - CGI based SOAP server for HTTP::Server::Simple SYNOPSIS
package TestServer; use base qw(HTTP::Server::Simple::CGI); use MyServer::TestService::TestPort; sub handle_request { my ($self, $cgi) = @_; my $server = MyServer::TestService::TestPort->new({ dispatch_to => 'main', transport_class => 'SOAP::WSDL::Server::Simple', }); $server->handle($cgi); } my $httpd = __PACKAGE__->new(); $httpd->run(); USAGE
To use SOAP::WSDL::Server::Simple efficiently, you should first create a server interface using wsdl2perl. SOAP::WSDL::Server::Simple dispatches all calls to appropriately named methods in the class or object set via "dispatch_to". See the generated server class on details. DESCRIPTION
Lightweight SOAP server for use with HTTP::Server::Simple, mainly designed for testing purposes. It allows to set up a simple SOAP server without having to configure CGI or mod_perl stuff. SOAP::WSDL::Server::Simple is not recommended for production use. METHODS
handle See synopsis above. LICENSE AND COPYRIGHT
Copyright 2004-2008 Martin Kutter. This file is part of SOAP-WSDL. You may distribute/modify it under the same terms as perl itself AUTHOR
Martin Kutter <martin.kutter fen-net.de> REPOSITORY INFORMATION
$Rev: 391 $ $LastChangedBy: kutterma $ $Id: Client.pm 391 2007-11-17 21:56:13Z kutterma $ $HeadURL: https://soap-wsdl.svn.sourceforge.net/svnroot/soap-wsdl/SOAP-WSDL/trunk/lib/SOAP/WSDL/Client.pm $ perl v5.10.1 2010-12-21 SOAP::WSDL::Server::Simple(3pm)