- Java 8
- JSR-356 Compliant Servlet Container, e.g. Tomcat 8, Jetty 9.1, etc.
- Lucee 5.1.3.18
Version 2.0.1 is out, and it fixes major issues but also adds to the installation process a bit. The new installation process is as follows:
- If a previous version of the extension is installed -- Uninstall it
- Install the extension from the Admin or by downloading the
.lex
file and dropping it in thedeploy
directory - Save the jar file
servlet-filter-utils-1.1.1.jar
to the classpath, e.g. if you're using Tomcat it can go into{tomcat}/lib
, or if you're using Jetty then it can go into{jetty}/lib/ext
- Add the following snippet to your web deployment descriptor (web.xml), be sure to modify the
url-pattern
to match your URLs that will used with WebSockets:
<!-- Required for the Lucee WebSocket Extension !-->
<filter>
<filter-name>HttpSessionInitializerFilter</filter-name>
<filter-class>net.twentyonesolutions.servlet.filter.HttpSessionInitializerFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>HttpSessionInitializerFilter</filter-name>
<!-- modify url-pattern to match your websocket endpoints !-->
<url-pattern>/ws/*</url-pattern>
</filter-mapping>
- Restart the Servlet Container (e.g. Tomcat, Jetty, etc.)
The function WebsocketRegister()
has been renamed to WebsocketServer()
. I hope to add a WebsocketClient()
function soon so I wanted the names to make sense.
The easiest way to install the extension is from the Lucee Admin. Navigate to the Extension Applications page in the Web or Server Admin, e.g. /lucee/admin/server.cfm?action=ext.applications
. Click the Lucee Websockets Extension icon, and then on the next page click the Install
button.
The WebSocket API is event driven, meaning that you register event handling methods (e.g. onOpen(), onMessage(), etc), and those are called when the corresponding events are triggered.
To configure a WebSocket endpoint call the function
WebsocketRegister(String endpoint, Component listener):ConnectionManager
Where endpoint
is the URI for the incoming WebSocket connections, e.g. /ws/chat/{channel}
, and the Component listener is a component that implements any of the event handling methods as specified in the Listener Component API.
This should only be done once, so you can do that in Application.cfc's onApplicationStart().
Each endpoint has its own ConnectionManager object, which keeps track of all of the client WebSockets that are connected to that endpoint. You can either store the ConnectionManager in an Application scope variable, or retrieve it from a WebSocket object that is passed as as argument to some of the event handlers by calling the method getConnectionManager() on that argument, i.e. arguments.websocket.getConnectionManager()
.
Check the WIKI for reference and documentation
Watch Getting Started Video Tutorial at:
Watch Chat Server Example Video Tutorial at:
Please use Lucee Websockets Extension on Lucee Dev
Copyright 2016-2017 Igal Sapir
This software is licensed under the Lesser GNU General Public License Version 2.1 (or later); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.