使用 axios 向 SOAP 端点发出请求

IT技术 xml reactjs post soap axios
2021-04-06 12:31:28

我需要axios在我的React应用程序中使用向 SOAP 端点发出请求因此,我需要在请求中传递 xml 数据并在响应中接收 xml 数据。

我已经将 axios 帖子与 json 数据一起使用,但是如何将相同的内容用于 xml?PFB 与我使用的代码相同,但它不起作用。

JSON 发布请求:

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);

如果您有这方面的经验,请分享,TIA。

2个回答
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)});

此代码有助于发出肥皂请求

好的解决方案和最佳答案。感谢您在 stackoverflow 中的回答
2021-05-29 12:31:28

我使用了@Anuragh KP 的答案,但带有 SOAPAction 标头

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)
  })