servlet
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 119
Servlet 0.9.2
Servlet is a Perl Servlet API v2.3 more>>
Servlet is a Perl Servlet API v2.3
The Servlet API for Perl (libservlet) is a formulation of the Java Servlet API in Perl. The current version of the API is 2.3.
While the servlet concept originated with Java, its component model is quite natural for Perl as well. By writing servlet applications and deploying them in a servlet engine, application authors can spare themselves the effort of writing commonly needed web application infrastructure components for each new project.
Furthermore, servlet applications are portable between deployment environments; they can be executed in any servlet engine using any process model with only a few configuration changes and no application code changes. Servlet applications are insulated from changes in vendor or platform and are able to portably take advantage of standard web infrastructure services offered by any servlet engine.
<<lessThe Servlet API for Perl (libservlet) is a formulation of the Java Servlet API in Perl. The current version of the API is 2.3.
While the servlet concept originated with Java, its component model is quite natural for Perl as well. By writing servlet applications and deploying them in a servlet engine, application authors can spare themselves the effort of writing commonly needed web application infrastructure components for each new project.
Furthermore, servlet applications are portable between deployment environments; they can be executed in any servlet engine using any process model with only a few configuration changes and no application code changes. Servlet applications are insulated from changes in vendor or platform and are able to portably take advantage of standard web infrastructure services offered by any servlet engine.
Download (0.088MB)
Added: 2007-06-08 License: Perl Artistic License Price:
869 downloads
vgetty-servlet 1.0.4
vgetty-servlet allows you to listen to answerphone messages through your browser. more>>
vgetty-servlet allows you to listen to answerphone messages through your browser. (which are recorded through something like vgetty) It includes features for viewing waiting voice messages, deleting voice messages, notification of interested parties, and general message maintenance.
Main features:
- View waiting voice messages (date, has been heard?, length of message).
- Delete voice messages.
- Email zero or more people when new voice messages are recorded.
Maintenance:
- Maintain the available greetings (add, remove).
- Install new greetings from WAV files, either from disk or from HTTP URL.
- Maintain misc. settings (paths to conversion utilities etc).
- Maintain the list of people who are to be notified by email.
<<lessMain features:
- View waiting voice messages (date, has been heard?, length of message).
- Delete voice messages.
- Email zero or more people when new voice messages are recorded.
Maintenance:
- Maintain the available greetings (add, remove).
- Install new greetings from WAV files, either from disk or from HTTP URL.
- Maintain misc. settings (paths to conversion utilities etc).
- Maintain the list of people who are to be notified by email.
Download (3.7MB)
Added: 2006-09-14 License: GPL (GNU General Public License) Price:
1136 downloads
ServletSpeedster 0.9.4
ServletSpeedster provides a simple servlet composition for caching output. more>>
ServletSpeedster provides a simple servlet composition for caching output.
ServletSpeedster is a simple servlet composition for caching parts of the output of a dynamic servlet or JSP. This can greatly improve efficiency for sites which have complex but partially static pages coming out from their JSP/servlet engines.
Simple forms of caching (like caching for a menu or news lists) can be written with ServletSpeedster in under an hour, and it doesnt force you to accept any heavy-weight framework to do it.
ServletSpeedster is meant to handle the requests that your servlet/jsp makes to get its cacheable subparts.
While non cacheable content should be called directly, the cacheable output should be requested from ServletSpeedster.
Each time you ask for a cacheable subpart of a page from ServletSpeedster it looks up if the cached version is up to date and servers either a new output(if cache is invalid) or the cached output (if the cache is valid).
Enhancements:
- A glitch repaired in cache. (A typo caused running over the limit.)
- Added a better example app.
<<lessServletSpeedster is a simple servlet composition for caching parts of the output of a dynamic servlet or JSP. This can greatly improve efficiency for sites which have complex but partially static pages coming out from their JSP/servlet engines.
Simple forms of caching (like caching for a menu or news lists) can be written with ServletSpeedster in under an hour, and it doesnt force you to accept any heavy-weight framework to do it.
ServletSpeedster is meant to handle the requests that your servlet/jsp makes to get its cacheable subparts.
While non cacheable content should be called directly, the cacheable output should be requested from ServletSpeedster.
Each time you ask for a cacheable subpart of a page from ServletSpeedster it looks up if the cached version is up to date and servers either a new output(if cache is invalid) or the cached output (if the cache is valid).
Enhancements:
- A glitch repaired in cache. (A typo caused running over the limit.)
- Added a better example app.
Download (0.042MB)
Added: 2007-04-16 License: BSD License Price:
921 downloads
WebMacro Servlet Framework 2.0b1
WebMacro Servlet Framework is a Java server-side Web template engine. more>>
WebMacro is a 100% Java open-source template language that enables programmers and designers to work together while promoting the ModelViewController pattern.
WebMacro is a viable (and proven!) alternative to JavaServerPages, PHP, and ASP. Its the fundamental page technology behind several major websites such as AltaVista.
WebMacro separates concerns about program code from concerns about the way a page looks:
- HTML should not clutter up program code
- program code should not clutter up HTML
- you should OwnYourOwnWork
- no-one should have to work through somebody else
<<lessWebMacro is a viable (and proven!) alternative to JavaServerPages, PHP, and ASP. Its the fundamental page technology behind several major websites such as AltaVista.
WebMacro separates concerns about program code from concerns about the way a page looks:
- HTML should not clutter up program code
- program code should not clutter up HTML
- you should OwnYourOwnWork
- no-one should have to work through somebody else
Download (0.29MB)
Added: 2005-05-05 License: GPL (GNU General Public License) Price:
1634 downloads
Servlet::ServletInputStream 0.9.2
Servlet::ServletInputStream is a servlet input stream interface. more>>
Servlet::ServletInputStream is a servlet input stream interface.
SYNOPSIS
my $byte = $stream->read();
my $numbytes = $stream->read($buffer);
my $numbytes = $stream->read($buffer, $offset, $length);
my $numbytes = $stream->readLine($buffer, $offset, $length);
$stream->skip($numbytes);
if ($stream->markSupported()) {
$stream->mark($limit);
$stream->reset();
}
$stream->close();
Provides an input stream for reading binary data from a client request. With some protocols, such as HTTP POST and PUT, the stream can be used to read data sent from the client.
An input stream object is normally retrieved via "getInputStream" in Servlet::ServletRequest.
NOTE: While this is an abstract class in the Java API, the Perl API provides it as an interface. The main difference is that the Perl version has no constructor. Also, it merges the methods declared in java.io.InputStream and javax.servlet.ServletInputStream into a single interface.
<<lessSYNOPSIS
my $byte = $stream->read();
my $numbytes = $stream->read($buffer);
my $numbytes = $stream->read($buffer, $offset, $length);
my $numbytes = $stream->readLine($buffer, $offset, $length);
$stream->skip($numbytes);
if ($stream->markSupported()) {
$stream->mark($limit);
$stream->reset();
}
$stream->close();
Provides an input stream for reading binary data from a client request. With some protocols, such as HTTP POST and PUT, the stream can be used to read data sent from the client.
An input stream object is normally retrieved via "getInputStream" in Servlet::ServletRequest.
NOTE: While this is an abstract class in the Java API, the Perl API provides it as an interface. The main difference is that the Perl version has no constructor. Also, it merges the methods declared in java.io.InputStream and javax.servlet.ServletInputStream into a single interface.
Download (0.088MB)
Added: 2007-06-12 License: Perl Artistic License Price:
867 downloads
Servlet::ServletOutputStream 0.9.2
Servlet::ServletOutputStream is a servlet output stream interface. more>>
Servlet::ServletOutputStream is a servlet output stream interface.
SYNOPSIS
$stream->print($string);
$stream->println();
$stream->println($string);
$stream->write($string);
$stream->write($string, $length);
$stream->write($string, $length, $offset);
$stream->flush();
$stream->close();
Provides an output stream for writing binary data to a servlet response.
An output stream object is normally retrieved via "getOutputStream" in Servlet::ServletResponse.
NOTE: While this is an abstract class in the Java API, the Perl API provides it as an interface. The main difference is that the Perl version has no constructor. Also, it merges the methods declared in java.io.OutputStream and javax.servlet.ServletOutputStream into a single interface.
METHODS
close()
Closes the stream and releases any system resources associated with the stream.
Throws:
Servlet::Util::IOException
if an output exception occurred
flush()
Flushes this input stream and forces any buffered output bytes to be written out.
Throws:
Servlet::Util::IOException
if an output exception occurred
print($value)
Writes a scalar value to the client, with no carriage return-line feed (CRLF) character at the end.
Parameters:
$value
the value to send to the client
Throws:
Servlet::Util::IOException
if an output exception occurred
println([$value])
Writes a scalar value to the client, if specified, followed by a carriage return-line feed (CRLF) character.
Parameters:
$value
the (optional) value to send to the client
Throws:
Servlet::Util::IOException
if an output exception occurred
write($value)
write($value, $length)
write($value, $length, $offset)
Writes the scalar $value to the stream.
If no arguments are specified, functions exactly equivalently to print().
If $length is specified, writes that many bytes from $value. If $offset is specified, starts writing that many bytes from the beginning of $value. $offset and $length must not be negative, and $length must not be greater than the amount of data in $value starting from $offset.
Blocks until input data is available, the end of the stream is detected, or an exception is thrown.
Parameters:
$value
a scalar value to be written
$length
the maximum number of bytes to write
$offset
the location in $value where data is read from
Throws:
Servlet::Util::IOException
if an input exception occurs
Servlet::Util::IndexOutOfBoundsException
if $buffer is specified as undef
<<lessSYNOPSIS
$stream->print($string);
$stream->println();
$stream->println($string);
$stream->write($string);
$stream->write($string, $length);
$stream->write($string, $length, $offset);
$stream->flush();
$stream->close();
Provides an output stream for writing binary data to a servlet response.
An output stream object is normally retrieved via "getOutputStream" in Servlet::ServletResponse.
NOTE: While this is an abstract class in the Java API, the Perl API provides it as an interface. The main difference is that the Perl version has no constructor. Also, it merges the methods declared in java.io.OutputStream and javax.servlet.ServletOutputStream into a single interface.
METHODS
close()
Closes the stream and releases any system resources associated with the stream.
Throws:
Servlet::Util::IOException
if an output exception occurred
flush()
Flushes this input stream and forces any buffered output bytes to be written out.
Throws:
Servlet::Util::IOException
if an output exception occurred
print($value)
Writes a scalar value to the client, with no carriage return-line feed (CRLF) character at the end.
Parameters:
$value
the value to send to the client
Throws:
Servlet::Util::IOException
if an output exception occurred
println([$value])
Writes a scalar value to the client, if specified, followed by a carriage return-line feed (CRLF) character.
Parameters:
$value
the (optional) value to send to the client
Throws:
Servlet::Util::IOException
if an output exception occurred
write($value)
write($value, $length)
write($value, $length, $offset)
Writes the scalar $value to the stream.
If no arguments are specified, functions exactly equivalently to print().
If $length is specified, writes that many bytes from $value. If $offset is specified, starts writing that many bytes from the beginning of $value. $offset and $length must not be negative, and $length must not be greater than the amount of data in $value starting from $offset.
Blocks until input data is available, the end of the stream is detected, or an exception is thrown.
Parameters:
$value
a scalar value to be written
$length
the maximum number of bytes to write
$offset
the location in $value where data is read from
Throws:
Servlet::Util::IOException
if an input exception occurs
Servlet::Util::IndexOutOfBoundsException
if $buffer is specified as undef
Download (0.088MB)
Added: 2007-06-13 License: Perl Artistic License Price:
864 downloads
TracerouteWrapperServlet 0.5.2
TracerouteWrapperServlet provides a Web frontend to a command-line tool like traceroute. more>>
TracerouteWrapperServlet provides a Web frontend to a command-line tool like traceroute.
TracerouteWrapperServlet is a Java Servlet which calls a command-line tool like traceroute, nslookup, or ping and displays the tools output within a dynamically reloadable HTML template.
You are currently limited to using one commandline tool per instance of TracerouteWrapperServlet.
quick installation notes:
- Install JRE 1.3.1 or Java 2 SDK 1.3.1 or higher.
- Install a servlet runner like Apache Tomcat.
- Copy the files included in this distribution to a location of your choice. Use the same directory structure as in the zipped file unless it seems unsuitable for you.
- Edit the properties file yourInstallDir/TracerouteWrapperServlet/WEB-INF/classes/inifile.properties to fit your environment. You need to give the path to the traceroute executable on your server. This executable is part of your OS, its NOT included in this distribution.
- Configure your ServletRunner to have a context for TracerouteWrapperServlet
- Edit the HTML template file yourInstallDirTracerouteWrapperServletindex.html. You need to replace the location in the tag with the URL pointing to your installation of TracerouteWrapperServlet.
Enhancements:
- The ability to dynamically reload properties file was added.
- Minor bug fixes were made.
<<lessTracerouteWrapperServlet is a Java Servlet which calls a command-line tool like traceroute, nslookup, or ping and displays the tools output within a dynamically reloadable HTML template.
You are currently limited to using one commandline tool per instance of TracerouteWrapperServlet.
quick installation notes:
- Install JRE 1.3.1 or Java 2 SDK 1.3.1 or higher.
- Install a servlet runner like Apache Tomcat.
- Copy the files included in this distribution to a location of your choice. Use the same directory structure as in the zipped file unless it seems unsuitable for you.
- Edit the properties file yourInstallDir/TracerouteWrapperServlet/WEB-INF/classes/inifile.properties to fit your environment. You need to give the path to the traceroute executable on your server. This executable is part of your OS, its NOT included in this distribution.
- Configure your ServletRunner to have a context for TracerouteWrapperServlet
- Edit the HTML template file yourInstallDirTracerouteWrapperServletindex.html. You need to replace the location in the tag with the URL pointing to your installation of TracerouteWrapperServlet.
Enhancements:
- The ability to dynamically reload properties file was added.
- Minor bug fixes were made.
Download (0.022MB)
Added: 2007-04-05 License: GPL (GNU General Public License) Price:
933 downloads
MKSearch beta 1
MKSearch provides a Web metadata spider and search engine. more>>
MKSearch provides a Web metadata spider and search engine.
MKSearch is a metadata search engine that indexes structured metadata in Web documents instead of free text in the document body.
The data acquisition system conforms to the Dublin Core metadata in HTML recommendations, and supports other application profiles, such as the UK e-Government Metadata Standard.
It also indexes native RDF formats, including RSS 1.0. The system has five major components: a Web crawler, an HTML document validator and formatter, a set of custom indexers, an RDF storage and query system, and a public query interface, provided through a standard servlet container.
System composition
The MKSearch system is composed of several other free software components. Further details are provided in the MKSearch development plans.
JSpider
JSpider is a Java Web crawler engine that has pluggable interfaces that can be used to add custom processing and content handling. MKSearch uses custom SAX-based content handlers for extracting metadata from Web documents.
Sesame
Sesame is a set of RDF processing and storage APIs and applications that includes RDF data query facilities. MKSearch uses Sesame to store indexed metadata in RDF format and to search the repository via the public query interface.
JTidy
JTidy is a utility for correcting common HTML markup errors and is used to convert HTML documents to XHTML so they can be processed using SAX.
<<lessMKSearch is a metadata search engine that indexes structured metadata in Web documents instead of free text in the document body.
The data acquisition system conforms to the Dublin Core metadata in HTML recommendations, and supports other application profiles, such as the UK e-Government Metadata Standard.
It also indexes native RDF formats, including RSS 1.0. The system has five major components: a Web crawler, an HTML document validator and formatter, a set of custom indexers, an RDF storage and query system, and a public query interface, provided through a standard servlet container.
System composition
The MKSearch system is composed of several other free software components. Further details are provided in the MKSearch development plans.
JSpider
JSpider is a Java Web crawler engine that has pluggable interfaces that can be used to add custom processing and content handling. MKSearch uses custom SAX-based content handlers for extracting metadata from Web documents.
Sesame
Sesame is a set of RDF processing and storage APIs and applications that includes RDF data query facilities. MKSearch uses Sesame to store indexed metadata in RDF format and to search the repository via the public query interface.
JTidy
JTidy is a utility for correcting common HTML markup errors and is used to convert HTML documents to XHTML so they can be processed using SAX.
Download (9.0MB)
Added: 2007-02-16 License: GPL (GNU General Public License) Price:
980 downloads
Restlet 1.0.4
Restlet is a framework that brings the simplicity and efficiency of the REST architectural style to Java developers. more>>
Restlet is a framework that brings the simplicity and efficiency of the REST architectural style to Java developers.
Restlet project is composed of two parts, a neutral API and a reference implementation (Noelios Restlet Engine). It supports all REST concepts (resource, representation, data, connector, components, etc.) and is suitable for both client and server REST applications.
The server connectors provided are HTTP (via Mortbays Jetty or an adapter Servlet) and the client connectors are HTTP, JDBC, and SMTP (via JavaMail).
Mission
- Bring the simplicity and efficiency of the REST architectural style to Java developers
Restlet API
- Supports all REST concepts (resource, representation, data, connector, components, etc.)
- Suitable for both client and server Web applications
- Maplets support the concept of URIs as UI with advanced pattern matching features
- Chainlets filter calls to implement features such as logging and authentication
- Complete alternative to Servlet API with no external dependency (JAR < 60kb)
- Supports blocking and non-blocking NIO modes
Noelios Restlet Engine (NRE)
- Reference implementation of the Restlet API provided by Noelios Consulting (core JAR < 110kb)
- Server connector provided: HTTP (via Jetty connectors or Servlet connector)
- Client connectors provided: HTTP, JDBC, SMTP (via JavaMail)
- Supports logging (LogChainlet), authentication (GuardChainlet) and cool URIs rewriting (RedirectRestlet)
- Static files serving (DirectoryRestlet) with metadata association based on file extensions
- FreeMarker template representations as an alternative to JSP pages
- Automatic server-side content negotiation based on media type and language
<<lessRestlet project is composed of two parts, a neutral API and a reference implementation (Noelios Restlet Engine). It supports all REST concepts (resource, representation, data, connector, components, etc.) and is suitable for both client and server REST applications.
The server connectors provided are HTTP (via Mortbays Jetty or an adapter Servlet) and the client connectors are HTTP, JDBC, and SMTP (via JavaMail).
Mission
- Bring the simplicity and efficiency of the REST architectural style to Java developers
Restlet API
- Supports all REST concepts (resource, representation, data, connector, components, etc.)
- Suitable for both client and server Web applications
- Maplets support the concept of URIs as UI with advanced pattern matching features
- Chainlets filter calls to implement features such as logging and authentication
- Complete alternative to Servlet API with no external dependency (JAR < 60kb)
- Supports blocking and non-blocking NIO modes
Noelios Restlet Engine (NRE)
- Reference implementation of the Restlet API provided by Noelios Consulting (core JAR < 110kb)
- Server connector provided: HTTP (via Jetty connectors or Servlet connector)
- Client connectors provided: HTTP, JDBC, SMTP (via JavaMail)
- Supports logging (LogChainlet), authentication (GuardChainlet) and cool URIs rewriting (RedirectRestlet)
- Static files serving (DirectoryRestlet) with metadata association based on file extensions
- FreeMarker template representations as an alternative to JSP pages
- Automatic server-side content negotiation based on media type and language
Download (8.1MB)
Added: 2007-08-02 License: CDDL (Common Development and Distribution License) Price:
816 downloads
mod_jserv 1.1.2
Apache JServ is a 100% pure Java servlet engine. more>>
Apache JServ project is a 100% pure Java servlet engine designed to implement the Sun Java Servlet API 2.0 specifications and add Java Servlet capabilities to the Apache HTTP Server.
mod_jserv is a Java servlet interface.
Installation:
Installation instructions for UNIX systems are included in the INSTALL file or in the installation section of the documentation.
<<lessmod_jserv is a Java servlet interface.
Installation:
Installation instructions for UNIX systems are included in the INSTALL file or in the installation section of the documentation.
Download (0.57MB)
Added: 2006-05-12 License: The Apache License Price:
1263 downloads
CPPSERV 0.1.101
CPPSERV is an application server that provides Servlet-like API to C++ programmers. more>>
CPPSERV is an application server that provides Servlet-like API to C++ programmers.
CPPSERV project consists of stand-alone daemon, listening on TCP socket for requests from web server, and web server module.
Currently only apache-2.0.x is supported, but writing modules for other web servers should be fairly easy.
<<lessCPPSERV project consists of stand-alone daemon, listening on TCP socket for requests from web server, and web server module.
Currently only apache-2.0.x is supported, but writing modules for other web servers should be fairly easy.
Download (0.26MB)
Added: 2007-07-27 License: GPL (GNU General Public License) Price:
820 downloads
Other version of CPPSERV
License:LGPL (GNU Lesser General Public License)
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
Dwarf HTTP Server 1.3.1
Dwarf HTTP Server is a full-featured and ready-to-use web server with the Java Servlet API 2.2 and Java Server Pages 1.1. more>>
Dwarf HTTP Server is a full-featured and ready-to-use web server with the Java Servlet API 2.2 and Java Server Pages 1.1 implementation.
Dwarf HTTP Server can be used either standalone or embed in a larger hosting application, free of charge for the binary redistribution
Since the server is based on the Dwarf framework, it shares its common design principles and features - simplicity, high modularity and extensibility, authentication and authorization, XML-based configuration, logging and remote management.
Main features:
- multi-threaded design
- dynamically adjusted number of active threads
- Java Servlet API 2.2 implementation
- Java Server Pages 1.1 (by Apache Tomcat/Jasper)
- HTTP/1.1 and CGI/1.1 implementation
- WebDAV Class 1 implementation
- built-in SSL/TLS support
- IP-based and name-based virtual hosts
- customizable authentication and authorization
- standard and custom HTTP log formats
- extensible session management
- Basic and Form-based HTTP authentication
- automatic deploying of WAR archives
- runtime server configuration
- full documentation with guides and tutorials
- web application examples with source code
<<lessDwarf HTTP Server can be used either standalone or embed in a larger hosting application, free of charge for the binary redistribution
Since the server is based on the Dwarf framework, it shares its common design principles and features - simplicity, high modularity and extensibility, authentication and authorization, XML-based configuration, logging and remote management.
Main features:
- multi-threaded design
- dynamically adjusted number of active threads
- Java Servlet API 2.2 implementation
- Java Server Pages 1.1 (by Apache Tomcat/Jasper)
- HTTP/1.1 and CGI/1.1 implementation
- WebDAV Class 1 implementation
- built-in SSL/TLS support
- IP-based and name-based virtual hosts
- customizable authentication and authorization
- standard and custom HTTP log formats
- extensible session management
- Basic and Form-based HTTP authentication
- automatic deploying of WAR archives
- runtime server configuration
- full documentation with guides and tutorials
- web application examples with source code
Download (0.91MB)
Added: 2005-12-08 License: Freely Distributable Price:
1415 downloads
Atomsphere 1.0.2.0
Atomsphere is a Java library for creating and modifying Atom 1.0 compliant feed documents. more>>
Atomsphere is a Java library for creating and modifying Atom 1.0 compliant feed documents. Atomsphere is also bundled with a servlet-based Web interface for front-end manipulation of atom feeds.
<<less Download (0.069MB)
Added: 2007-03-09 License: GPL (GNU General Public License) Price:
961 downloads
ArrowHead ASP Server 0.2.3
ArrowHead ASP Server is a 100% Java Servlet supporting ASP and VBScript. more>>
ArrowHead ASP Server is a Java Servlet which supports the ASP syntax and the VBScript programming language. It aims to support VBScript version 3.1 and the standard set of COM objects, but has a little ways to go yet.
It is extendable using Java objects and the Server.CreateObject syntax. It has been developed and tested under Apache 2.x and Tomcat 5.0.x, but should run under any Java servlet server.
<<lessIt is extendable using Java objects and the Server.CreateObject syntax. It has been developed and tested under Apache 2.x and Tomcat 5.0.x, but should run under any Java servlet server.
Download (0.18MB)
Added: 2005-04-15 License: GPL (GNU General Public License) Price:
1655 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 servlet 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