Unverified Commit c65700de authored by Dave Cridland's avatar Dave Cridland Committed by GitHub

Merge pull request #1000 from sco0ter/ws

WebSocket endpoint should allow null path.
parents 5187208e 5e58ac90
......@@ -625,7 +625,7 @@ public final class HttpBindManager implements CertificateEventListener, Property
protected Handler createWebsocketHandler()
{
final ServletContextHandler context = new ServletContextHandler( null, "/ws", ServletContextHandler.SESSIONS );
context.setAllowNullPathInfo(true);
// Add the functionality-providers.
context.addServlet( new ServletHolder( new OpenfireWebSocketServlet() ), "/*" );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment