Project Name: Sambuca Embedded HTTP Framework Author: Robert C. Ilardi Visit: http://www.jsambuca.com/ http://sourceforge.net/projects/sambuca/ License: Apache License V2.0 Copyright 2007 - 2008 Robert C. Ilardi Release History: 1.0.0 : + Initial Release (November 12, 2007) + Extendable HTTP Request Processing Framework, with support for a single "pluggable" custom user defined HTTP Service Handler. (See Integrating Sambuca for more infomration.) + HTTP GET Support + HTTP POST Support (The current version of Sambuca ONLY supports application/x-www-form-urlencoded forms. multipart/form-data maybe supported in future versions.) + Multi-Threaded Pool of Socket Workers with single threaded Socket Channel Polling Kernel for non-blocking I/O. + Connection monitor thread in Sambuca Server Kernel. Current will close idled connections, however will be used in future versions for added security and other active protection schemes. + Extendable Logging Mechanism. + Built in error responding for basic HTTP conditions such as 404 Not Found, 403 Forbidden, and 405 Method Not Allowed. + Support for custom HTTP Headers (Required for cookies, SSO/Single Sign-On implementations, etc) via the HTTP Response object. 1.0.2 : + A minor release... (January 26, 2008) + Includes an updated version of the com.roguelogic.net socket wrapper library. + Exposed method setReuseAddress(boolean) to control Socket Address Reuse on the Server + Exposed method setLingerTimeOverride(int) to control the Socket Lingering time. (You probably don't want to change this setting, but you can if you really need/want to). + Changed the format of the Footer for the Demo server to include the Version number... 1.0.5 : + Sambuca Simple Web Services Framework (April, 7, 2008) + New package: com.roguelogic.sambuca.websrvcs.simple + Added Web Service Auto Mounter (WebServiceAutoMounter). + Added Web Service Client "Stub" Code Generator (ClientStubGenerator) + Minor enhancements and fixes to RL Platform library classes 1.0.6 : + Minor Release (May 29, 2008) + Added boolean and boolean[] support for Sambuca Simple Web Services + Started to integrate JBeanDescriber, which will allow future versions of Sambuca Simple Web Services to support User Defined Java Beans as parameters for the Web Service Methods...