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.ProducerTemplateproducerTemplate
-
Constructor Summary
Constructors Constructor Description SoapResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.ws.rs.core.Responsemarshall(String soapVersion, String message)javax.ws.rs.core.Responseround(String message)javax.ws.rs.core.Responseunmarshal(String soapVersion, String message)
-
-
-
Method Detail
-
marshall
@Path("/marshal/{soapVersion}") @POST @Consumes("text/plain") @Produces("application/xml") public javax.ws.rs.core.Response marshall(@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
-
-