I'm getting 'http transport not found' when launching a jax-rs
endpoint from Spring in a webapp using the context loader.

It's pretty basic:

  <import resource="classpath:META-INF/cxf/cxf.xml" />
  <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />

  <jaxrs:server id="rdfQueryProxyService" address="/visualization">
    <jaxrs:serviceBeans>
      <bean class="com.basistech.jug.ui.rdf.RdfVisualizationService" />
    </jaxrs:serviceBeans>
    <jaxrs:providers>
        <bean class="org.codehaus.jackson.jaxrs.JacksonJaxbJsonProvider"/>
    </jaxrs:providers>
  </jaxrs:server>

I didn't even think that the http transport was part of the process
inside of a servlet.

Reply via email to