>From documentation in >http://cxf.apache.org/docs/jax-rs-basics.html#JAX-RSBasics-MessageBodyProviders:
"By default, CXF supports String, byte[], InputStream, Reader, File, JAXP Source, JAX-RS StreamingOutput, JAXB-annotated types with application/xml, text/xml and application/json formats as well as JAXBElement (see below). JAX-RS MultivaluedMap is also supported for form contents. See also the "Support for data bindings" section below." I couldn't find a MessageBodyReader/Writer implementation for MultivaluedMap in CXF. How could I use this type? In general, if I want to use a Map<String,String> in a REST POST, should I write readers/writers for the Map type or does CXF provide anything by default? Thanks, Vinay
