You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Sergey Beryozkin (JIRA)" <ji...@apache.org> on 2008/06/27 16:50:45 UTC

[jira] Commented: (CXF-1671) Add a setter to JSONProvider to set the XML Namespace to Jettison prefix map

    [ https://issues.apache.org/jira/browse/CXF-1671?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12608792#action_12608792 ] 

Sergey Beryozkin commented on CXF-1671:
---------------------------------------

many thanks. Will apply it shortly

> Add a setter to JSONProvider to set the XML Namespace to Jettison prefix map
> ----------------------------------------------------------------------------
>
>                 Key: CXF-1671
>                 URL: https://issues.apache.org/jira/browse/CXF-1671
>             Project: CXF
>          Issue Type: Improvement
>          Components: REST
>    Affects Versions: 2.1, 2.0.6, 2.1.1, 2.0.7
>            Reporter: Joe Sunday
>         Attachments: CXF-1671-trunk.patch
>
>
> There is currently no way to configure a REST service to pass an XML namespace to jettison prefix mapping using the default JSONProvider.
> * Move nstojns to a field instead of creating an empty map on each request
> * Add a property setter to set nstojns
> This will allow you to do this in Spring:
>     <util:map id="jsonNamespaceMap" map-class="java.util.Hashtable">
>         <entry key="http://www.example.com/shakedown" value="e"/>
>         <entry key="http://cxf.apache.org/bindings/xformat" value="cxf"/>
>     </util:map>
>     <bean id="jsonProvider" class="org.apache.cxf.jaxrs.provider.JSONProvider">
>         <property name="namespaceMap" ref="jsonNamespaceMap"/>
>     </bean>
>     <jaxrs:server id="jsonRestEndpoint" address="/system">
>         <jaxrs:serviceBeans>
>             <ref bean="restImpl"/>
>         </jaxrs:serviceBeans>
>         <jaxrs:entityProviders>
>             <ref bean="jsonProvider"/>
>         </jaxrs:entityProviders>
>     </jaxrs:server>

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