org.eclipse.jetty.servlets
Class CrossOriginFilter

java.lang.Object
  extended by org.eclipse.jetty.servlets.CrossOriginFilter
All Implemented Interfaces:
Filter

public class CrossOriginFilter
extends Object
implements Filter

Implementation of the cross-origin resource sharing.

A typical example is to use this filter to allow cross-domain cometd communication using the standard long polling transport instead of the JSONP transport (that is less efficient and less reactive to failures).

This filter allows the following configuration parameters:

A typical configuration could be:

 <web-app ...>
     ...
     <filter>
         <filter-name>cross-origin</filter-name>
         <filter-class>org.eclipse.jetty.servlets.CrossOriginFilter</filter-class>
     </filter>
     <filter-mapping>
         <filter-name>cross-origin</filter-name>
         <url-pattern>/cometd/*</url-pattern>
     </filter-mapping>
     ...
 </web-app>
 

Version:
$Revision: 1910 $ $Date: 2010-06-01 22:02:07 +1000 (Tue, 01 Jun 2010) $

Constructor Summary
CrossOriginFilter()
           
 
Method Summary
 void destroy()
           
 void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
           
 void init(FilterConfig config)
           
protected  boolean isEnabled(HttpServletRequest request)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CrossOriginFilter

public CrossOriginFilter()
Method Detail

init

public void init(FilterConfig config)
          throws ServletException
Specified by:
init in interface Filter
Throws:
ServletException

doFilter

public void doFilter(ServletRequest request,
                     ServletResponse response,
                     FilterChain chain)
              throws IOException,
                     ServletException
Specified by:
doFilter in interface Filter
Throws:
IOException
ServletException

isEnabled

protected boolean isEnabled(HttpServletRequest request)

destroy

public void destroy()
Specified by:
destroy in interface Filter


Copyright © 1995-2011 Mort Bay Consulting. All Rights Reserved.