Add support for jsonp in CXF JAX-RS
-----------------------------------

                 Key: CXF-3005
                 URL: https://issues.apache.org/jira/browse/CXF-3005
             Project: CXF
          Issue Type: New Feature
          Components: JAX-RS
            Reporter: Josh Holtzman


JAX-RS endpoints that produce JSON can be wrapped by a callback to enable 
JSONP, or JSON with padding.  The attached patch adds JSONP interceptors that 
may be added to a JAXRSServerFactoryBean to support JSONP.

    JAXRSServerFactoryBean factory = new JAXRSServerFactoryBean();
    factory.getInInterceptors().add(new JsonpInvokeInterceptor());
    factory.getOutInterceptors().add(new JsonpPreStreamInterceptor());
    factory.getOutInterceptors().add(new JsonpPostStreamInterceptor());
    ...


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to