Hi
On 25/04/12 23:55, Ron Grabowski wrote:
A few days ago this example was posted to the list for setting a property on a 
provider defined in web.xml without Spring:


  <init-param>
      <param-name>jaxrs.providers</param-name>
      <param-value>
          org.apache.cxf.jaxrs.provider.JSONProvider
          (writeXsiType=false)
      </param-value>
  </init-param>

Do I need to do anything special to make that functionality available to my own 
provider? How can I set multiple properties?

Use name=value space-separated (not comma-separated) pairs, similar to the example you typed below.

Is this an Apache CXF specific feature?

Yes

Cheers, Sergey

          org.example.cxf.provider.MyProvider
          (hello=world,count=5)

Reply via email to