Class SoapResource
- java.lang.Object
-
- org.apache.camel.quarkus.component.soap.it.SoapResource
-
@Path("/soap") @ApplicationScoped public class SoapResource extends Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) org.apache.camel.FluentProducerTemplatefluentProducerTemplate(package private) org.apache.camel.ProducerTemplateproducerTemplate
-
Constructor Summary
Constructors Constructor Description SoapResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.ws.rs.core.Responsemarshal(String soapVersion, String message)javax.ws.rs.core.ResponsemarshalFault(String soapVersion, String message)javax.ws.rs.core.ResponsemarshalUnmarshal(String message)javax.ws.rs.core.ResponseqnameStrategy(String message)javax.ws.rs.core.ResponseserviceInterfaceStrategy(String message)javax.ws.rs.core.Responseunmarshal(String soapVersion, String message)javax.ws.rs.core.ResponseunmarshalFault(String soapVersion, String message)
-
-
-
Method Detail
-
marshal
@Path("/marshal/{soapVersion}") @POST @Consumes("text/plain") @Produces("application/xml") public javax.ws.rs.core.Response marshal(@PathParam("soapVersion") String soapVersion, String message) throws Exception- Throws:
Exception
-
marshalFault
@Path("/marshal/fault/{soapVersion}") @POST @Consumes("text/plain") @Produces("application/xml") public javax.ws.rs.core.Response marshalFault(@PathParam("soapVersion") String soapVersion, String message) throws Exception- Throws:
Exception
-
unmarshal
@Path("/unmarshal/{soapVersion}") @POST @Consumes("application/xml") @Produces("text/plain") public javax.ws.rs.core.Response unmarshal(@PathParam("soapVersion") String soapVersion, String message) throws Exception- Throws:
Exception
-
unmarshalFault
@Path("/unmarshal/fault/{soapVersion}") @POST @Consumes("application/xml") @Produces("text/plain") public javax.ws.rs.core.Response unmarshalFault(@PathParam("soapVersion") String soapVersion, String message) throws Exception- Throws:
Exception
-
marshalUnmarshal
@Path("/marshal/unmarshal") @POST @Consumes("text/plain") @Produces("text/plain") public javax.ws.rs.core.Response marshalUnmarshal(String message) throws Exception- Throws:
Exception
-
qnameStrategy
@Path("/qname/strategy") @POST @Consumes("text/plain") @Produces("text/plain") public javax.ws.rs.core.Response qnameStrategy(String message) throws Exception- Throws:
Exception
-
-