Hi everyone, I've got the problem described below.
I tried to implement CORBA Web Service using CXF & YOKO, so I generated WSDL from IDL using YOKO's tool IDLtoWSDL, then used CXF's tool wsdl2java to generate client and server, implemented service and everything worked fine with no problem. Then I tried to implement my service using interface Provider<CorbaMessage> so I had: //Service class, annotations are not mentioned here, but i changed @WebService annotation to @WebServiceProvider and added @ServiceMode public class MyCorbaWebService implements Provider<CorbaMessage> { public CorbaMessage invoke(CorbaMessage arg0) { System.out.println("corba service called"); return arg0; } } And service stopped working. I posted message on CXF's user forum and I was told that this isn't supported yet (you can find more at http://www.nabble.com/YOKO---CXF-CORBA-Web-Service-using-Provider%3CCorbaMes sage%3E-tf4157811.html). So I would like to ask you whether and when is this thing going to be supported or if there is another way how to do that. I was told by my colleagues that we are able to offer you some help if it's needed. Thank you very much.