Hi,
I have a JAX-WS Application working perfectly on a TomEE-PLUS.
SOAP-Webservice correctly recognized by Annotation in a EJB:

@Stateless
@WebService(name = "LBEQualitasService",
            portName = "LBEQualitasPort",
                    serviceName = "LBEQualitasService",
                    targetNamespace = "http://wsdlc.business.fsho.com/";)
@XmlSeeAlso({
    ObjectFactory.class
})
public class LBEQualitas implements ServicesPortType, Serializable {
       private static final long serialVersionUID = -1959730900195946000L;


For harmonization reason I'd like to let them run on TomEE-JAXRS.

Is there a simple sample, how to do such a "migration".
I know it's not as simple as just deploy the relevant cxf-jars with the 
Application.

Best Regards
Martin Berner

Reply via email to