CXF How to set SoapVersion on CXF port without Spring

后端 未结 5 1723
遇见更好的自我
遇见更好的自我 2020-12-30 10:14

I am currently working on a Web Service client using CXF without Spring configuration files.

It works pretty well but I cannot figure out how to set the binding Soap

5条回答
  •  青春惊慌失措
    2020-12-30 10:17

    Easiest is probably to just stick an annotation on the interface of:

    @BindingType(SOAPBinding.SOAP12HTTP_BINDING)
    

提交回复
热议问题