Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
Does anyone know how to store the fields contents sent by SOAP request into the context variables?
Here is the xml file my web service is expected to receive, I would like to store the content of base, repertoire, operateur and type into context variables. The content of these fields are Strings.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://www.talend.org/service/"> <soapenv:Header/> <soapenv:Body> <ser:INSERT_TEMOperationRequest> <base>vdp2013</base> <repertoire>b</repertoire> <operateur>c</operateur> <type>d</type> </ser:INSERT_TEMOperationRequest> </soapenv:Body> </soapenv:Envelope>
Regards,