io.quarkiverse.cxf.it.ws.mtom.server.MtomService Maven / Gradle / Ivy
package io.quarkiverse.cxf.it.ws.mtom.server;
import jakarta.jws.WebMethod;
import jakarta.jws.WebService;
import jakarta.jws.soap.SOAPBinding;
import jakarta.xml.ws.soap.MTOM;
@WebService(targetNamespace = "https://quarkiverse.github.io/quarkiverse-docs/quarkus-cxf/test/mtom")
@SOAPBinding(style = SOAPBinding.Style.DOCUMENT, parameterStyle = SOAPBinding.ParameterStyle.BARE)
@MTOM
public interface MtomService {
@WebMethod
public DHResponse echoDataHandler(DHRequest request);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy