Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make request to SOAP endpoint using axios

Tags:

I need to make request to SOAP endpoint using axios in my React application. Hence I need to pass xml data in request and receive xml data in response.

I have used the axios post with json data but how do I use the same for xml? PFB the code I am using for the same, but it does not work.

JSON post request:

var xmlData = <note> <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don't forget me this weekend!</body> </note>  var config = {   headers: {'Content-Type': 'text/xml'} };  axios.post('/save', xmlData, config); 

Please share if you have any experience with this, TIA.

like image 654
Peter Avatar asked Aug 31 '17 06:08

Peter


2 Answers

let xmls='<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"\                             xmlns:web="http://www.webserviceX.NET/">\             <soapenv:Header/>\             <soapenv:Body>\               <web:ConversionRate>\                 <web:FromCurrency>INR</web:FromCurrency>\                 <web:ToCurrency>USD</web:ToCurrency>\               </web:ConversionRate>\             </soapenv:Body>\           </soapenv:Envelope>';  axios.post('http://www.webservicex.com/CurrencyConvertor.asmx?wsdl',            xmls,            {headers:              {'Content-Type': 'text/xml'}            }).then(res=>{              console.log(res);            }).catch(err=>{console.log(err)}); 

This code help to make soap request

like image 52
Anuragh KP Avatar answered Sep 19 '22 15:09

Anuragh KP


I used the answer of @Anuragh KP but with a SOAPAction header

axios.post('https://wscredhomosocinalparceria.facilinformatica.com.br/WCF/Soap/Emprestimo.svc?wsdl',            xmls,   {headers:   {     'Content-Type': 'text/xml',     SOAPAction: 'http://schemas.facilinformatica.com.br/Facil.Credito.WsCred/IEmprestimo/CalcularPrevisaoDeParcelas'}   }).then(res => {     console.log(res)   }).catch(err => {     console.log(err.response.data)   }) 
like image 31
Christian Saiki Avatar answered Sep 17 '22 15:09

Christian Saiki