server
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4739
Abyss Web Server X1 2.6
Abyss Web Server X1 is a free and compact Web server. It supports SSL, compression, CGI/FastCGI, ISAPI, XSSI, URL rewriting,bandwidth throttling, anti-leeching, anti-hacking, and features a remote web management interface. more>> <<less
Download (0.64MB)
Added: 2009-04-04 License: Freeware Price: $0
73043 downloads
Messa 1.01a (Server)
Messa is an instant messager client and server. more>>
Messa is an instant messager client and server. The client has a curses interface and works on the console.
Messa project supports multilingual messages and private messages. The server supports monoprocess operation (without threads), the ability to choose the listening port, and the ability to run under the console.
<<lessMessa project supports multilingual messages and private messages. The server supports monoprocess operation (without threads), the ability to choose the listening port, and the ability to run under the console.
Download (0.011MB)
Added: 2006-07-21 License: LGPL (GNU Lesser General Public License) Price:
1190 downloads
Streamnik Server 0.02
Streamnik Server project is an IPTV server based on the open codecs Ogg/Vorbis and Ogg/Theora. more>>
Streamnik Server project is an IPTV server based on the open codecs Ogg/Vorbis and Ogg/Theora. It can stream a number of different channels and is optimized to run on leased (virtual) servers. The program schedule is defined by an SQL database table and can be changed at runtime.
<<less Download (0.12MB)
Added: 2007-06-15 License: GPL (GNU General Public License) Price:
872 downloads
Darwin Calendar Server
Darwin Calendar Server provides a CalDAV server. more>>
Darwin Calendar Server provides a CalDAV server.
The Darwin Calendar Server is a standards-compliant server that allows multiple users to collaboratively share calendaring information. It provides a shared location on the network to store schedules, and allows users to send each other and manage invitations.
In order to provide interoperability with multiple calendaring clients, the server implements the CalDAV protocol, which is an extension of WebDAV, which is in turn an extension of HTTP.
<<lessThe Darwin Calendar Server is a standards-compliant server that allows multiple users to collaboratively share calendaring information. It provides a shared location on the network to store schedules, and allows users to send each other and manage invitations.
In order to provide interoperability with multiple calendaring clients, the server implements the CalDAV protocol, which is an extension of WebDAV, which is in turn an extension of HTTP.
Download (MB)
Added: 2007-02-07 License: The Apache License Price:
1003 downloads
kraskarta 0.9 (Server)
kraskarta is an interactive map engine. more>>
kraskarta is an interactive map engine. It is based on Macromedia Flash technology with server scripts written in Perl with a PostgreSQL database.
kraskartas features include the ability to search for a street and address, for a bus route, and for information about objects.
Enhancements:
- This is the first open release after being proprietary code.
<<lesskraskartas features include the ability to search for a street and address, for a bus route, and for information about objects.
Enhancements:
- This is the first open release after being proprietary code.
Download (0.23MB)
Added: 2006-10-12 License: GPL (GNU General Public License) Price:
1107 downloads
pDonkey Server 0.01
pDonkeyS is Perl implementation of an eDonkey server. more>>
pDonkeyS is Perl implementation of an eDonkey server. The main goal of the server is to provide framework for further eDonkey protocol exploration, but it could be useful in testing of client software, since the server can be configured to output very detailed debugging info about eDonkey traffic.
This server was made to provide framework for further eDonkey protocol exploration, but it could be usefull in testing of client software, since the server can be configured to output very detailed debug info about eDonkey traffic.
<<lessThis server was made to provide framework for further eDonkey protocol exploration, but it could be usefull in testing of client software, since the server can be configured to output very detailed debug info about eDonkey traffic.
Download (0.011MB)
Added: 2006-06-20 License: GPL (GNU General Public License) Price:
1228 downloads
C++ Server Pages 1.0.2
C++ Server Pages is a partial Java server pages and servlet implementation in C++. more>>
C++ Server Pages is a partial Java server pages and servlet implementation in C++. C++ Server Pages is written as Apache 2.0 modules, with the focus on performance.
<<less Download (1.5MB)
Added: 2005-12-05 License: GPL (GNU General Public License) Price:
1508 downloads
Net::CyanChat::Server 0.04
Net::CyanChat::Server is a Perl interface for running a CyanChat server. more>>
Net::CyanChat::Server is a Perl interface for running a CyanChat server.
SYNOPSIS
use Net::CyanChat::Server;
our $cho = new Net::CyanChat::Server (
host => localhost,
port => 1812,
debug => 1,
);
# Start the server.
$cho->connect();
# Loop.
$cho->start();
Net::CyanChat::Server is a Perl interface for running your own CyanChat server (or, rather, to run a chat server based on the CyanChat protocol that other CC clients would recognize).
<<lessSYNOPSIS
use Net::CyanChat::Server;
our $cho = new Net::CyanChat::Server (
host => localhost,
port => 1812,
debug => 1,
);
# Start the server.
$cho->connect();
# Loop.
$cho->start();
Net::CyanChat::Server is a Perl interface for running your own CyanChat server (or, rather, to run a chat server based on the CyanChat protocol that other CC clients would recognize).
Download (0.020MB)
Added: 2007-03-23 License: Perl Artistic License Price:
945 downloads
POEST::Server 0.20030407
POEST::Server - The Poest Master General. more>>
POEST::Server - The Poest Master General.
SYNOPSIS
my $server = POEST::Server->new(
Config => POEST::Config::Genearl,
ConfigFile => /etc/poest.conf,
);
$server->start;
ABSTRACT
This module controls the server itself.
All high-level server interaction happens here.
new()
Create a new server instance. This will not make the server run, but it will configure it, load the modules and configure them, and spawn the proper POE sessions. All the parameters passed to new will be passed directly to the configurator of your choice, as defined by the Config parameter (POEST::Config by default).
run()
Make the server run. This will block execution when called directly.
start()
Fork and start the server. This method will return the pid of the server. If the pidfile configuration parameter is found in the configuration class, an attempt is made to write that pid file. If that attempt fails, or if the pid file already exists, and exception is thrown and the attempt to start the server is stalled.
stop()
Stop the server. If a pidfile was specified, the pid will be read from it. Otherwise, an attempt to find a process name with the value of $0 is tried, by default that is set to poest.
NOTE: As of right this minute, the process table magic isnt written as Proc::ProcessTable isnt ported to Darwin.
Configuration
Thses are the configuration parameters that the server itself needs from the configuration mechanism.
hostname
The main host that this smtp server runs for.
port
The port this server will run on.
plugin
This is a multi-value parameter. Each value is the full name of the module that contains the plugin class.
<<lessSYNOPSIS
my $server = POEST::Server->new(
Config => POEST::Config::Genearl,
ConfigFile => /etc/poest.conf,
);
$server->start;
ABSTRACT
This module controls the server itself.
All high-level server interaction happens here.
new()
Create a new server instance. This will not make the server run, but it will configure it, load the modules and configure them, and spawn the proper POE sessions. All the parameters passed to new will be passed directly to the configurator of your choice, as defined by the Config parameter (POEST::Config by default).
run()
Make the server run. This will block execution when called directly.
start()
Fork and start the server. This method will return the pid of the server. If the pidfile configuration parameter is found in the configuration class, an attempt is made to write that pid file. If that attempt fails, or if the pid file already exists, and exception is thrown and the attempt to start the server is stalled.
stop()
Stop the server. If a pidfile was specified, the pid will be read from it. Otherwise, an attempt to find a process name with the value of $0 is tried, by default that is set to poest.
NOTE: As of right this minute, the process table magic isnt written as Proc::ProcessTable isnt ported to Darwin.
Configuration
Thses are the configuration parameters that the server itself needs from the configuration mechanism.
hostname
The main host that this smtp server runs for.
port
The port this server will run on.
plugin
This is a multi-value parameter. Each value is the full name of the module that contains the plugin class.
Download (0.024MB)
Added: 2007-04-10 License: GPL (GNU General Public License) Price:
929 downloads
QEMU Server Tools 0.2a
QEMU Server Tools is a set of simple command-line scripts for managing multiple QEMU VMs easily without requiring a GUI. more>>
QEMU Server Tools is a set of simple command-line scripts for managing multiple QEMU VMs easily without requiring a graphical frontend.
QEMU Server Tools organizes VMs into directories and mimics the usage of command line tools from VMware Server.
<<lessQEMU Server Tools organizes VMs into directories and mimics the usage of command line tools from VMware Server.
Download (0.012MB)
Added: 2006-10-05 License: GPL (GNU General Public License) Price:
1120 downloads
Server Monitor 0.1
Server Monitor is a theme which displays the status of your servers. more>>
Server Monitor is a theme which displays the status of your servers. Also you can start / stop them by clicking the names.
You cann add servers by editing the py-file. You may resize theme in the .theme-fille.
Based on vpn by N7DR (http://www.kde-look.org/content/show.php?content=39390).
<<lessYou cann add servers by editing the py-file. You may resize theme in the .theme-fille.
Based on vpn by N7DR (http://www.kde-look.org/content/show.php?content=39390).
Download (0.002MB)
Added: 2006-06-19 License: GPL (GNU General Public License) Price:
1222 downloads
CrossFTP Server 1.06
CrossFTP Server is a professional FTP Server for multiple platforms more>>
CrossFTP Server is a professional FTP Server for multiple platforms. It is a high-performance, extremely configurable, and most of all a secure FTP server. CrossFTP Server has an easy-to-use GUI for user to configure the servers behavior.
Main features:
- 100% pure Java, free, open source FTP server.
- Multi platform support and multithreaded design.
- User virtual directory, write permission, idle time-out and upload/download bandwidth limitation support.
- You can monitor all the user activities.
- Anonymous login support.
- Both upload and download files are resumable.
- Handles both ASCII and binary data transfers.
- IP restriction support to allow/ban IPs.
- Database and LDAP can be used to store user data.
- All the FTP messages are customizable.
- Implicit/explicit SSL/TLS support.
- MDTM support - your users can change the date-time stamp of files.
- "MODE Z" support for faster data upload/download.
- Easy installation/update by Java Web Start technology.
<<lessMain features:
- 100% pure Java, free, open source FTP server.
- Multi platform support and multithreaded design.
- User virtual directory, write permission, idle time-out and upload/download bandwidth limitation support.
- You can monitor all the user activities.
- Anonymous login support.
- Both upload and download files are resumable.
- Handles both ASCII and binary data transfers.
- IP restriction support to allow/ban IPs.
- Database and LDAP can be used to store user data.
- All the FTP messages are customizable.
- Implicit/explicit SSL/TLS support.
- MDTM support - your users can change the date-time stamp of files.
- "MODE Z" support for faster data upload/download.
- Easy installation/update by Java Web Start technology.
Download (MB)
Added: 2007-02-16 License: The Apache License Price:
995 downloads
NNML::Server 1.14
NNML::Server is a minimal NNTP server. more>>
NNML::Server is a minimal NNTP server.
SYNOPSIS
perl -MNNML::Server -e server
perl -MNNML::Server -e unspool
NNML::Server server implements a minimal NNTP server. It is (hope-) fully conformant to rfc977. In addition the commands XOVER and AUTHINFO are implemented.
Supported commands:
ARTICLE, AUTHINFO, BODY, GROUP, HEAD, HELP, IHAVE, LAST, LIST,
MODE, NEWGROUPS, NEWNEWS, NEXT, POST, QUIT, SLAVE, STAT
XOVER, XHDR, LIST NEWSGROUPS ng-spec
The main reason for writing this was to synchronize my mail directories across different hosts. The Mail directories are MH-Style with a .overview file in each folder and an active file in the base directory. These are maintained by the Emacs Gnus backend NNML. To get started, you can generate/update this files using the overview program. Upon POST and IHAVE commands this files will also be updated.
To start from scratch use:
touch /tmp/active;
perl -MNNML::Server -e server(base => "/tmp", port => 3000)
To export your mh-Mail use:
perl overview -base ~/Mail
perl -MNNML::Server -e server(base => "$ENV{HOME}/Mail", port => 3000)
The command POST and IHAVE honour the Newsgroups header if not overwritten by the X-Nnml-Groups header. Articles will contain an appropriate X-Nnml-Groups header when retrieved by message-id.
When the client submits the SLAVE command, all forther post requests are spooled in $Config-spool> (usually ~/Mail/NNML.spool) for performance reasons. You can process the spooled articles by submitting the XUNSPOOL command or by calling
perl -MNNML::Server -e unspool
Rejected articles will be saven in $Config-bad> (usually ~/Mail/NNML.bad)
<<lessSYNOPSIS
perl -MNNML::Server -e server
perl -MNNML::Server -e unspool
NNML::Server server implements a minimal NNTP server. It is (hope-) fully conformant to rfc977. In addition the commands XOVER and AUTHINFO are implemented.
Supported commands:
ARTICLE, AUTHINFO, BODY, GROUP, HEAD, HELP, IHAVE, LAST, LIST,
MODE, NEWGROUPS, NEWNEWS, NEXT, POST, QUIT, SLAVE, STAT
XOVER, XHDR, LIST NEWSGROUPS ng-spec
The main reason for writing this was to synchronize my mail directories across different hosts. The Mail directories are MH-Style with a .overview file in each folder and an active file in the base directory. These are maintained by the Emacs Gnus backend NNML. To get started, you can generate/update this files using the overview program. Upon POST and IHAVE commands this files will also be updated.
To start from scratch use:
touch /tmp/active;
perl -MNNML::Server -e server(base => "/tmp", port => 3000)
To export your mh-Mail use:
perl overview -base ~/Mail
perl -MNNML::Server -e server(base => "$ENV{HOME}/Mail", port => 3000)
The command POST and IHAVE honour the Newsgroups header if not overwritten by the X-Nnml-Groups header. Articles will contain an appropriate X-Nnml-Groups header when retrieved by message-id.
When the client submits the SLAVE command, all forther post requests are spooled in $Config-spool> (usually ~/Mail/NNML.spool) for performance reasons. You can process the spooled articles by submitting the XUNSPOOL command or by calling
perl -MNNML::Server -e unspool
Rejected articles will be saven in $Config-bad> (usually ~/Mail/NNML.bad)
Download (0.023MB)
Added: 2007-04-19 License: Perl Artistic License Price:
919 downloads
USB Server for Linux 1.9.5
Simply and powerful software solution for sharing and accessing USB devices over local network or Internet! USB Server for Linux allows to work with the remote USB devices as if they are physically plugged into your computer! more>> <<less
Download (93.75KB)
Added: 2009-04-09 License: Freeware Price:
203 downloads
Tivoli::AccessManager::Admin::Server 1.11
Tivoli::AccessManager::Admin::Server project implements the server access portion of the TAM API. more>>
Tivoli::AccessManager::Admin::Server project implements the server access portion of the TAM API.
SYNOPSIS
my $tam = Tivoli::AccessManager::Admin->new(password => N3ew0nk);
my($server, $resp);
# Lets see what servers are defined
$resp = Tivoli::AccessManager::Admin::Server->list($tam);
# Lets find a webSEAL
my $wseal;
for ($resp->value) {
if (/webseal/) {
$wseal = $_;
last;
}
}
$server = Tivoli::AccessManager::Admin::Server->new($tam,$wseal);
# Get a list of tasks from the webSEAL
$resp = $server->tasklist;
# Execute a task
$resp = $server->task("list");
<<lessSYNOPSIS
my $tam = Tivoli::AccessManager::Admin->new(password => N3ew0nk);
my($server, $resp);
# Lets see what servers are defined
$resp = Tivoli::AccessManager::Admin::Server->list($tam);
# Lets find a webSEAL
my $wseal;
for ($resp->value) {
if (/webseal/) {
$wseal = $_;
last;
}
}
$server = Tivoli::AccessManager::Admin::Server->new($tam,$wseal);
# Get a list of tasks from the webSEAL
$resp = $server->tasklist;
# Execute a task
$resp = $server->task("list");
Download (0.33MB)
Added: 2007-06-14 License: Perl Artistic License Price:
868 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above server search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed