Commit 9d9c8887 authored by Tom Evans's avatar Tom Evans Committed by tevans

OF-656: Fix crossdomain.xml for http-bind (BOSH)

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@13593 b35dd754-fafc-0310-a699-88a17e54d16e
parent b73fef93
...@@ -514,7 +514,7 @@ public final class HttpBindManager { ...@@ -514,7 +514,7 @@ public final class HttpBindManager {
private void createCrossDomainHandler(ContextHandlerCollection contexts, String crossPath) private void createCrossDomainHandler(ContextHandlerCollection contexts, String crossPath)
{ {
ServletContextHandler context = new ServletContextHandler(contexts, crossPath, ServletContextHandler.SESSIONS); ServletContextHandler context = new ServletContextHandler(contexts, crossPath, ServletContextHandler.SESSIONS);
context.addServlet(new ServletHolder(new HttpBindServlet()),"/crossdomain.xml"); context.addServlet(new ServletHolder(new FlashCrossDomainServlet()),"/crossdomain.xml");
} }
private void loadStaticDirectory(ContextHandlerCollection contexts) { private void loadStaticDirectory(ContextHandlerCollection contexts) {
......
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