[
https://issues.apache.org/jira/browse/CXF-3005?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12930894#action_12930894
]
Dobes Vandermeer commented on CXF-3005:
---------------------------------------
Note:
the content type for JSONP should be application/javascript, not
application/json.
The reason is that browsers might not execute application/json as javascript
without errors.
> 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
> Attachments: cxf_jsonp.diff
>
>
> 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.