Is it supported in CXF the JAX-WS HTTP Binding?

If I try to load even a simple class like the one below i get errors like:

Could not resolve a binding for http://www.w3.org/2004/08/wsdl/http

@BindingType(value = javax.xml.ws.http.HTTPBinding.HTTP_BINDING)
@WebServiceProvider
@ServiceMode(value = Mode.MESSAGE)
public class HTTPProvider implements Provider<Source> {
    
    @Override
    public Source invoke(Source request) {

        return null;
    }

}

I'm currently using cxf 2.1.4.

Am I doing something wrong?

Regards

Valerio Angelini
-- 
View this message in context: 
http://www.nabble.com/Provider-with-HTTP-Binding-tp22475788p22475788.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to