Skip navigation links

QuickServer
v2.1.0

QuickServer is an open source Java library/framework for quick creation of robust multi-client TCP server applications.

See: Description

Core Packages 
Package Description
org.quickserver.net
Support classes and exceptions.
org.quickserver.net.server
Contains all of the classes for creating QuickServer.
Client Packages 
Package Description
org.quickserver.net.client
Main classes of QuickServer Client.
org.quickserver.net.client.loaddistribution
Load Distributor classes of QuickServer Client.
org.quickserver.net.client.loaddistribution.impl
Load Distributor implementation classes of QuickServer Client.
org.quickserver.net.client.monitoring
Monitoring classes of QuickServer Client.
org.quickserver.net.client.monitoring.impl
Monitoring implementation classes of QuickServer Client.
org.quickserver.net.client.pool
Socket Pool classes of QuickServer Client.
Util Packages 
Package Description
org.quickserver.swing
Classes for GUI related work.
org.quickserver.util
General utility classes.
org.quickserver.util.logging
Support classes for LogRecord formatting.
Thread Pool for App 
Package Description
org.quickserver.util.pool.thread.app
Classes for managing the pool of threads for running application logic.
Support Packages 
Package Description
org.quickserver.net.qsadmin
Contains all of the classes for creating QSAdminServer.
org.quickserver.net.qsadmin.gui
GUI components and classes.
org.quickserver.net.server.impl
Contains all of the implementation classes for interface in server package.
org.quickserver.security
Classes for Security interfacing with QuickServer.
org.quickserver.sql
Classes for SQL interfacing with QuickServer.
org.quickserver.util.io
Support classes for IO operation.
org.quickserver.util.pool
Provides classes for Object Pools.
org.quickserver.util.pool.thread
Classes for managing the pool of threads for handling clients.
org.quickserver.util.xmlreader
Classes for reading XML and storing the configuration.
QuickServer is an open source Java library/framework for quick creation of robust multi-client TCP server applications. With QuickServer you can concentrate on just the application logic/protocol on hand.
 
QuickServer provides an abstraction over the ServerSocket, Socket and other network and input output classes and it eases the creation of powerful network servers.
QuickServer Example programs demonstrating the use of the library can be found with the QuickServer distribution [examples folder]. Latest examples, documentation is available through the website.

 
Brief Architecture
---------------------
QuickServer divides the application logic of its developer over eight main classes,

[#] = Any one of these have to be set based on default DataMode for input. The default DataMode for input is String so if not changes you will have to set ClientCommandHandler.

For more info view QuickServer Wiki - Architecture.
 
QuickServer Source - GitHub.
 
Major Features
---------------------
  * Create multi-client TCP server applications.
  * Support for secure server creations: SSL, TLS. Secure
  * Support for thread per client (multi-threaded) - Blocking Mode.
  * Clear separation of server, protocol and authentication logic.
  * Remote administration support: QSAdminServer (With support plugable application commands).
  * Command Shell for local administration of server.
    QSAdminServer.setShellEnable(boolean)
  * GUI based remote administration: QsAdminGUI (with support for plug-ins - PluginPanel)
  * Restart or Suspend the server without killing connected clients.
  * Inbuilt pools for reusing of threads and most used Objects.
  * Full logging support [Java built in Logging].
  * Support for sending and receiving Strings, Bytes, Binary and serialized java objects.
  * Support for identifying and searching a client. ClientIdentifiable
  * Support for xml configuration with ability to store application specific data in the same xml.
    [View Sample]
  * Support for xml Based JDBC Mapping - DBPoolUtil.
  * Support for Service Configurator pattern. Service
  * Support for restricting access to server by ip address.
  * Support for loading/reloading application jar from xml.
  * Ability to add process hooks into QuickServer. ServerHook, InitServerHook
  * Ability to specify maximum number of clients allowed.
  * Support for negotiating secure connection over normal tcp connection.
  * Nice easy examples come with the distribution - FTPServer, CmdServer, EchoWebServer, ChatServer, SecureEchoWebServer, XmlAdder, PipeServer, Filesrv.

 
Whats New in 2.1.0 ?
------------------------
  * Added support for uptime in Host (QuickServer Client)
  * Supports null/no banner when server starts
  * Fixed load pattern logic RandomLoadPattern, RoundRobinLoadPattern (was using index when client key was set)
  * Added getHighestActiveCount() method to Object Pools
  * Added getHighestActiveClientCount method to QuickServer object
  * Defaulted SSL to TLS
  * Bug fix for ThreadPool not reducing to max ideal (stay in wait state n increase over time)
  * Bug fix for Client (HashedLoadPattern)   * Disabled non blocking mode (no more supported)
 
QuickServer Credits
---------------------
Thanks to everyone who helped me in this project. Thanks to all users who posted/sent their valuable comments and suggestion. I would also like to thank all the people who have posted/sent bug reports. Please do keep reporting any bugs that you find in QuickServer that way you will be helping in improving it. Do visit our web site for full credits listing.
 
Get Support
---------------------
Do post your questions, suggestions, bug-reports, enhancement-requests etc. at Developers Forum. Please do not contact development team directly unless you really would like to send a private message.
Note: We provide a higher level of support to individuals and companies who have contributed to QuickServer project in some way. There are a number of ways to contribute, do visit our web site for details on ways of contributing to QuickServer.
 
Request to Developers
---------------------
If you would like to contribute to the development of QuickServer please do get in touch with me. I am always on the lookout for people who can contribute to make this library even better.
If you use QuickServer in your development and if you would like to share your experience with the QuickServer community, please feel free to post it in the QuickServer Forums. Thanks
 
Web Site : http://www.quickserver.org
Skip navigation links

Copyright © 2003-2014 QuickServer.org